-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecky.AspNetCore.csproj
28 lines (24 loc) · 1.03 KB
/
Specky.AspNetCore.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>Michael Puckett, II</Authors>
<Description>Specky extensions and utilities for use in ASP.NET Core 3.1+</Description>
<Copyright>2020</Copyright>
<PackageProjectUrl>https://github.com/MichaelPuckett2/Specky.AspNetCore</PackageProjectUrl>
<RepositoryUrl>https://github.com/MichaelPuckett2/Specky.AspNetCore</RepositoryUrl>
<PackageTags>Specky, AspNetCore, .NET Core, ASP.NET</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>1.0.2</Version>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.0" />
<PackageReference Include="Specky" Version="1.0.9" />
</ItemGroup>
<ItemGroup>
<None Include="..\Specky\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>