<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>ConsoleDemoWithCasing</AssemblyName>
<RestoreSources>
$(RestoreSources);
https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json;
</RestoreSources>
<EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
<EnableSourceLink>false</EnableSourceLink>
<DeterministicSourcePaths>false</DeterministicSourcePaths>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<PackAsTool>true</PackAsTool>
<PackageId>Global.Tool.Console.Demo.With.Casing</PackageId>
<Version>2.0.4</Version>
<ToolCommandName>DemoWithCasing</ToolCommandName>
</PropertyGroup>
</Project>
|