Skip to content

Commit 0300658

Browse files
committed
update blazor builds
1 parent e26e460 commit 0300658

File tree

187 files changed

+456
-33
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

187 files changed

+456
-33
lines changed

frameworks/keyed/blazor-wasm-aot/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
bundeled-dist/
21
dotnet/
32
obj/
43
bin/
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"sdk": {
3+
"version": "6.0.101"
4+
}
5+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<configuration>
3+
<system.webServer>
4+
<staticContent>
5+
<remove fileExtension=".blat" />
6+
<remove fileExtension=".dat" />
7+
<remove fileExtension=".dll" />
8+
<remove fileExtension=".json" />
9+
<remove fileExtension=".wasm" />
10+
<remove fileExtension=".woff" />
11+
<remove fileExtension=".woff2" />
12+
<mimeMap fileExtension=".blat" mimeType="application/octet-stream" />
13+
<mimeMap fileExtension=".dll" mimeType="application/octet-stream" />
14+
<mimeMap fileExtension=".dat" mimeType="application/octet-stream" />
15+
<mimeMap fileExtension=".json" mimeType="application/json" />
16+
<mimeMap fileExtension=".wasm" mimeType="application/wasm" />
17+
<mimeMap fileExtension=".woff" mimeType="application/font-woff" />
18+
<mimeMap fileExtension=".woff2" mimeType="application/font-woff" />
19+
</staticContent>
20+
<httpCompression>
21+
<dynamicTypes>
22+
<add mimeType="application/octet-stream" enabled="true" />
23+
<add mimeType="application/wasm" enabled="true" />
24+
</dynamicTypes>
25+
</httpCompression>
26+
<rewrite>
27+
<rules>
28+
<rule name="Serve subdir">
29+
<match url=".*" />
30+
<action type="Rewrite" url="wwwroot\{R:0}" />
31+
</rule>
32+
<rule name="SPA fallback routing" stopProcessing="true">
33+
<match url=".*" />
34+
<conditions logicalGrouping="MatchAll">
35+
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
36+
</conditions>
37+
<action type="Rewrite" url="wwwroot\" />
38+
</rule>
39+
</rules>
40+
</rewrite>
41+
</system.webServer>
42+
</configuration>

0 commit comments

Comments
 (0)