-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
25 lines (23 loc) · 1.06 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<LangVersion>10</LangVersion>
<NoWarn>1701;1702;1591</NoWarn>
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup>
<Description>ANTLR 4 parser generator command line tool.</Description>
<Version Condition="'$(Version)'==''">0.0.0.0</Version>
<Authors>Peter Bruch</Authors>
<Copyright>Copyright $([System.DateTime]::Now.Year)</Copyright>
<PackageTags>Antlr Antlr4 parser parser-generator cli</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ptr1120/Antlr4.CodeGenerator.Tool</PackageProjectUrl>
<RepositoryUrl>https://github.com/ptr1120/Antlr4.CodeGenerator.Tool</RepositoryUrl>
</PropertyGroup>
</Project>