2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-20 16:38:04 -08:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-11-11 21:46:29 -10:00
|
|
|
|
<PropertyGroup>
|
2017-01-04 17:57:17 -06:00
|
|
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
2016-11-11 21:46:29 -10:00
|
|
|
|
<AssemblyName>ArgumentsReflector</AssemblyName>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-01-04 15:27:41 -06:00
|
|
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
2016-11-11 21:46:29 -10:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="reflector_cmd.cmd">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
2017-02-10 15:55:09 -08:00
|
|
|
|
<Version>$(CLI_SharedFrameworkVersion)</Version>
|
2017-01-04 15:27:41 -06:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp">
|
2017-01-20 18:30:10 -08:00
|
|
|
|
<Version>$(CLI_Roslyn_Version)</Version>
|
2017-01-04 15:27:41 -06:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Net.Compilers.netcore">
|
2017-01-20 18:30:10 -08:00
|
|
|
|
<Version>$(CLI_Roslyn_Version)</Version>
|
2016-11-11 21:46:29 -10:00
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|