2016-11-01 20:15:44 +00:00
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
2016-12-02 17:34:03 +00:00
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
2016-11-01 20:15:44 +00:00
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFrameworks>net46;netcoreapp1.0</TargetFrameworks>
|
|
|
|
</PropertyGroup>
|
2016-11-01 20:26:42 +00:00
|
|
|
|
2016-11-01 20:15:44 +00:00
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
|
|
|
|
<DefineConstants>DESKTOP;$(DefineConstants)</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="**\*.cs" />
|
|
|
|
</ItemGroup>
|
2016-11-01 20:26:42 +00:00
|
|
|
|
2016-11-01 20:15:44 +00:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
|
|
<Version>1.0.1</Version>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
2016-12-02 17:34:03 +00:00
|
|
|
<!-- Should be $(CLI_NETSDK_Version) but https://github.com/dotnet/cli/issues/4892 -->
|
2016-11-01 20:15:44 +00:00
|
|
|
<Version>1.0.0-alpha-20161026-2</Version>
|
|
|
|
<PrivateAssets>All</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk">
|
2016-12-28 18:17:33 +00:00
|
|
|
<Version>$(CLI_TestPlatform_Version)</Version>
|
2016-11-01 20:15:44 +00:00
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="xunit">
|
2016-11-07 09:20:08 +00:00
|
|
|
<Version>2.2.0-beta4-build3444</Version>
|
2016-11-01 20:15:44 +00:00
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
2016-11-07 09:20:08 +00:00
|
|
|
<Version>2.2.0-beta4-build1194</Version>
|
2016-11-01 20:15:44 +00:00
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
</Project>
|