-
Notifications
You must be signed in to change notification settings - Fork 0
/
SubSonic.Core.Abstractions.csproj
35 lines (31 loc) · 1.46 KB
/
SubSonic.Core.Abstractions.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
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Kenneth Carter</Authors>
<Version>4.1.2</Version>
<SignAssembly>true</SignAssembly>
<RepositoryType>Git</RepositoryType>
<RepositoryUrl>https://github.com/SubSonic-Core/SubSonic.Core.Abstractions</RepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AssemblyOriginatorKeyFile>SubSonicStrongName.snk</AssemblyOriginatorKeyFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Description>this package provides access to the public interfaces defined for SubSonic-Core</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Condition="'$(TargetFramework)'=='netstandard2.0'" Include="AsyncEnumerator" Version="4.0.2" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.7" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>