-
Notifications
You must be signed in to change notification settings - Fork 2
/
Directory.Build.props
21 lines (19 loc) · 991 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591;1587;1574</NoWarn>
<!-- NuGet Package Information -->
<Description>Write scripts with the power of .NET. Provides a shell script-like (bash, cmd, ...) experience to .NET application.</Description>
<Authors>Mayuki Sawatari</Authors>
<Copyright>Copyright © Mayuki Sawatari</Copyright>
<PackageProjectUrl>https://github.com/mayuki/Chell</PackageProjectUrl>
<RepositoryUrl>https://github.com/mayuki/Chell</RepositoryUrl>
<!--<PackageIcon>icon.png</PackageIcon>-->
<PackageTags>CommandLine Shell Process</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
</Project>