Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2274 was 2260, checked in by gkronber, 15 years ago

Worked on CEDMA importer. #719

File size: 5.1 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  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x86\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x86</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
44    <OutputPath>bin\x86\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x86</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
51  <ItemGroup>
52    <Reference Include="EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
53      <SpecificVersion>False</SpecificVersion>
54      <HintPath>..\..\..\..\..\..\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\EnvDTE.dll</HintPath>
55    </Reference>
56    <Reference Include="Microsoft.VisualStudio.TemplateWizardInterface, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
57    <Reference Include="System" />
58    <Reference Include="System.Core">
59      <RequiredTargetFramework>3.5</RequiredTargetFramework>
60    </Reference>
61    <Reference Include="System.Drawing" />
62    <Reference Include="System.Windows.Forms" />
63    <Reference Include="System.Xml.Linq">
64      <RequiredTargetFramework>3.5</RequiredTargetFramework>
65    </Reference>
66    <Reference Include="System.Data.DataSetExtensions">
67      <RequiredTargetFramework>3.5</RequiredTargetFramework>
68    </Reference>
69    <Reference Include="System.Data" />
70    <Reference Include="System.Xml" />
71  </ItemGroup>
72  <ItemGroup>
73    <Compile Include="NewPluginWizard.cs" />
74    <Compile Include="NewPluginWizardForm.cs">
75      <SubType>Form</SubType>
76    </Compile>
77    <Compile Include="NewPluginWizardForm.Designer.cs">
78      <DependentUpon>NewPluginWizardForm.cs</DependentUpon>
79    </Compile>
80    <Compile Include="Properties\AssemblyInfo.cs" />
81    <Compile Include="Properties\Resources.Designer.cs">
82      <AutoGen>True</AutoGen>
83      <DesignTime>True</DesignTime>
84      <DependentUpon>Resources.resx</DependentUpon>
85    </Compile>
86    <Compile Include="Settings.cs" />
87    <None Include="Properties\AssemblyInfo.frame" />
88  </ItemGroup>
89  <ItemGroup>
90    <None Include="HeuristicLab.snk" />
91  </ItemGroup>
92  <ItemGroup>
93    <EmbeddedResource Include="NewPluginWizardForm.resx">
94      <DependentUpon>NewPluginWizardForm.cs</DependentUpon>
95    </EmbeddedResource>
96    <EmbeddedResource Include="Properties\Resources.resx">
97      <Generator>ResXFileCodeGenerator</Generator>
98      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
99    </EmbeddedResource>
100  </ItemGroup>
101  <ItemGroup>
102    <None Include="Resources\HeuristicLab.ico" />
103  </ItemGroup>
104  <ItemGroup>
105    <None Include="Resources\Logo_white.gif" />
106  </ItemGroup>
107  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
108  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
109       Other similar extension points exist, see Microsoft.Common.targets.
110  <Target Name="BeforeBuild">
111  </Target>
112  <Target Name="AfterBuild">
113  </Target>
114  -->
115  <PropertyGroup>
116    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
117set ProjectDir=$(ProjectDir)
118set SolutionDir=$(SolutionDir)
119set Outdir=$(Outdir)
120
121call PreBuildEvent.cmd</PreBuildEvent>
122  </PropertyGroup>
123</Project>
Note: See TracBrowser for help on using the repository browser.