Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.Deployment/3.3/HeuristicLab.Services.Deployment-3.3.csproj @ 5163

Last change on this file since 5163 was 5163, checked in by swagner, 13 years ago

Reintegrated .NET 4.0 migration branch (#1350)

File size: 6.8 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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{30D8C5F1-CD3A-4EC1-907F-430177A03FBE}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.Deployment</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.Deployment</AssemblyName>
13    <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14    <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
15    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16    <TargetFrameworkProfile></TargetFrameworkProfile>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19    <FileUpgradeFlags>
20    </FileUpgradeFlags>
21    <OldToolsVersion>3.5</OldToolsVersion>
22    <UpgradeBackupLocation />
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
25    <DebugSymbols>true</DebugSymbols>
26    <DebugType>full</DebugType>
27    <Optimize>false</Optimize>
28    <OutputPath>bin\Debug\</OutputPath>
29    <DefineConstants>DEBUG;TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
33  </PropertyGroup>
34  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
35    <DebugType>pdbonly</DebugType>
36    <Optimize>true</Optimize>
37    <OutputPath>bin\Release\</OutputPath>
38    <DefineConstants>TRACE</DefineConstants>
39    <ErrorReport>prompt</ErrorReport>
40    <WarningLevel>4</WarningLevel>
41    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
44    <DebugSymbols>true</DebugSymbols>
45    <OutputPath>bin\x86\Debug\</OutputPath>
46    <DefineConstants>DEBUG;TRACE</DefineConstants>
47    <DebugType>full</DebugType>
48    <PlatformTarget>x86</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
51  </PropertyGroup>
52  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
53    <OutputPath>bin\x86\Release\</OutputPath>
54    <DefineConstants>TRACE</DefineConstants>
55    <Optimize>true</Optimize>
56    <DebugType>pdbonly</DebugType>
57    <PlatformTarget>x86</PlatformTarget>
58    <ErrorReport>prompt</ErrorReport>
59    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
60  </PropertyGroup>
61  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
62    <DebugSymbols>true</DebugSymbols>
63    <OutputPath>bin\x64\Debug\</OutputPath>
64    <DefineConstants>DEBUG;TRACE</DefineConstants>
65    <DebugType>full</DebugType>
66    <PlatformTarget>x64</PlatformTarget>
67    <ErrorReport>prompt</ErrorReport>
68    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
69  </PropertyGroup>
70  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
71    <OutputPath>bin\x64\Release\</OutputPath>
72    <DefineConstants>TRACE</DefineConstants>
73    <Optimize>true</Optimize>
74    <DebugType>pdbonly</DebugType>
75    <PlatformTarget>x64</PlatformTarget>
76    <ErrorReport>prompt</ErrorReport>
77    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
78  </PropertyGroup>
79  <ItemGroup>
80    <Reference Include="System" />
81    <Reference Include="System.Core">
82      <RequiredTargetFramework>3.5</RequiredTargetFramework>
83    </Reference>
84    <Reference Include="System.Data" />
85    <Reference Include="System.Data.Linq">
86      <RequiredTargetFramework>3.5</RequiredTargetFramework>
87    </Reference>
88    <Reference Include="System.Runtime.Serialization">
89      <RequiredTargetFramework>3.0</RequiredTargetFramework>
90    </Reference>
91    <Reference Include="System.ServiceModel">
92      <RequiredTargetFramework>3.0</RequiredTargetFramework>
93    </Reference>
94    <Reference Include="System.Transactions" />
95    <Reference Include="System.Xml" />
96    <Reference Include="System.Xml.Linq">
97      <RequiredTargetFramework>3.5</RequiredTargetFramework>
98    </Reference>
99  </ItemGroup>
100  <ItemGroup>
101    <Compile Include="AdminService.cs" />
102    <Compile Include="IAdminService.cs" />
103    <Compile Include="IUpdateService.cs" />
104    <Compile Include="PluginDescription.cs" />
105    <Compile Include="PluginStore.cs" />
106    <Compile Include="ProductDescription.cs" />
107    <Compile Include="Properties\AssemblyInfo.cs" />
108    <Compile Include="Properties\Settings.Designer.cs">
109      <AutoGen>True</AutoGen>
110      <DesignTimeSharedInput>True</DesignTimeSharedInput>
111      <DependentUpon>Settings.settings</DependentUpon>
112    </Compile>
113    <Compile Include="UpdateService.cs" />
114  </ItemGroup>
115  <ItemGroup>
116    <None Include="App.config" />
117  </ItemGroup>
118  <ItemGroup>
119    <WCFMetadata Include="Service References\" />
120  </ItemGroup>
121  <ItemGroup>
122    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
123  </ItemGroup>
124  <ItemGroup>
125    <None Include="HeuristicLab.snk" />
126    <None Include="Properties\AssemblyInfo.frame" />
127    <None Include="Properties\Settings.settings">
128      <Generator>SettingsSingleFileGenerator</Generator>
129      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
130    </None>
131  </ItemGroup>
132  <ItemGroup>
133    <ProjectReference Include="..\..\HeuristicLab.Services.Deployment.DataAccess\3.3\HeuristicLab.Services.Deployment.DataAccess-3.3.csproj">
134      <Project>{EBEBA863-DD05-4331-BE25-5758B15F7407}</Project>
135      <Name>HeuristicLab.Services.Deployment.DataAccess-3.3</Name>
136    </ProjectReference>
137  </ItemGroup>
138  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
139  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
140       Other similar extension points exist, see Microsoft.Common.targets.
141  <Target Name="BeforeBuild">
142  </Target>
143  <Target Name="AfterBuild">
144  </Target>
145  -->
146  <ProjectExtensions>
147    <VisualStudio>
148      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
149        <WcfProjectProperties>
150          <AutoStart>False</AutoStart>
151        </WcfProjectProperties>
152      </FlavorProperties>
153    </VisualStudio>
154  </ProjectExtensions>
155  <PropertyGroup>
156    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
157set ProjectDir=$(ProjectDir)
158set SolutionDir=$(SolutionDir)
159set Outdir=$(Outdir)
160
161call PreBuildEvent.cmd</PreBuildEvent>
162  </PropertyGroup>
163</Project>
Note: See TracBrowser for help on using the repository browser.