Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/Wizards/Wizards.csproj @ 1546

Last change on this file since 1546 was 1546, checked in by swagner, 15 years ago

Renamed project HeuristicLab.Tools.NewPluginWizard to HeuristicLab.Tools.Wizards (#567)

File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{1E4B971A-83BA-4C39-BE19-D09B13CF7242}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Tools.Wizards</RootNamespace>
12    <AssemblyName>HeuristicLab.Tools.Wizards</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
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  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
37      <SpecificVersion>False</SpecificVersion>
38      <HintPath>..\..\..\..\..\..\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\EnvDTE.dll</HintPath>
39    </Reference>
40    <Reference Include="Microsoft.VisualStudio.TemplateWizardInterface, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
41    <Reference Include="System" />
42    <Reference Include="System.Core">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Drawing" />
46    <Reference Include="System.Windows.Forms" />
47    <Reference Include="System.Xml.Linq">
48      <RequiredTargetFramework>3.5</RequiredTargetFramework>
49    </Reference>
50    <Reference Include="System.Data.DataSetExtensions">
51      <RequiredTargetFramework>3.5</RequiredTargetFramework>
52    </Reference>
53    <Reference Include="System.Data" />
54    <Reference Include="System.Xml" />
55  </ItemGroup>
56  <ItemGroup>
57    <Compile Include="NewPluginWizard.cs" />
58    <Compile Include="NewPluginWizardForm.cs">
59      <SubType>Form</SubType>
60    </Compile>
61    <Compile Include="NewPluginWizardForm.Designer.cs">
62      <DependentUpon>NewPluginWizardForm.cs</DependentUpon>
63    </Compile>
64    <Compile Include="Properties\AssemblyInfo.cs" />
65    <Compile Include="Properties\Resources.Designer.cs">
66      <AutoGen>True</AutoGen>
67      <DesignTime>True</DesignTime>
68      <DependentUpon>Resources.resx</DependentUpon>
69    </Compile>
70    <Compile Include="Settings.cs" />
71    <None Include="Properties\AssemblyInfo.frame" />
72  </ItemGroup>
73  <ItemGroup>
74    <None Include="HeuristicLab.snk" />
75  </ItemGroup>
76  <ItemGroup>
77    <EmbeddedResource Include="NewPluginWizardForm.resx">
78      <DependentUpon>NewPluginWizardForm.cs</DependentUpon>
79    </EmbeddedResource>
80    <EmbeddedResource Include="Properties\Resources.resx">
81      <Generator>ResXFileCodeGenerator</Generator>
82      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
83    </EmbeddedResource>
84  </ItemGroup>
85  <ItemGroup>
86    <None Include="Resources\HeuristicLab.ico" />
87  </ItemGroup>
88  <ItemGroup>
89    <None Include="Resources\Logo_white.gif" />
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
93       Other similar extension points exist, see Microsoft.Common.targets.
94  <Target Name="BeforeBuild">
95  </Target>
96  <Target Name="AfterBuild">
97  </Target>
98  -->
99  <PropertyGroup>
100    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
101set ProjectDir=$(ProjectDir)
102set SolutionDir=$(SolutionDir)
103set Outdir=$(Outdir)
104
105call PreBuildEvent.cmd</PreBuildEvent>
106  </PropertyGroup>
107</Project>
Note: See TracBrowser for help on using the repository browser.