14 lines
688 B
XML
Executable file
14 lines
688 B
XML
Executable file
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="dotnet-portable" Version="1.0.0" />
|
|
<DotNetCliToolReference Include="dotnet-PreferCliRuntime" Version="1.0.0" />
|
|
</ItemGroup>
|
|
</Project>
|