forked from Tyrrrz/CliWrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
28 lines (24 loc) · 1.17 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
<Project>
<PropertyGroup>
<Version>0.0.0-dev</Version>
<Company>Tyrrrz</Company>
<Copyright>Copyright (C) Oleksii Holub</Copyright>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<!-- Disable nullability warnings on older frameworks because there is no nullability info for BCL -->
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net462'">
<Nullable>annotations</Nullable>
</PropertyGroup>
<PropertyGroup>
<Authors>$(Company)</Authors>
<Description>Library for interacting with external command-line interfaces</Description>
<PackageTags>yshell pipe command line executable interface wrapper standard input output error arguments net core</PackageTags>
<PackageProjectUrl>https://github.com/Tyrrrz/CliWrap</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/Tyrrrz/CliWrap/releases</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
</Project>