Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2924_DotNetCoreMigration/HeuristicLab.PluginInfrastructure.Runner/3.4/HeuristicLab.PluginInfrastructure.Runner-3.4.csproj @ 16859

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

#2924:

  • migrated PluginInfrastructure to .NET Standard
  • created a new .NET Core project HeuristicLab.PluginInfrastructure.Runner, which contains the logic to load and isolate assemblies, based on the new interfaces from HeuristicLab.PluginInfrastructure
  • recycled old plugin validation code
File size: 1.2 KB
Line 
1<Project Sdk="Microsoft.NET.Sdk">
2
3  <PropertyGroup>
4    <OutputType>Exe</OutputType>
5    <TargetFramework>netcoreapp2.2</TargetFramework>
6    <RootNamespace>HeuristicLab.PluginInfrastructure.Runner</RootNamespace>
7    <AssemblyVersion>3.4.0.0</AssemblyVersion>
8    <FileVersion>3.4.0.0</FileVersion>
9    <SignAssembly>true</SignAssembly>
10    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
11  </PropertyGroup>
12
13  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14    <OutputPath>..\..\bin\</OutputPath>
15    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
16  </PropertyGroup>
17
18  <ItemGroup>
19    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj" />
20    <ProjectReference Include="..\..\HeuristicLab.Tracing\3.3\HeuristicLab.Tracing-3.3.csproj" />
21  </ItemGroup>
22
23  <!--<Target Name="PostBuild" AfterTargets="PostBuildEvent" Condition="'$(OS)'=='Windows_NT'">
24    <Exec Command="docker build -t dockerrunner -f $(SolutionDir)HeuristicLab.PluginInfrastructure\3.3\Dockerfile $(SolutionDir)" />
25  </Target>-->
26
27</Project>
Note: See TracBrowser for help on using the repository browser.