2016-10-29 08:04:20 +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-10-29 08:04:20 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Description>Microsoft.DotNet.TestFramework Class Library</Description>
|
2016-11-04 18:17:51 +00:00
|
|
|
|
<VersionPrefix>1.0.0-preview4</VersionPrefix>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<TargetFrameworks>netstandard1.5;net46</TargetFrameworks>
|
|
|
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="**\*.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
2016-12-02 17:34:03 +00:00
|
|
|
|
<Version>$(CLI_NETSDK_Version)</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<PrivateAssets>All</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2016-11-09 07:23:13 +00:00
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' != 'net46' ">
|
|
|
|
|
<PackageReference Include="System.IO.FileSystem.Primitives">
|
|
|
|
|
<Version>4.0.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard1.5' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);NETSTANDARD1_5</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'net46' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);NET46</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|