Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2924:

  • merged projects HeuristicLab.PluginInfrastructure.Runner and HeuristicLab.PluginInfrastructure
  • applied changes of code reviews (13.05.2019 and 22.05.2019) -> the old Runner is now RunnerHost and uses a Runner, which is executed on the child process
  • added Type GetType(string) to IApplicationManager and implemented it for LightweightApplicationManager
  • removed IActivator and IActivatorContext
  • deleted unused types like PluginDescriptionIterator
File size: 1.4 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.16192</AssemblyFileVersion>
11    <RootNamespace>HeuristicLab.PluginInfrastructure</RootNamespace>
12  </PropertyGroup>
13 
14  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
15    <OutputPath>..\..\bin\</OutputPath>
16    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
17  </PropertyGroup>
18  <ItemGroup>
19    <PackageReference Include="System.CodeDom" Version="4.5.0" />
20    <PackageReference Include="System.Drawing.Common" Version="4.5.1" />
21    <PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
22    <PackageReference Include="System.Security.Cryptography.ProtectedData" Version="4.5.0" />
23    <PackageReference Include="System.ServiceModel.Primitives" Version="4.5.3" />
24    <PackageReference Include="System.Configuration.ConfigurationManager" Version="4.5.0" />
25    <PackageReference Include="System.Security.Cryptography.Primitives" Version="4.3.0" />
26  </ItemGroup>
27  <ItemGroup>
28    <Folder Include="Exceptions\" />
29  </ItemGroup>
30</Project>
Note: See TracBrowser for help on using the repository browser.