17 lines
634 B
XML
17 lines
634 B
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|
<AssemblyName>dotnet-throwingtool</AssemblyName>
|
|
<PackageId>$(AssemblyName)</PackageId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<BuiltProjectOutputGroupOutput Include="$(ProjectRuntimeConfigFilePath)">
|
|
<FinalOutputPath>$(ProjectRuntimeConfigFilePath)</FinalOutputPath>
|
|
</BuiltProjectOutputGroupOutput>
|
|
</ItemGroup>
|
|
|
|
</Project>
|