26 lines
1.1 KiB
XML
26 lines
1.1 KiB
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>netcoreapp2.0;net451</TargetFrameworks>
|
|
<AssemblyName>dotnet-desktop-and-portable</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<RuntimeIdentifiers>win7-x64;win7-x86</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
|
|
<BuiltProjectOutputGroupOutput Include="$(ProjectRuntimeConfigFilePath)">
|
|
<FinalOutputPath>$(ProjectRuntimeConfigFilePath)</FinalOutputPath>
|
|
</BuiltProjectOutputGroupOutput>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
|
|
<RuntimeFrameworkVersion>$(CLI_SharedFrameworkVersion)</RuntimeFrameworkVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
</Project>
|