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-10-29 08:04:20 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Description>Microsoft.DotNet.TestFramework Class Library</Description>
|
2016-12-05 22:47:16 +00:00
|
|
|
|
<VersionPrefix>1.0.0-preview5</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>
|
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=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|