-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
32 lines (28 loc) · 1.08 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
29
30
31
32
<Project>
<PropertyGroup>
<PackageVersion>1.0.0</PackageVersion>
<Authors>王海波</Authors>
<Copyright>王海波</Copyright>
<RepositoryUrl>https://github.com/xfrogcn/Xfrogcn.BinaryFormatter</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<TargetFramework>netstandard2.1</TargetFramework>
<PackageIcon>package-icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<Product>BinarySerializer</Product>
<Title>BinarySerializer</Title>
<Description>High performance binary serialization libraries</Description>
<!-- The SPDX name for the source license. See https://spdx.org/licenses/. -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Contact email address for NuGet packages and Linux installers. -->
<MaintainerEmail>[email protected]</MaintainerEmail>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\package-icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>