-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Directory.Build.props
28 lines (28 loc) · 1.27 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
27
28
<Project>
<Import Project="Dependencies.props" />
<PropertyGroup>
<LangVersion>10.0</LangVersion>
<TargetFrameworks>netstandard2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<SamplesTargetFrameworks>net8.0</SamplesTargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<MobileTargetFrameworks>net7.0-ios;net7.0-android;net7.0-macos;net7.0-tvos;net8.0-ios;net8.0-android;net8.0-macos;net8.0-tvos</MobileTargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<PackageProjectUrl>https://github.com/kerryjiang/supersocket</PackageProjectUrl>
<RepositoryUrl>https://github.com/kerryjiang/SuperSocket.git</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>true</IncludeSource>
<Authors>Kerry Jiang and other contributors</Authors>
<Owners>Kerry Jiang</Owners>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="$(IsPackable) != False AND '$(OutputType)' != 'Exe'">
<Compile Include="..\..\InternalsVisibleTo.cs" />
</ItemGroup>
</Project>