Browse Source

Moved C++ and WiX templates to the (disabled) AddIn projects. (SD2-566)

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@820 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 20 years ago
parent
commit
df78c1123b
  1. 0
      src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/CPP.Empty.xft
  2. 0
      src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/CPP.Header.xft
  3. 0
      src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/ConsoleProject.xpt
  4. 0
      src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/EmptyProject.xpt
  5. 0
      src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/FormsProject.xpt
  6. 0
      src/AddIns/BackendBindings/WixBinding/Project/Templates/WixProject.xpt
  7. 0
      src/AddIns/BackendBindings/WixBinding/Project/WixBinding.addin
  8. 26
      src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj
  9. 3
      src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj.user
  10. 2
      src/AddIns/Misc/FiletypeRegisterer/Project/Src/RegisterFiletypesPanel.cs
  11. 3
      src/AddIns/Misc/HighlightingEditor/Project/Resources/OptionPanel.xfrm

0
data/templates/file/CPPNet/CPP.Empty.xft → src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/CPP.Empty.xft

0
data/templates/file/CPPNet/CPP.Header.xft → src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/CPP.Header.xft

0
data/templates/project/CPPNet/ConsoleProject.xpt → src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/ConsoleProject.xpt

0
data/templates/project/CPPNet/EmptyProject.xpt → src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/EmptyProject.xpt

0
data/templates/project/CPPNet/FormsProject.xpt → src/AddIns/BackendBindings/CPPNetBinding/Project/Templates/FormsProject.xpt

0
data/templates/project/Setup/WixProject.xpt → src/AddIns/BackendBindings/WixBinding/Project/Templates/WixProject.xpt

0
src/AddIns/BackendBindings/WixBinding/Project/Resources/WixBinding.addin → src/AddIns/BackendBindings/WixBinding/Project/WixBinding.addin

26
src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj

@ -1,4 +1,4 @@ @@ -1,4 +1,4 @@
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@ -49,18 +49,22 @@ @@ -49,18 +49,22 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="WixLanguageBinding.cs" />
<Compile Include="WixCompilerManager.cs" />
<Compile Include="WixExecutionManager.cs" />
<Compile Include="Project\WixCompilerParameters.cs" />
<Compile Include="Project\WixProject.cs" />
<Compile Include="Gui\CompilerParametersPanel.cs" />
<Compile Include="Gui\LinkerParametersPanel.cs" />
<Compile Include="AssemblyInfo.cs" />
<Compile Include="Src\WixLanguageBinding.cs" />
<Compile Include="Src\WixCompilerManager.cs" />
<Compile Include="Src\WixExecutionManager.cs" />
<Compile Include="Src\Project\WixCompilerParameters.cs" />
<Compile Include="Src\Project\WixProject.cs" />
<Compile Include="Src\Gui\CompilerParametersPanel.cs" />
<Compile Include="Src\Gui\LinkerParametersPanel.cs" />
<Compile Include="Src\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="Project\" />
<Folder Include="Gui\" />
<Content Include="WixBinding.addin">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Templates\WixProject.xpt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
</Project>

3
src/AddIns/BackendBindings/WixBinding/Project/WixBinding.csproj.user

@ -1,6 +1,5 @@ @@ -1,6 +1,5 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<StartProgram>..\..\..\..\bin\SharpDevelop.exe</StartProgram>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " />
</Project>

2
src/AddIns/Misc/FiletypeRegisterer/Project/Src/RegisterFiletypesPanel.cs

@ -93,7 +93,6 @@ namespace ICSharpCode.FiletypeRegisterer @@ -93,7 +93,6 @@ namespace ICSharpCode.FiletypeRegisterer
capLbl.Size = new Size(136, 16);
capLbl.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
capLbl.Text = StringParser.Parse("${res:ICSharpCode.SharpDevelop.Gui.Dialogs.OptionPanels.RegisterFiletypesPanel.CaptionLabel}");
capLbl.FlatStyle = FlatStyle.System;
list.Location = new Point(8, 30);
list.Size = new Size(136, 250);
@ -106,7 +105,6 @@ namespace ICSharpCode.FiletypeRegisterer @@ -106,7 +105,6 @@ namespace ICSharpCode.FiletypeRegisterer
regChk.Location = new Point(8, 300);
regChk.Size = new Size(136, 20);
regChk.Anchor = capLbl.Anchor;
regChk.FlatStyle = FlatStyle.System;
regChk.Text = StringParser.Parse("${res:ICSharpCode.SharpDevelop.Gui.Dialogs.OptionPanels.RegisterFiletypesPanel.RegisterCheckBox}");
this.Controls.AddRange(new Control[] {capLbl, list, regChk});

3
src/AddIns/Misc/HighlightingEditor/Project/Resources/OptionPanel.xfrm

@ -1,7 +1,6 @@ @@ -1,7 +1,6 @@
<Components version="1.0">
<System.Windows.Forms.UserControl>
<Name value="highlightingOptionPanel" />
<DockPadding value="" />
<ClientSize value="{Width=328, Height=288}" />
<Controls>
<System.Windows.Forms.Label>
@ -78,4 +77,4 @@ @@ -78,4 +77,4 @@
</System.Windows.Forms.Button>
</Controls>
</System.Windows.Forms.UserControl>
</Components>
</Components>

Loading…
Cancel
Save