-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDirectory.Build.props
41 lines (34 loc) Β· 1.82 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
35
36
37
38
39
40
41
<Project>
<PropertyGroup>
<Authors>Nick Van Dyck</Authors>
<Product>nyancat</Product>
<Description>Nyancat π» in your terminal, rendered through ANSI escape sequences. A port of the orignal terminal application to make this cat run on dotnet core. π±βπ</Description>
<Copyright>Copyright Β© Nick Van Dyck</Copyright>
<NeutralLanguage>en-UK</NeutralLanguage>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/vandycknick/nyancat.cs</PackageProjectUrl>
<RepositoryUrl>https://github.com/vandycknick/nyancat.cs.git</RepositoryUrl>
<PackageReleaseNotes>See $(PackageProjectUrl)/blob/master/CHANGELOG.md for release notes.</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<LangVersion>Latest</LangVersion>
<NoPackageAnalysis>true</NoPackageAnalysis>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Deterministic>true</Deterministic>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateFullPaths Condition="'$(VSCODE_CWD)' != ''">true</GenerateFullPaths>
<BuildDirectory>$(MSBuildThisFileDirectory).build/</BuildDirectory>
<BaseIntermediateOutputPath>$(BuildDirectory)obj/$(MSBuildProjectName)/</BaseIntermediateOutputPath>
<BaseOutputPath>$(BuildDirectory)bin/$(MSBuildProjectName)/</BaseOutputPath>
<MinVerAutoIncrement>minor</MinVerAutoIncrement>
<MinVerTagPrefix>v</MinVerTagPrefix>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>
<ItemGroup Condition="$(IsPackable) == 'true'">
<PackageReference Include="MinVer" Version="2.3.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>