Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2924: changed project HeuristicLab.Persistence to be .net core compatible

File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project Sdk="Microsoft.NET.Sdk">
3  <PropertyGroup>
4    <TargetFramework>netstandard2.0</TargetFramework>
5    <Copyright>(c) 2002-2018 HEAL</Copyright>
6    <Product>HeuristicLab</Product>
7    <SignAssembly>true</SignAssembly>
8    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
9    <AssemblyVersion>3.3.0.0</AssemblyVersion>
10    <AssemblyFileVersion>3.3.15.0</AssemblyFileVersion>
11    <RootNamespace>HeuristicLab.Persistence</RootNamespace>
12  </PropertyGroup>
13  <ItemGroup>
14    <PackageReference Include="System.Reflection.Emit.ILGeneration" Version="4.3.0" />
15    <PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
16  </ItemGroup>
17  <ItemGroup>
18    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj" />
19    <ProjectReference Include="..\..\HeuristicLab.Tracing\3.3\HeuristicLab.Tracing-3.3.csproj" />
20  </ItemGroup>
21  <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
22    <Exec Command="set Path=%Path%;$(ProjectDir);$(SolutionDir)&#xD;&#xA;set ProjectDir=$(ProjectDir)&#xD;&#xA;set SolutionDir=$(SolutionDir)&#xD;&#xA;set Outdir=$(Outdir)&#xD;&#xA;call PreBuildEvent.cmd" />
23  </Target>
24  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
25    <OutputPath>..\..\bin\</OutputPath>
26    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
27  </PropertyGroup>
28</Project>
Note: See TracBrowser for help on using the repository browser.