267
|
1 <Project Sdk="Microsoft.NET.Sdk">
|
|
2
|
|
3 <PropertyGroup>
|
|
4 <TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
|
|
5 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.6-api/</FrameworkPathOverride>
|
281
|
6 <Authors>Sergey Smirnov</Authors>
|
|
7 <Title>Implab.SrviceHost library</Title>
|
|
8 <Description>Provides simple and flexible XML configuration for the Unity IoC</Description>
|
|
9 <Copyright>2018 Sergey Smirnov</Copyright>
|
|
10 <Version>1.0.0</Version>
|
|
11 <PackageLicenseUrl>https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt</PackageLicenseUrl>
|
|
12 <PackageProjectUrl>https://implab.org</PackageProjectUrl>
|
|
13 <RepositoryUrl>https://hg.implab.org/pub/ImplabNet/</RepositoryUrl>
|
|
14 <RepositoryType>mercurial</RepositoryType>
|
|
15 <PackageTags>IoC; Unity; Dependency Injection</PackageTags>
|
|
16 <TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
|
267
|
17 </PropertyGroup>
|
|
18
|
|
19 <ItemGroup>
|
|
20 <PackageReference Include="Unity" Version="5.8.5" />
|
|
21 </ItemGroup>
|
|
22
|
|
23 <ItemGroup>
|
|
24 <ProjectReference Include="..\Implab\Implab.csproj" />
|
|
25 </ItemGroup>
|
|
26
|
|
27 </Project>
|