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
RevLine 
[4065]1<?xml version="1.0" encoding="utf-8"?>
[16859]2<Project Sdk="Microsoft.NET.Sdk">
[2]3  <PropertyGroup>
[16859]4    <TargetFramework>netstandard2.0</TargetFramework>
5    <Copyright>(c) 2002-2018 HEAL</Copyright>
6    <Product>HeuristicLab</Product>
[2]7    <SignAssembly>true</SignAssembly>
8    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
[16859]9    <AssemblyVersion>3.3.0.0</AssemblyVersion>
10    <AssemblyFileVersion>3.3.15.16192</AssemblyFileVersion>
11    <RootNamespace>HeuristicLab.PluginInfrastructure</RootNamespace>
[2]12  </PropertyGroup>
[16859]13 
14  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
15    <OutputPath>..\..\bin\</OutputPath>
16    <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
[2]17  </PropertyGroup>
18  <ItemGroup>
[16859]19    <PackageReference Include="System.CodeDom" Version="4.5.0" />
20    <PackageReference Include="System.Drawing.Common" Version="4.5.1" />
[16984]21    <PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
[16859]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" />
[2]26  </ItemGroup>
[16984]27  <ItemGroup>
28    <Folder Include="Exceptions\" />
29  </ItemGroup>
[2]30</Project>
Note: See TracBrowser for help on using the repository browser.