1 | <Project Sdk="Microsoft.NET.Sdk">
|
---|
2 |
|
---|
3 | <PropertyGroup>
|
---|
4 | <OutputType>Exe</OutputType>
|
---|
5 | <TargetFramework>netcoreapp3.0</TargetFramework>
|
---|
6 | <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
---|
7 | <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
---|
8 | <Copyright>(c) 2002-2018 HEAL</Copyright>
|
---|
9 | <Product>HeuristicLab</Product>
|
---|
10 | <SignAssembly>true</SignAssembly>
|
---|
11 | <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
|
---|
12 | <AssemblyVersion>3.3.15.0</AssemblyVersion>
|
---|
13 | <AssemblyFileVersion>3.3.15.0</AssemblyFileVersion>
|
---|
14 | <RootNamespace>HeuristicLab</RootNamespace>
|
---|
15 | <ApplicationIcon>HeuristicLab.ico</ApplicationIcon>
|
---|
16 | <ApplicationManifest>app.manifest</ApplicationManifest>
|
---|
17 | </PropertyGroup>
|
---|
18 |
|
---|
19 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
---|
20 | <OutputPath>..\..\bin\</OutputPath>
|
---|
21 | </PropertyGroup>
|
---|
22 |
|
---|
23 | <ItemGroup>
|
---|
24 | <PackageReference Include="Google.Protobuf" Version="3.6.1" />
|
---|
25 | <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.7.9" />
|
---|
26 | </ItemGroup>
|
---|
27 |
|
---|
28 | <ItemGroup>
|
---|
29 | <ProjectReference Include="..\..\HeuristicLab.CommandLineInterface\HeuristicLab.CommandLineInterface.csproj" />
|
---|
30 | <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj" />
|
---|
31 | <ProjectReference Include="..\..\HeuristicLab.DynamicAssemblyTestApp\HeuristicLab.DynamicAssemblyTestApp.csproj" />
|
---|
32 | <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj" />
|
---|
33 | </ItemGroup>
|
---|
34 |
|
---|
35 | <ItemGroup>
|
---|
36 | <Reference Include="HEAL.Attic">
|
---|
37 | <HintPath>..\..\bin\HEAL.Attic.dll</HintPath>
|
---|
38 | </Reference>
|
---|
39 | </ItemGroup>
|
---|
40 |
|
---|
41 | <ItemGroup>
|
---|
42 | <None Include="$(SolutionDir)\HeuristicLab\3.3\DockerWindowsBuild\**" CopyToOutputDirectory="Always" LinkBase="DockerWindowsBuild\" />
|
---|
43 | <None Include="$(SolutionDir)\HeuristicLab\3.3\DockerLinuxBuild\**" CopyToOutputDirectory="Always" LinkBase="DockerLinuxBuild\" />
|
---|
44 | </ItemGroup>
|
---|
45 |
|
---|
46 | </Project>
|
---|