<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>consoledemo</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</PackageId>
<Version>1.0.4</Version>
<ToolCommandName>demo</ToolCommandName>
</PropertyGroup>
</Project>
|