aspnetcore/test/Microsoft.AspNetCore.Compon.../Microsoft.AspNetCore.Compon...

44 lines
2.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Requires 2.1 because of the dependency on applications -->
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
<!-- WebDriver is not strong-named signed -->
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<ItemGroup>
<!--
Lots of specific versions used here because:
1. We want to require 2.1.0 in our libraries
2. We have a special requirement for Razor.Design at 2.1.2 - this is OK because it's non-transitive
3. We want to test against 2.1.3 in our applications
-->
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.1.1" />
<PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="Selenium.Support" Version="3.12.0" />
<PackageReference Include="Selenium.WebDriver" Version="3.12.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\blazor\benchmarks\Microsoft.AspNetCore.Blazor.E2EPerformance\Microsoft.AspNetCore.Blazor.E2EPerformance.csproj" />
<ProjectReference Include="..\..\blazor\samples\HostedInAspNet.Client\HostedInAspNet.Client.csproj" />
<ProjectReference Include="..\..\blazor\samples\HostedInAspNet.Server\HostedInAspNet.Server.csproj" />
<ProjectReference Include="..\..\blazor\samples\MonoSanityClient\MonoSanityClient.csproj" />
<ProjectReference Include="..\..\blazor\samples\MonoSanity\MonoSanity.csproj" />
<ProjectReference Include="..\..\blazor\samples\StandaloneApp\StandaloneApp.csproj" />
<ProjectReference Include="..\..\blazor\src\Microsoft.AspNetCore.Blazor.Cli\Microsoft.AspNetCore.Blazor.Cli.csproj" />
<ProjectReference Include="..\..\samples\ComponentsApp.App\ComponentsApp.App.csproj" />
<ProjectReference Include="..\..\samples\ComponentsApp.Server\ComponentsApp.Server.csproj" />
<ProjectReference Include="..\testapps\BasicTestApp\BasicTestApp.csproj" />
<ProjectReference Include="..\testapps\TestServer\TestServer.csproj" />
</ItemGroup>
</Project>