23 lines
874 B
XML
23 lines
874 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>$(CliTargetFramework)</TargetFramework>
|
||
|
<VersionPrefix>1.0.0</VersionPrefix>
|
||
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81</AssetTargetFallback>
|
||
|
<IsPackable>false</IsPackable>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(CLI_TestPlatform_Version)" />
|
||
|
<PackageReference Include="xunit" Version="2.2.0" />
|
||
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
|
||
|
<PackageReference Include="FluentAssertions" Version="4.18.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\dotnet-cli-build\dotnet-cli-build.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|