forked from kerryjiang/SuperSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
25 lines (25 loc) · 940 Bytes
/
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
<Project>
<Import Project="Dependencies.props" />
<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 and other contributors</Authors>
<Owners>Kerry Jiang</Owners>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning">
<Version>3.1.91</Version>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup Condition="$(IsPackable) != False AND '$(OutputType)' != 'Exe'">
<Compile Include="..\..\InternalsVisibleTo.cs" />
</ItemGroup>
</Project>