mirror of
https://github.com/AlexMacocian/Slim.git
synced 2026-07-15 15:19:59 +00:00
c487033aad
* Make ServiceCollectionExtensions use IServiceCollection * Extend the collectionextensions to use an existing service manager
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<LangVersion>latest</LangVersion>
|
|
<Authors>Alexandru Macocian</Authors>
|
|
<Company />
|
|
<Product></Product>
|
|
<Description>Integration with Microsoft.DependencyInjection library.</Description>
|
|
<AssemblyVersion>1.0.3</AssemblyVersion>
|
|
<FileVersion>1.0.3</FileVersion>
|
|
<PackageProjectUrl>https://github.com/AlexMacocian/Slim</PackageProjectUrl>
|
|
<Version>1.0.3</Version>
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
|
|
<PackageReference Include="Slim" Version="1.9.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath></PackagePath>
|
|
</None>
|
|
<None Include="..\README.md" Link="README.md" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|