File tree 5 files changed +6
-12
lines changed
5 files changed +6
-12
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
- <!-- 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" />
54
+
55
+ <!-- Skipping due to build race conditions for now -->
59
56
<ProjectToExclude Include ="
60
57
$(RepoRoot)src/Components/test/E2ETestMigration/Microsoft.AspNetCore.Components.Migration.E2ETests.csproj" />
61
58
</ItemGroup >
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 6.0.100-preview.5.21230.2 "
3
+ "version" : " 6.0.100-preview.5.21264.3 "
4
4
},
5
5
"tools" : {
6
- "dotnet" : " 6.0.100-preview.5.21230.2 " ,
6
+ "dotnet" : " 6.0.100-preview.5.21264.3 " ,
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 =" @((RenderFragment) ChildContent!) " />
4
+ <CascadingValue TValue =" Task<AuthenticationState>" Value =" @_currentAuthenticationStateTask" ChildContent =" @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
51
50
<ProjectReference Include =" ..\..\benchmarkapps\Wasm.Performance\TestApp\Wasm.Performance.TestApp.csproj"
52
51
Targets =" Publish"
53
52
Properties =" TestTrimmedApps=true;PublishDir=$(MSBuildThisFileDirectory)$(OutputPath)trimmed\Wasm.Performance.TestApp\"
54
- Condition="'$(TestTrimmedApps)' == 'true'" /> -->
53
+ Condition =" '$(TestTrimmedApps)' == 'true'" />
55
54
56
55
<ProjectReference
57
56
Include =" ..\testassets\BasicTestApp\BasicTestApp.csproj"
Original file line number Diff line number Diff line change @@ -33,14 +33,12 @@ 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" ) ]
37
36
public void HasTitle ( )
38
37
{
39
38
Assert . Equal ( "E2EPerformance" , Browser . Title ) ;
40
39
}
41
40
42
41
[ Fact ]
43
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/32788" ) ]
44
42
public void BenchmarksRunWithoutError ( )
45
43
{
46
44
// In CI, we only verify that the benchmarks run without throwing any
You can’t perform that action at this time.
0 commit comments