-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
33 lines (30 loc) · 1.23 KB
/
Directory.Build.props
File metadata and controls
33 lines (30 loc) · 1.23 KB
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
33
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageOutputPath>.nuget</PackageOutputPath>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup>
<PackageId></PackageId>
<PackageVersion></PackageVersion>
<Authors>ling921</Authors>
<Description></Description>
<Copyright>Copyright © 2022-2023 ling921 All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/ling921/dotnet-lib</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/ling921/dotnet-lib</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags></PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<Content Include="..\..\resources\icon.png" Link="icon.png" Pack="true" PackagePath="\" Visible="False" />
<Content Include="..\..\LICENSE" Link="LICENSE" Pack="true" PackagePath="\" Visible="False" />
</ItemGroup>
</Project>