-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDirectory.Build.props
30 lines (26 loc) · 1004 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
26
27
28
29
30
<Project>
<PropertyGroup>
<PackageVersion>1.0.0</PackageVersion>
<Authors>王海波</Authors>
<Copyright>王海波</Copyright>
<RepositoryUrl>https://github.com/xfrogcn/Xfrogcn.AspNetCore.Extensions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageIcon>package-icon.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<Product>Xfrogcn AspNetCore Extensions</Product>
<!-- 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>xfrogcn@163.com</MaintainerEmail>
<IncludeSymbols>true</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\package-icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>