Skip to content

Commit 28d0fa4

Browse files
committed
active issue dotnet/runtime#115646
1 parent 1b544c5 commit 28d0fa4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

test/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmBuildIncrementalismTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ public void Build_IsIncremental()
2424

2525
var buildOutputDirectory = build.GetOutputDirectory(DefaultTfm).ToString();
2626

27+
// ActiveIssue https://github.com/dotnet/runtime/issues/115646
2728
var filesToIgnore = new[]
2829
{
30+
Path.Combine(buildOutputDirectory, "blazorwasm.runtimeconfig.json"),
2931
Path.Combine(buildOutputDirectory, "RazorClassLibrary.staticwebassets.endpoints.json"),
3032
Path.Combine(buildOutputDirectory, "blazorwasm.staticwebassets.endpoints.json")
3133
};

test/TestAssets/TestProjects/BlazorWasmWithLibrary/blazorwasm/App.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="true">
1+
<Router AppAssembly="@typeof(Program).Assembly">
22
<Found Context="routeData">
33
<RouteView RouteData="@routeData"/>
44
</Found>

test/TestAssets/TestProjects/WatchBlazorWasm/App.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="true">
1+
<Router AppAssembly="@typeof(Program).Assembly">
22
<Found Context="routeData">
33
<RouteView RouteData="@routeData"/>
44
</Found>

0 commit comments

Comments
 (0)