annotate Implab.ServiceHost/Implab.ServiceHost.csproj @ 281:e0916ddc9950 v3 tip

code cleanup and refactoring
author cin
date Fri, 01 Jun 2018 21:35:24 +0300
parents 6b3e5c48131b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
267
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
1 <Project Sdk="Microsoft.NET.Sdk">
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
2
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
3 <PropertyGroup>
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
4 <TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
5 <FrameworkPathOverride Condition="'$(TargetFramework)'=='net46'">/usr/lib/mono/4.6-api/</FrameworkPathOverride>
281
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
6 <Authors>Sergey Smirnov</Authors>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
7 <Title>Implab.SrviceHost library</Title>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
8 <Description>Provides simple and flexible XML configuration for the Unity IoC</Description>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
9 <Copyright>2018 Sergey Smirnov</Copyright>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
10 <Version>1.0.0</Version>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
11 <PackageLicenseUrl>https://hg.implab.org/pub/ImplabNet/file/tip/Implab/license.txt</PackageLicenseUrl>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
12 <PackageProjectUrl>https://implab.org</PackageProjectUrl>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
13 <RepositoryUrl>https://hg.implab.org/pub/ImplabNet/</RepositoryUrl>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
14 <RepositoryType>mercurial</RepositoryType>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
15 <PackageTags>IoC; Unity; Dependency Injection</PackageTags>
e0916ddc9950 code cleanup and refactoring
cin
parents: 267
diff changeset
16 <TargetFrameworks>netstandard2.0;net46</TargetFrameworks>
267
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
17 </PropertyGroup>
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
18
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
19 <ItemGroup>
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
20 <PackageReference Include="Unity" Version="5.8.5" />
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
21 </ItemGroup>
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
22
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
23 <ItemGroup>
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
24 <ProjectReference Include="..\Implab\Implab.csproj" />
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
25 </ItemGroup>
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
26
6b3e5c48131b Working on Unity xml configuration
cin
parents:
diff changeset
27 </Project>