2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-21 00:38:04 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-11-12 07:46:29 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyName>ArgumentsReflector</AssemblyName>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-01-04 21:27:41 +00:00
|
|
|
|
<VersionPrefix>1.0.0-preview5</VersionPrefix>
|
|
|
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
2016-11-12 07:46:29 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="reflector_cmd.cmd">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
2017-01-04 21:27:41 +00:00
|
|
|
|
<Version>1.1.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp">
|
|
|
|
|
<Version>2.0.0-beta6-60922-08</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Net.Compilers.netcore">
|
|
|
|
|
<Version>2.0.0-beta6-60922-08</Version>
|
2016-11-12 07:46:29 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|