dotnet-core/samples/dotnet-runtimeinfo/dotnet-runtimeinfo.csproj
2021-09-24 16:44:21 -07:00

19 lines
693 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Displays .NET version and environment information.</Description>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>9</LangVersion>
<Nullable>enable</Nullable>
<RollForward>LatestMajor</RollForward>
<VersionPrefix>1.0.5</VersionPrefix>
<PackageProjectUrl>https://github.com/dotnet/core/blob/main/samples/dotnet-runtimeinfo/README.md</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>.NET Foundation</Copyright>
<Authors>.NET Team</Authors>
<PackAsTool>true</PackAsTool>
</PropertyGroup>
</Project>