2018-10-17 05:28:42 +08:00
<Project Sdk= "Microsoft.NET.Sdk" ToolsVersion= "15.0" >
2018-04-28 04:25:33 +08:00
<Import Project= "../Test.Common.props" />
<PropertyGroup >
<Description > PowerShell hosting SDK xUnit Tests</Description>
<AssemblyName > powershell-hosting-tests</AssemblyName>
<!-- RuntimeIdentifiers>win7 - x86;win7 - x64;osx.10.12 - x64;linux - x64</RuntimeIdentifiers -->
</PropertyGroup>
<PropertyGroup >
<DelaySign > true</DelaySign>
<AssemblyOriginatorKeyFile > ../../src/signing/visualstudiopublic.snk</AssemblyOriginatorKeyFile>
<SignAssembly > true</SignAssembly>
</PropertyGroup>
<ItemGroup >
2018-08-03 02:51:04 +08:00
<PackageReference Include= "xunit" Version= "2.4.0" />
2018-10-10 11:55:41 +08:00
<PackageReference Include= "XunitXml.TestLogger" Version= "2.0.0" />
2018-08-17 06:56:15 +08:00
<!-- The version of Microsoft.PowerShell.SDK should be the version we are releasing, so the tests use the correct SDK before publishing to NuGet.org -->
2019-03-05 03:08:19 +08:00
<PackageReference Include= "Microsoft.PowerShell.SDK" Version= "6.2.0-rc.1" />
2018-08-17 06:56:15 +08:00
<PackageReference Include= "Xunit.SkippableFact" Version= "1.3.6" />
2018-10-17 05:28:42 +08:00
<PackageReference Include= "xunit.runner.visualstudio" Version= "2.4.0" />
2018-04-28 04:25:33 +08:00
</ItemGroup>
</Project>