-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
36 lines (36 loc) · 1.39 KB
/
Directory.Build.props
File metadata and controls
36 lines (36 loc) · 1.39 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
34
35
36
<Project>
<PropertyGroup>
<DebugType>embedded</DebugType>
<LangVersion>latest</LangVersion>
<Version>2.2.0</Version>
</PropertyGroup>
<PropertyGroup>
<Authors>WoWDev</Authors>
<Description>Library for reading/writing World of Warcraft's DBC/DB2 files</Description>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/wowdev/DBCD.git</RepositoryUrl>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>library,DBC,DB2,World of Warcraft</PackageTags>
<PackageProjectUrl>https://github.com/wowdev/DBCD</PackageProjectUrl>
<PackageIcon>nuget-icon.png</PackageIcon>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<None Include="../nuget-icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>