30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<Project>
|
|
<Import Project="dependencies.props" />
|
|
|
|
<PropertyGroup>
|
|
<EnableBenchmarkValidation>false</EnableBenchmarkValidation>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- These properties are use by the automation that updates dependencies.props -->
|
|
<LineupPackageId>Internal.AspNetCore.Universe.Lineup</LineupPackageId>
|
|
<LineupPackageRestoreSource>https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json</LineupPackageRestoreSource>
|
|
|
|
<!-- Let us hardcode versions -->
|
|
<DisablePackageReferenceRestrictions>true</DisablePackageReferenceRestrictions>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
By default, this excludes the end-to-end tests from the repo-level build command.
|
|
The CI will script these directly by passing BlazorAllTests=true
|
|
-->
|
|
<ItemGroup Condition="'$(BlazorAllTests)'!='true'">
|
|
<ExcludeFromTest Include="$(RepositoryRoot)test\Microsoft.AspNetCore.Blazor.E2ETest\Microsoft.AspNetCore.Blazor.E2ETest.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCoreRuntime Include="$(MicrosoftNETCoreApp20PackageVersion)" />
|
|
<DotNetCoreRuntime Include="$(MicrosoftNETCoreApp21PackageVersion)" />
|
|
</ItemGroup>
|
|
</Project>
|