------------------------------------------------------------ revno: 11 committer: Fredrik Ullner <ull...@gmail.com> branch nick: dc-plugin-sdk timestamp: Sun 2013-08-11 16:20:38 +0200 message: Fixed some paths for the .NET addon removed: Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-Win32.xml Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-x64.xml added: Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-Win32.xml Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-x64.xml modified: Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Html/1033/default.htm Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Scripts/1033/default.js Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/NETDCPlugin.csproj
-- lp:dc-plugin-sdk https://code.launchpad.net/~dcplusplus-team/dc-plugin-sdk/trunk Your team Dcplusplus-team is subscribed to branch lp:dc-plugin-sdk. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dc-plugin-sdk/trunk/+edit-subscription
=== modified file 'Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Html/1033/default.htm' --- Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Html/1033/default.htm 2013-07-23 23:13:15 +0000 +++ Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Html/1033/default.htm 2013-08-11 14:20:38 +0000 @@ -365,7 +365,7 @@ function GetDefaultTargetFolder() { - return 'C:\\Programming\\dc-plugin-sdk\\dotnet'; + return 'C:\\Programming\\dc-plugin-sdk\\Plugins'; } function GetProjectName( value ) === modified file 'Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Scripts/1033/default.js' --- Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Scripts/1033/default.js 2013-07-23 23:13:15 +0000 +++ Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Scripts/1033/default.js 2013-08-11 14:20:38 +0000 @@ -11,6 +11,7 @@ wizard.AddSymbol('PROJECT_PATH', AppendBackslash(strTargetPath)); wizard.AddSymbol('PLUGIN_GUID', wizard.CreateGuid()); + wizard.AddSymbol('SOLUTION_GUID', wizard.CreateGuid()); return AppendBackslash(strOutputRootPath); } === modified file 'Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/NETDCPlugin.csproj' --- Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/NETDCPlugin.csproj 2013-07-23 23:13:15 +0000 +++ Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/NETDCPlugin.csproj 2013-08-11 14:20:38 +0000 @@ -4,6 +4,7 @@ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <SchemaVersion>2.0</SchemaVersion> +<ProjectGuid>[!output PLUGIN_GUID]</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> <RootNamespace>DCPlugin.[!output PROJECT_NAME]</RootNamespace> === added file 'Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-Win32.xml' --- Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-Win32.xml 1970-01-01 00:00:00 +0000 +++ Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-Win32.xml 2013-08-11 14:20:38 +0000 @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> + +<!-- +This file is an example info.xml to be included in the dcext package. For more +information, read "Plugin format (dcext).txt" in the "doc" directory. + +This file has been generated using the information filled in the src/version.h file. + +Edit the <Plugin> tags to include your plugin files. +If you support Windows, include pe-x64 and pe-x86 platforms. +If you support Linux, include elf-x64 and elf-x86 platforms. + +The <Files> tag is empty; should you want to distribute additional files, include them +in there within <File> tags (again, more information in the above doc file). +It is recommended you provide a .pdb file to ease debugging. + +When you are done editing this file, rename it to "info.xml", move the relevant files +to this directory and zip them; rename that .zip to .dcext and you are done! +--> + +<dcext> + <UUID>[!output PLUGIN_GUID]</UUID> + <Name>[!output PROJECT_NAME]</Name> + <Version>1</Version> + <ApiVersion>8</ApiVersion> + <Author>[!output PLUGIN_AUTHOR]</Author> + <Description>[!output PLUGIN_DESCRIPTION]</Description> + <Website>[!output PLUGIN_WEBSITE]</Website> + <Plugin Platform="pe-x86">DCPlugin.DotNetPlugin_Win32.dll</Plugin> + <Files> + <File Platform="pe-x86">DCPlugin.DotNetPlugin_Win32.pdb</File> + + <File Platform="pe-x86">[!output PROJECT_NAME].dll</File> + <File Platform="pe-x86">[!output PROJECT_NAME].pdb</File> + + <File Platform="pe-x86">DCPlugin.DataTypes.dll</File> + <File Platform="pe-x86">DCPlugin.DataTypes.pdb</File> + + <File Platform="pe-x86">MetaData.xml</File> + </Files> +</dcext> === added file 'Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-x64.xml' --- Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-x64.xml 1970-01-01 00:00:00 +0000 +++ Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/[ProjectPath][Project]-info-x64.xml 2013-08-11 14:20:38 +0000 @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8" standalone="yes"?> + +<!-- +This file is an example info.xml to be included in the dcext package. For more +information, read "Plugin format (dcext).txt" in the "doc" directory. + +This file has been generated using the information filled in the src/version.h file. + +Edit the <Plugin> tags to include your plugin files. +If you support Windows, include pe-x64 and pe-x86 platforms. +If you support Linux, include elf-x64 and elf-x86 platforms. + +The <Files> tag is empty; should you want to distribute additional files, include them +in there within <File> tags (again, more information in the above doc file). +It is recommended you provide a .pdb file to ease debugging. + +When you are done editing this file, rename it to "info.xml", move the relevant files +to this directory and zip them; rename that .zip to .dcext and you are done! +--> + +<dcext> + <UUID>[!output PLUGIN_GUID]</UUID> + <Name>[!output PROJECT_NAME]</Name> + <Version>1</Version> + <ApiVersion>8</ApiVersion> + <Author>[!output PLUGIN_AUTHOR]</Author> + <Description>[!output PLUGIN_DESCRIPTION]</Description> + <Website>[!output PLUGIN_WEBSITE]</Website> + <Plugin Platform="pe-x64">DCPlugin.DotNetPlugin_x64.dll</Plugin> + <Files> + <File Platform="pe-x64">DCPlugin.DotNetPlugin_x64.pdb</File> + + <File Platform="pe-x64">[!output PROJECT_NAME].dll</File> + <File Platform="pe-x64">[!output PROJECT_NAME].pdb</File> + + <File Platform="pe-x64">DCPlugin.DataTypes.dll</File> + <File Platform="pe-x64">DCPlugin.DataTypes.pdb</File> + + <File Platform="pe-x86">MetaData.xml</File> + </Files> +</dcext> === removed file 'Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-Win32.xml' --- Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-Win32.xml 2013-07-23 23:19:32 +0000 +++ Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-Win32.xml 1970-01-01 00:00:00 +0000 @@ -1,41 +0,0 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?> - -<!-- -This file is an example info.xml to be included in the dcext package. For more -information, read "Plugin format (dcext).txt" in the "doc" directory. - -This file has been generated using the information filled in the src/version.h file. - -Edit the <Plugin> tags to include your plugin files. -If you support Windows, include pe-x64 and pe-x86 platforms. -If you support Linux, include elf-x64 and elf-x86 platforms. - -The <Files> tag is empty; should you want to distribute additional files, include them -in there within <File> tags (again, more information in the above doc file). -It is recommended you provide a .pdb file to ease debugging. - -When you are done editing this file, rename it to "info.xml", move the relevant files -to this directory and zip them; rename that .zip to .dcext and you are done! ---> - -<dcext> - <UUID>[!output PLUGIN_GUID]</UUID> - <Name>[!output PROJECT_NAME]</Name> - <Version>1</Version> - <ApiVersion>8</ApiVersion> - <Author>[!output PLUGIN_AUTHOR]</Author> - <Description>[!output PLUGIN_DESCRIPTION]</Description> - <Website>[!output PLUGIN_WEBSITE]</Website> - <Plugin Platform="pe-x86">DCPlugin.DotNetPlugin_Win32.dll</Plugin> - <Files> - <File Platform="pe-x86">DCPlugin.DotNetPlugin_Win32.pdb</File> - - <File Platform="pe-x86">[!output PROJECT_NAME].dll</File> - <File Platform="pe-x86">[!output PROJECT_NAME].pdb</File> - - <File Platform="pe-x86">DCPlugin.DataTypes.dll</File> - <File Platform="pe-x86">DCPlugin.DataTypes.pdb</File> - - <File Platform="pe-x86">MetaData.xml</File> - </Files> -</dcext> === removed file 'Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-x64.xml' --- Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-x64.xml 2013-07-23 23:19:32 +0000 +++ Addons/VisualStudio/2012/Wizards/NETDCPluginWizard/Templates/1033/info-x64.xml 1970-01-01 00:00:00 +0000 @@ -1,41 +0,0 @@ -<?xml version="1.0" encoding="utf-8" standalone="yes"?> - -<!-- -This file is an example info.xml to be included in the dcext package. For more -information, read "Plugin format (dcext).txt" in the "doc" directory. - -This file has been generated using the information filled in the src/version.h file. - -Edit the <Plugin> tags to include your plugin files. -If you support Windows, include pe-x64 and pe-x86 platforms. -If you support Linux, include elf-x64 and elf-x86 platforms. - -The <Files> tag is empty; should you want to distribute additional files, include them -in there within <File> tags (again, more information in the above doc file). -It is recommended you provide a .pdb file to ease debugging. - -When you are done editing this file, rename it to "info.xml", move the relevant files -to this directory and zip them; rename that .zip to .dcext and you are done! ---> - -<dcext> - <UUID>[!output PLUGIN_GUID]</UUID> - <Name>[!output PROJECT_NAME]</Name> - <Version>1</Version> - <ApiVersion>8</ApiVersion> - <Author>[!output PLUGIN_AUTHOR]</Author> - <Description>[!output PLUGIN_DESCRIPTION]</Description> - <Website>[!output PLUGIN_WEBSITE]</Website> - <Plugin Platform="pe-x64">DCPlugin.DotNetPlugin_x64.dll</Plugin> - <Files> - <File Platform="pe-x64">DCPlugin.DotNetPlugin_x64.pdb</File> - - <File Platform="pe-x64">[!output PROJECT_NAME].dll</File> - <File Platform="pe-x64">[!output PROJECT_NAME].pdb</File> - - <File Platform="pe-x64">DCPlugin.DataTypes.dll</File> - <File Platform="pe-x64">DCPlugin.DataTypes.pdb</File> - - <File Platform="pe-x86">MetaData.xml</File> - </Files> -</dcext>
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : linuxdcpp-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp