forked from kerryjiang/SuperSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
26 lines (26 loc) · 1.04 KB
/
Directory.Build.props
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
<Project>
<Import Project="Dependencies.props" />
<PropertyGroup>
<VersionPrefix>2.0.0-beta1</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<NrtRevisionFormat>$(VersionPrefix)-$(VersionSuffix)-{chash}</NrtRevisionFormat>
</PropertyGroup>
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<LibTargetFramework>netstandard2.1</LibTargetFramework>
</PropertyGroup>
<PropertyGroup>
<PackageProjectUrl>https://github.com/kerryjiang/supersocket</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>true</IncludeSource>
<Authors>Kerry Jiang</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Unclassified.NetRevisionTask" Version="0.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>