dotnet-core/samples/dotnetsay/dotnetsay.csproj
2021-02-24 09:35:54 -08:00

24 lines
765 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>A simple .NET Core tool called "dotnetsay".</Description>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<LangVersion>9</LangVersion>
<Nullable>Enable</Nullable>
<RollForward>LatestMajor</RollForward>
<VersionPrefix>2.1.7</VersionPrefix>
<PackageProjectUrl>https://github.com/dotnet/core/blob/main/samples/dotnetsay/README.md</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>.NET Foundation</Copyright>
<Authors>.NET Team</Authors>
<PackAsTool>true</PackAsTool>
</PropertyGroup>
<!--
To pack correctly
dotnet pack /p:ContinuousIntegrationBuild=true
-->
</Project>