File tree 5 files changed +12
-6
lines changed
5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 51
51
$(RepoRoot)src\Components\WebView\Samples\BlazorWinFormsApp\**\*.csproj;
52
52
$(RepoRoot)src\Components\WebView\Samples\BlazorWpfApp\**\*.csproj;
53
53
" />
54
-
55
- <!-- Skipping due to build race conditions for now -->
54
+
55
+ <!-- Projects won't build consistently. An SDK newer than 6.0.100-preview.5.21230.2 should fix the first.
56
+ See https://github.com/dotnet/aspnetcore/pull/32428 and https://github.com/dotnet/aspnetcore/issues/32788. -->
57
+ <ProjectToExclude Include ="
58
+ $(RepoRoot)src\Components\benchmarkapps\Wasm.Performance\TestApp\Wasm.Performance.TestApp.csproj" />
56
59
<ProjectToExclude Include ="
57
60
$(RepoRoot)src/Components/test/E2ETestMigration/Microsoft.AspNetCore.Components.Migration.E2ETests.csproj" />
58
61
</ItemGroup >
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 6.0.100-preview.5.21264.3 "
3
+ "version" : " 6.0.100-preview.5.21230.2 "
4
4
},
5
5
"tools" : {
6
- "dotnet" : " 6.0.100-preview.5.21264.3 " ,
6
+ "dotnet" : " 6.0.100-preview.5.21230.2 " ,
7
7
"runtimes" : {
8
8
"dotnet/x64" : [
9
9
" 2.1.27" ,
Original file line number Diff line number Diff line change 1
1
@implements IDisposable
2
2
@inject AuthenticationStateProvider AuthenticationStateProvider
3
3
4
- <CascadingValue TValue =" Task<AuthenticationState>" Value =" @_currentAuthenticationStateTask" ChildContent =" @ChildContent" />
4
+ <CascadingValue TValue =" Task<AuthenticationState>" Value =" @_currentAuthenticationStateTask" ChildContent =" @((RenderFragment) ChildContent!) " />
5
5
6
6
@code {
7
7
private Task <AuthenticationState >? _currentAuthenticationStateTask ;
Original file line number Diff line number Diff line change 47
47
<ProjectReference Include =" ..\testassets\TestServer\Components.TestServer.csproj" />
48
48
<ProjectReference Include =" ..\..\WebAssembly\testassets\Wasm.Authentication.Server\Wasm.Authentication.Server.csproj" />
49
49
50
+ <!-- TODO - turn this back on once the SDK is higher than 6.0.100-preview.5.21230.2: https://github.com/dotnet/aspnetcore/issues/32788
50
51
<ProjectReference Include="..\..\benchmarkapps\Wasm.Performance\TestApp\Wasm.Performance.TestApp.csproj"
51
52
Targets="Publish"
52
53
Properties="TestTrimmedApps=true;PublishDir=$(MSBuildThisFileDirectory)$(OutputPath)trimmed\Wasm.Performance.TestApp\"
53
- Condition =" '$(TestTrimmedApps)' == 'true'" />
54
+ Condition="'$(TestTrimmedApps)' == 'true'" /> -->
54
55
55
56
<ProjectReference
56
57
Include =" ..\testassets\BasicTestApp\BasicTestApp.csproj"
Original file line number Diff line number Diff line change @@ -33,12 +33,14 @@ protected override void InitializeAsyncCore()
33
33
public override Task InitializeAsync ( ) => base . InitializeAsync ( Guid . NewGuid ( ) . ToString ( ) ) ;
34
34
35
35
[ Fact ]
36
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/32788" ) ]
36
37
public void HasTitle ( )
37
38
{
38
39
Assert . Equal ( "E2EPerformance" , Browser . Title ) ;
39
40
}
40
41
41
42
[ Fact ]
43
+ [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/32788" ) ]
42
44
public void BenchmarksRunWithoutError ( )
43
45
{
44
46
// In CI, we only verify that the benchmarks run without throwing any
You can’t perform that action at this time.
0 commit comments