Skip to content

Commit 6d45973

Browse files
authored
[Blazor] Remove explicit WasmBootConfigFileName from tests (#61034)
1 parent e32ce28 commit 6d45973

File tree

17 files changed

+0
-23
lines changed

17 files changed

+0
-23
lines changed

src/Components/WebAssembly/Directory.Build.props

-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,4 @@
44
<!-- Avoid source build issues with WebAssembly -->
55
<ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild>
66
</PropertyGroup>
7-
8-
<PropertyGroup>
9-
<WasmBootConfigFileName>dotnet.boot.js</WasmBootConfigFileName>
10-
</PropertyGroup>
117
</Project>

src/Components/WebAssembly/testassets/CustomBasePathApp/wwwroot/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
</head>
1010
<body>
1111
<app>Loading...</app>
12-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1312
<script src="_framework/blazor.webassembly.js"></script>
1413
</body>
1514
</html>

src/Components/WebAssembly/testassets/HostedInAspNet.Client/wwwroot/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<body>
88
<app>Loading...</app>
99
<script src="customJsFileForTests.js"></script>
10-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1110
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
1211

1312
<!--

src/Components/WebAssembly/testassets/StandaloneApp/wwwroot/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<a class="dismiss">🗙</a>
2020
</div>
2121

22-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
2322
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
2423
<script>
2524
(function(){

src/Components/WebAssembly/testassets/ThreadingApp.Server/Components/App.razor

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
<a class="dismiss">🗙</a>
2020
</div>
2121

22-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
2322
<script src="@Assets["_framework/blazor.web.js"]"></script>
2423
</body>
2524

src/Components/WebAssembly/testassets/ThreadingApp/wwwroot/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
<a class="dismiss">🗙</a>
1919
</div>
2020

21-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
2221
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
2322
<script>
2423
(function(){

src/Components/WebAssembly/testassets/Wasm.Prerendered.Server/Pages/_Layout.cshtml

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<body>
1414
@RenderBody()
1515

16-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1716
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
1817
<script>
1918
function start() {

src/Components/test/testassets/BasicTestApp/wwwroot/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
return Blazor.runtime.runtimeBuildInfo.buildConfiguration;
5454
}
5555
</script>
56-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
5756
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
5857

5958
<script>

src/Components/test/testassets/Components.TestServer/Pages/Client/MultipleComponentsLayout.cshtml

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333

3434
<button id="load-boot-script" onclick="start()">Load boot script</button>
3535

36-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
3736
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
3837
<script src="js/jsRootComponentInitializers.js"></script>
3938
<script>

src/Components/test/testassets/Components.TestServer/Pages/SaveState.cshtml

-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@
128128
}
129129
else
130130
{
131-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
132131
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
133132
}
134133

src/Components/test/testassets/Components.TestServer/RazorComponents/App.razor

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
elementToFocus.focus();
2424
}
2525
</script>
26-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
2726
<script src="@Assets["_framework/blazor.web.js"]" autostart="false" suppress-error="BL9992"></script>
2827
<script src="_content/TestContentPackage/counterInterop.js"></script>
2928
<script src="js/circuitContextTest.js"></script>

src/Components/test/testassets/Components.TestServer/RazorComponents/GlobalInteractivityApp.razor

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
</head>
88
<body>
99
<Components.WasmMinimal.Routes @rendermode="@PageRenderMode" />
10-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1110
<script src="@Assets["_framework/blazor.web.js"]" autostart="false"></script>
1211
<script>
1312
Blazor.start({

src/Components/test/testassets/Components.TestServer/RazorComponents/NamedFormContextNoFormContextApp.razor

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<body>
1111
<h1 id="ready">Form test cases</h1>
1212
<NamedFormContextNoFormContextLayout />
13-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1413
<script src="@Assets["_framework/blazor.web.js"]" suppress-error="BL9992"></script>
1514
</body>
1615
</html>

src/Components/test/testassets/Components.TestServer/RazorComponents/RemoteAuthenticationApp.razor

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
<body>
1212
<Components.WasmRemoteAuthentication.Routes @rendermode="new InteractiveWebAssemblyRenderMode(prerender: false)" />
13-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1413
<script src="@Assets["_framework/blazor.web.js"]" autostart="false"></script>
1514
<script src="_content/Microsoft.AspNetCore.Components.WebAssembly.Authentication/AuthenticationService.js"></script>
1615
<script>

src/Components/test/testassets/Components.TestServer/RazorComponents/Root.razor

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<body>
1212
<ServerApp @rendermode="@RenderMode.InteractiveServer" />
1313

14-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1514
<script src="@Assets["_framework/blazor.web.js"]" autostart="false"></script>
1615
<script>
1716
const suppressEnhancedNavigation = sessionStorage.getItem('suppress-enhanced-navigation') === 'true';

src/Components/test/testassets/Directory.Build.props

-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,4 @@
1919
<_Parameter2>true</_Parameter2>
2020
</AssemblyAttribute>
2121
</ItemGroup>
22-
23-
<PropertyGroup>
24-
<WasmBootConfigFileName>dotnet.boot.js</WasmBootConfigFileName>
25-
</PropertyGroup>
2622
</Project>

src/Components/test/testassets/GlobalizationWasmApp/wwwroot/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<body>
88
<div id="blazor-error-ui">Error</div>
99
<app>Loading...</app>
10-
<script>window["__DOTNET_INTERNAL_BOOT_CONFIG_SRC"] = "dotnet.boot.js";</script>
1110
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
1211
<script>
1312
(function(){

0 commit comments

Comments
 (0)