da82bdb05d
* Centralize Microsoft.Net.Sdk package version Note: Templates were omitted as their version needs to be static. * Unifying additional missmatched versions * prefercliruntime whitespace threw off ReplaceAll * Additional missed globs * Revert SDK version for performance tests * PR Feedback * Roll back VSTestXunitDesktopAndNetCore.csproj SDK version
42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net46;netcoreapp1.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
|
|
<DefineConstants>DESKTOP;$(DefineConstants)</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="**\*.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
<Version>1.0.1</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
|
<!-- Should be $(CLI_NETSDK_Version) but https://github.com/dotnet/cli/issues/4892 -->
|
|
<Version>1.0.0-alpha-20161026-2</Version>
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk">
|
|
<Version>15.0.0-preview-20161123-03</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="xunit">
|
|
<Version>2.2.0-beta4-build3444</Version>
|
|
</PackageReference>
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
|
<Version>2.2.0-beta4-build1194</Version>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
</Project>
|