-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
34 lines (31 loc) · 1.25 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
33
34
<Project>
<PropertyGroup>
<Title>DiabloSharp</Title>
<Description>.NET Implementation of the Battle.net Diablo API.</Description>
<PackageTags>diablo;diablo3;d3;blizzard;activision</PackageTags>
<LangVersion>7.3</LangVersion>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodeAnalysisRules.ruleset</CodeAnalysisRuleSet>
<Authors>leardev</Authors>
<VersionPrefix>1.2.2+S22</VersionPrefix>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>DiabloSharp.png</PackageIcon>
<RepositoryUrl>https://github.com/leardev/DiabloSharp.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/leardev/DiabloSharp</PackageProjectUrl>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
<SourceRoot>$(MSBuildThisFileDirectory)</SourceRoot>
</PropertyGroup>
<!-- Customization -->
<PropertyGroup>
<!--
Establish the following kinds of builds:
- dev
- prerelease
- release
These types shall be used tweak the build further
based on the type of build we are initiating.
-->
<BuildType>dev</BuildType>
</PropertyGroup>
</Project>