Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2522_RefactorPluginInfrastructure/HeuristicLab.Services.Deployment/3.3/HeuristicLab.Services.Deployment-3.3.csproj @ 16143

Last change on this file since 16143 was 16143, checked in by dpiringe, 6 years ago

#2522:

  • migrated a lot of projects to .NET Standard 2.0
  • added AppDomain.CurrentDomain.ApplyPolicy to Assembly.ReflectionOnlyLoad in PluginValidator to correctly load the System library
  • deleted Properties folder from .NET Standard projects, because AssemblyInformation is saved in .csproj files now
  • .NET Framework projects target now v4.7, because it is only possible to use .NET Standard libraries in v4.6 or higher
  • removed System.Data.Linq from defaultAssemblies and DiscoverNamespaces in ProgrammableOperator, it is not supported in .NET Standard
  • the Microsoft.Windows.Compatibility package is necessary for usage of PluginInfrastructure, we should probably switch to the System.Drawing.Common package when PluginInfrastructure is migrated to .NET Standard
File size: 7.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>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.7</TargetFrameworkVersion>
16    <TargetFrameworkProfile></TargetFrameworkProfile>
17    <SignAssembly>true</SignAssembly>
18    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
19    <FileUpgradeFlags></FileUpgradeFlags>
20    <OldToolsVersion>3.5</OldToolsVersion>
21    <UpgradeBackupLocation />
22  </PropertyGroup>
23  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
24    <DebugSymbols>true</DebugSymbols>
25    <DebugType>full</DebugType>
26    <Optimize>false</Optimize>
27    <OutputPath>bin\Debug\</OutputPath>
28    <DefineConstants>DEBUG;TRACE</DefineConstants>
29    <ErrorReport>prompt</ErrorReport>
30    <WarningLevel>4</WarningLevel>
31    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
32    <Prefer32Bit>false</Prefer32Bit>
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    <Prefer32Bit>false</Prefer32Bit>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
45    <DebugSymbols>true</DebugSymbols>
46    <OutputPath>bin\Debug\</OutputPath>
47    <DefineConstants>DEBUG;TRACE</DefineConstants>
48    <DebugType>full</DebugType>
49    <PlatformTarget>x86</PlatformTarget>
50    <ErrorReport>prompt</ErrorReport>
51    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
52    <Prefer32Bit>false</Prefer32Bit>
53  </PropertyGroup>
54  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
55    <OutputPath>bin\Release\</OutputPath>
56    <DefineConstants>TRACE</DefineConstants>
57    <Optimize>true</Optimize>
58    <DebugType>pdbonly</DebugType>
59    <PlatformTarget>x86</PlatformTarget>
60    <ErrorReport>prompt</ErrorReport>
61    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
62    <Prefer32Bit>false</Prefer32Bit>
63  </PropertyGroup>
64  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
65    <DebugSymbols>true</DebugSymbols>
66    <OutputPath>bin\Debug\</OutputPath>
67    <DefineConstants>DEBUG;TRACE</DefineConstants>
68    <DebugType>full</DebugType>
69    <PlatformTarget>x64</PlatformTarget>
70    <ErrorReport>prompt</ErrorReport>
71    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
72    <Prefer32Bit>false</Prefer32Bit>
73  </PropertyGroup>
74  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
75    <OutputPath>bin\Release\</OutputPath>
76    <DefineConstants>TRACE</DefineConstants>
77    <Optimize>true</Optimize>
78    <DebugType>pdbonly</DebugType>
79    <PlatformTarget>x64</PlatformTarget>
80    <ErrorReport>prompt</ErrorReport>
81    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
82    <Prefer32Bit>false</Prefer32Bit>
83  </PropertyGroup>
84  <ItemGroup>
85    <Reference Include="System" />
86    <Reference Include="System.Core">
87      <RequiredTargetFramework>3.5</RequiredTargetFramework>
88    </Reference>
89    <Reference Include="System.Data" />
90    <Reference Include="System.Data.Linq">
91      <RequiredTargetFramework>3.5</RequiredTargetFramework>
92    </Reference>
93    <Reference Include="System.Runtime.Serialization">
94      <RequiredTargetFramework>3.0</RequiredTargetFramework>
95    </Reference>
96    <Reference Include="System.ServiceModel">
97      <RequiredTargetFramework>3.0</RequiredTargetFramework>
98    </Reference>
99    <Reference Include="System.Transactions" />
100    <Reference Include="System.Xml" />
101    <Reference Include="System.Xml.Linq">
102      <RequiredTargetFramework>3.5</RequiredTargetFramework>
103    </Reference>
104  </ItemGroup>
105  <ItemGroup>
106    <Compile Include="AdminService.cs" />
107    <Compile Include="IAdminService.cs" />
108    <Compile Include="IUpdateService.cs" />
109    <Compile Include="PluginDescription.cs" />
110    <Compile Include="PluginStore.cs" />
111    <Compile Include="ProductDescription.cs" />
112    <Compile Include="Properties\AssemblyInfo.cs" />
113    <Compile Include="Properties\Settings.Designer.cs">
114      <AutoGen>True</AutoGen>
115      <DesignTimeSharedInput>True</DesignTimeSharedInput>
116      <DependentUpon>Settings.settings</DependentUpon>
117    </Compile>
118    <Compile Include="UpdateService.cs" />
119  </ItemGroup>
120  <ItemGroup>
121    <None Include="app.config" />
122  </ItemGroup>
123  <ItemGroup>
124    <WCFMetadata Include="Service References\" />
125  </ItemGroup>
126  <ItemGroup>
127    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
128  </ItemGroup>
129  <ItemGroup>
130    <None Include="Web.config" />
131    <None Include="HeuristicLab.snk" />
132    <None Include="Properties\AssemblyInfo.cs.frame" />
133    <None Include="Properties\Settings.settings">
134      <Generator>SettingsSingleFileGenerator</Generator>
135      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
136    </None>
137  </ItemGroup>
138  <ItemGroup>
139    <ProjectReference Include="..\..\HeuristicLab.Services.Deployment.DataAccess\3.3\HeuristicLab.Services.Deployment.DataAccess-3.3.csproj">
140      <Project>{EBEBA863-DD05-4331-BE25-5758B15F7407}</Project>
141      <Name>HeuristicLab.Services.Deployment.DataAccess-3.3</Name>
142      <Private>False</Private>
143    </ProjectReference>
144  </ItemGroup>
145  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
146  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
147       Other similar extension points exist, see Microsoft.Common.targets.
148  <Target Name="BeforeBuild">
149  </Target>
150  <Target Name="AfterBuild">
151  </Target>
152  -->
153  <ProjectExtensions>
154    <VisualStudio>
155      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
156        <WcfProjectProperties>
157          <AutoStart>False</AutoStart>
158        </WcfProjectProperties>
159      </FlavorProperties>
160    </VisualStudio>
161  </ProjectExtensions>
162  <PropertyGroup>
163    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
164set ProjectDir=$(ProjectDir)
165set SolutionDir=$(SolutionDir)
166set Outdir=$(Outdir)
167
168call PreBuildEvent.cmd</PreBuildEvent>
169    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
170export ProjectDir=$(ProjectDir)
171export SolutionDir=$(SolutionDir)
172
173$SolutionDir/PreBuildEvent.sh
174</PreBuildEvent>
175  </PropertyGroup>
176</Project>
Note: See TracBrowser for help on using the repository browser.