-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathServiceLocation.csproj
More file actions
46 lines (38 loc) · 2.7 KB
/
ServiceLocation.csproj
File metadata and controls
46 lines (38 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>Microsoft.Practices.ServiceLocation</AssemblyName>
<RootNamespace>Microsoft.Practices.ServiceLocation</RootNamespace>
<PackageId>CommonServiceLocator.NetCore</PackageId>
<Title>CommonServiceLocator for .Net Core & .Net Standard</Title>
<PackageVersion>1.3.1</PackageVersion>
<Authors>Mohammad Chavoshi</Authors>
<Description>The Common Service Locator library contains a shared interface for service location which application and framework developers can reference. The library provides an abstraction over IoC containers and service locators. Using the library allows an application to indirectly access the capabilities without relying on hard references. The hope is that using this library, third-party applications and frameworks can begin to leverage IoC/Service Location without tying themselves down to a specific implementation. This library contains a class library that targets .Net Core 2.0 & .Net Standard 2.0.</Description>
<PackageTags>CommonServiceLocator ServiceLocation Microsoft.Practices.ServiceLocation NetCore NetStandard</PackageTags>
<PackageIconUrl>https://nuget.org/Media/Default/Packages/Unity/2.0/entlib_new_icon_100x100.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/Chavoshi/CommonServiceLocator.NetCore</PackageProjectUrl>
<PackageLicenseUrl>http://opensource.org/licenses/Apache-2.0</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<AssemblyVersion>1.3.0.0</AssemblyVersion>
<FileVersion>1.3.0.0</FileVersion>
<SignAssembly>false</SignAssembly>
<DelaySign>false</DelaySign>
<Version>1.3.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netcoreapp2.0\Microsoft.Practices.ServiceLocation.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netcoreapp2.0\Microsoft.Practices.ServiceLocation.xml</DocumentationFile>
</PropertyGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy "$(OutDir)*.*" "$(SolutionDir)..\Build\$(ConfigurationName)\" /s /i /y /d" />
</Target>
</Project>