26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- This test asset needs to import the general dir.props in order to get the SdkNugetVersion property.
|
|
This is why it also needs to explicitly set DisableImplicitFrameworkReferences to false. -->
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<VersionSuffix></VersionSuffix>
|
|
<DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<SdkNugetVersion Condition=" '$(SdkNugetVersion)' == ''">$(CliVersionPrefix)-*</SdkNugetVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NuGet.Frameworks" Version="$(CLI_NuGet_Version)" />
|
|
<PackageReference Include="Microsoft.DotNet.Cli.Utils" Version="$(SdkNugetVersion)" />
|
|
<PackageReference Include="Microsoft.DotNet.Cli.CommandLine" Version="$(CliCommandLineParserVersion)" />
|
|
<PackageReference Include="System.Linq" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|