2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-01 20:10:42 -08:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
2017-03-02 19:45:55 -08:00
|
|
|
|
|
2016-11-29 15:42:16 -08:00
|
|
|
|
<PropertyGroup>
|
2017-01-25 21:19:44 -06:00
|
|
|
|
<TargetFramework>$(CliTargetFramework)</TargetFramework>
|
|
|
|
|
<RuntimeFrameworkVersion>$(CLI_SharedFrameworkVersion)</RuntimeFrameworkVersion>
|
2016-11-29 15:42:16 -08:00
|
|
|
|
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
|
2017-01-06 14:16:55 -08:00
|
|
|
|
<AssemblyName>dotnet-remove-reference.Tests</AssemblyName>
|
2017-06-20 18:45:36 -07:00
|
|
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
2017-06-14 00:27:26 -07:00
|
|
|
|
<AssetTargetFallback>$(AssetTargetFallback);dotnet5.4;portable-net451+win8</AssetTargetFallback>
|
2016-11-29 15:42:16 -08:00
|
|
|
|
</PropertyGroup>
|
2017-01-05 19:44:52 -08:00
|
|
|
|
|
2016-11-29 15:42:16 -08:00
|
|
|
|
<ItemGroup>
|
2016-12-28 14:50:34 -08:00
|
|
|
|
<ProjectReference Include="..\..\src\Microsoft.DotNet.Cli.Sln.Internal\Microsoft.DotNet.Cli.Sln.Internal.csproj" />
|
2016-11-29 15:42:16 -08:00
|
|
|
|
<ProjectReference Include="..\Msbuild.Tests.Utilities\Msbuild.Tests.Utilities.csproj" />
|
2017-06-20 18:45:36 -07:00
|
|
|
|
<ProjectReference Include="..\..\src\dotnet\dotnet.csproj" />
|
2016-11-29 15:42:16 -08:00
|
|
|
|
</ItemGroup>
|
2017-03-02 20:38:56 -08:00
|
|
|
|
|
2016-11-29 15:42:16 -08:00
|
|
|
|
<ItemGroup>
|
2017-03-02 19:45:55 -08:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0-preview-20161024-02" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta4-build1194" />
|
|
|
|
|
<PackageReference Include="xunit" Version="2.2.0-beta4-build3444" />
|
|
|
|
|
<PackageReference Include="Microsoft.Build" Version="$(CLI_MSBuild_Version)" />
|
|
|
|
|
<PackageReference Include="FluentAssertions" Version="4.18.0" />
|
2017-05-01 15:54:04 -07:00
|
|
|
|
<PackageReference Include="Microsoft.DotNet.ProjectJsonMigration" Version="$(CliMigrateVersion)" />
|
2016-11-29 15:42:16 -08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|