Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/Templates/HeuristicLab.VS2010Wizards/HeuristicLab.VS2010Wizards.csproj @ 4176

Last change on this file since 4176 was 4176, checked in by abeham, 14 years ago

#567

  • Updated installer
  • Updated View template
  • Added Algorithm template (untested)
File size: 4.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{F1B37418-F66E-41C0-BC36-B9A02BBAF62D}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.VS2010Wizards</RootNamespace>
12    <AssemblyName>HeuristicLab.VS2010Wizards</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <TargetFrameworkProfile>
16    </TargetFrameworkProfile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
35  </PropertyGroup>
36  <PropertyGroup>
37    <SignAssembly>true</SignAssembly>
38  </PropertyGroup>
39  <PropertyGroup>
40    <AssemblyOriginatorKeyFile>VS2010Templates.snk</AssemblyOriginatorKeyFile>
41  </PropertyGroup>
42  <ItemGroup>
43    <Reference Include="envdte, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
44      <EmbedInteropTypes>False</EmbedInteropTypes>
45    </Reference>
46    <Reference Include="Microsoft.VisualStudio.TemplateWizardInterface, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
47    <Reference Include="System" />
48    <Reference Include="System.Data" />
49    <Reference Include="System.Drawing" />
50    <Reference Include="System.Windows.Forms" />
51    <Reference Include="System.Xml" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="AlgorithmWizard.cs" />
55    <Compile Include="AlgorithmWizardForm.cs">
56      <SubType>Form</SubType>
57    </Compile>
58    <Compile Include="AlgorithmWizardForm.Designer.cs">
59      <DependentUpon>AlgorithmWizardForm.cs</DependentUpon>
60    </Compile>
61    <Compile Include="Properties\Resources.Designer.cs">
62      <AutoGen>True</AutoGen>
63      <DesignTime>True</DesignTime>
64      <DependentUpon>Resources.resx</DependentUpon>
65    </Compile>
66    <Compile Include="ViewWizard.cs" />
67    <Compile Include="Properties\AssemblyInfo.cs" />
68    <Compile Include="ViewWizardForm.cs">
69      <SubType>Form</SubType>
70    </Compile>
71    <Compile Include="ViewWizardForm.Designer.cs">
72      <DependentUpon>ViewWizardForm.cs</DependentUpon>
73    </Compile>
74  </ItemGroup>
75  <ItemGroup>
76    <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
77  </ItemGroup>
78  <ItemGroup>
79    <EmbeddedResource Include="AlgorithmWizardForm.resx">
80      <DependentUpon>AlgorithmWizardForm.cs</DependentUpon>
81    </EmbeddedResource>
82    <EmbeddedResource Include="Properties\Resources.resx">
83      <Generator>ResXFileCodeGenerator</Generator>
84      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
85    </EmbeddedResource>
86    <EmbeddedResource Include="ViewWizardForm.resx">
87      <DependentUpon>ViewWizardForm.cs</DependentUpon>
88    </EmbeddedResource>
89  </ItemGroup>
90  <ItemGroup>
91    <None Include="VS2010Templates.snk" />
92  </ItemGroup>
93  <ItemGroup>
94    <Content Include="HeuristicLabIcon.ico" />
95  </ItemGroup>
96  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98       Other similar extension points exist, see Microsoft.Common.targets.
99  <Target Name="BeforeBuild">
100  </Target>
101  <Target Name="AfterBuild">
102  </Target>
103  -->
104</Project>
Note: See TracBrowser for help on using the repository browser.