d471037ce3
For test assets, don't explicitly include the runtimeconfig file, as the pack command does it automatically
20 lines
806 B
XML
20 lines
806 B
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
|
|
|
<PropertyGroup>
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
|
<TargetFrameworks>netcoreapp1.1;net451</TargetFrameworks>
|
|
<AssemblyName>dotnet-desktop-and-portable</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<RuntimeIdentifiers>win7-x64;win7-x86</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">
|
|
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
</Project>
|