Implab.ServiceHost.csproj
36 lines
| 1.3 KiB
| text/plain
|
TextLexer
/ Implab.ServiceHost / Implab.ServiceHost.csproj
cin
|
r267 | <Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||||
cin
|
r281 | <Authors>Sergey Smirnov</Authors> | ||
cin
|
r291 | <Title>Implab.ServiceHost</Title> | ||
<Description>The configurable application host. | ||||
Provides simple and flexible Xml configuration for UnityContainer. | ||||
</Description> | ||||
<Copyright>2012-2018 Sergey Smirnov</Copyright> | ||||
cin
|
r292 | <Version>1.0.3</Version> | ||
cin
|
r291 | <PackageLicenseUrl>https://bitbucket.org/wozard/implabnet/src/v3/Implab/license.txt</PackageLicenseUrl> | ||
<PackageProjectUrl>https://bitbucket.org/wozard/implabnet</PackageProjectUrl> | ||||
<RepositoryUrl>https://bitbucket.org/wozard/implabnet</RepositoryUrl> | ||||
cin
|
r281 | <RepositoryType>mercurial</RepositoryType> | ||
cin
|
r291 | <PackageTags>Implab;Xml configuration;IoC;Unity container</PackageTags> | ||
</PropertyGroup> | ||||
<PropertyGroup Condition="'$(OSTYPE)'=='linux'"> | ||||
<TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks> | ||||
<FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.5/</FrameworkPathOverride> | ||||
</PropertyGroup> | ||||
<PropertyGroup Condition="'$(OSTYPE)'=='windows'"> | ||||
<TargetFrameworks>netcoreapp2.0;net46</TargetFrameworks> | ||||
cin
|
r267 | </PropertyGroup> | ||
<ItemGroup> | ||||
cin
|
r288 | <PackageReference Include="Unity" Version="5.8.6" /> | ||
cin
|
r267 | </ItemGroup> | ||
<ItemGroup> | ||||
<ProjectReference Include="..\Implab\Implab.csproj" /> | ||||
</ItemGroup> | ||||
</Project> | ||||