Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2924:

  • added IEnumerable<T> GetInstances<T>(params object[] args) where T: class and IEnumerable<object> GetInstances(Type type, params object[] args) method to IApplicationManager and implemented them in LightweightApplicationManager -> to instantiate types with specific constructor arguments
  • added RunnerState State { get; } property in IRunnerHost, was already in RunnerHost
  • added user authentication for NativeRunnerHost
  • added optional check for a running docker daemon and available image for type DockerRunnerHost + Exception DockerException
  • added caching of the saved IApplication in ApplicationRunner to prevent a new instance every get call
  • removed System.ServiceModel.Primitives NuGet package
  • lots of formatting
File size: 1.3 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.Configuration.ConfigurationManager" Version="4.5.0" />
24    <PackageReference Include="System.Security.Cryptography.Primitives" Version="4.3.0" />
25  </ItemGroup>
26</Project>
Note: See TracBrowser for help on using the repository browser.