Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab/3.3/HeuristicLab-3.3.csproj @ 17027

Last change on this file since 17027 was 17027, checked in by dpiringe, 5 years ago

#2924:

  • renamed HeuristicLab.DynamicAssemblyTestApp to HeuristicLab.ConsoleApplications on folder/solution level
  • changed references from HeuristicLab.DynamicAssemblyTestApp to HeuristicLab.ConsoleApplications in HeuristicLab-3.3.csproj
File size: 2.0 KB
Line 
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.ConsoleApplications\HeuristicLab.ConsoleApplications.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>
Note: See TracBrowser for help on using the repository browser.