Skip to content

Commit 1ecd651

Browse files
committed
Update
1 parent df7c8ad commit 1ecd651

11 files changed

+146
-23
lines changed

bff/server/Pages/_Host.cshtml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@
2929
if (hostEnvironment.IsDevelopment())
3030
{
3131
// do nothing in development, Angular > 18.1.0 adds the nonce automatically
32+
var viteScriptToUpdate = """<script type="module" src="/@vite/client"></script>""";
33+
source = source.Replace(viteScriptToUpdate, $"""<script type="module" src="/@vite/client" nonce="{nonce}"></script>""");
3234
}
3335

3436
// link rel="stylesheet"
35-
var nonceLinkStyle = $"<link nonce=\"{nonce}\" rel=\"stylesheet\" ";
36-
source = source.Replace("<link rel=\"stylesheet\" ", nonceLinkStyle);
37+
var nonceLinkStyle = $"<link nonce=\"{nonce}\" rel=\"stylesheet";
38+
source = source.Replace("<link rel=\"stylesheet", nonceLinkStyle);
3739

3840
var xsrf = antiForgery.GetAndStoreTokens(HttpContext);
3941
var requestToken = xsrf.RequestToken;
@@ -42,4 +44,4 @@
4244
Response.Cookies.Append("XSRF-RequestToken", requestToken ?? "", new CookieOptions() { HttpOnly = false, IsEssential = true, Secure = true, SameSite = SameSiteMode.Strict });
4345
}
4446

45-
@Html.Raw(source)
47+
@Html.Raw(source)

bff/server/wwwroot/3rdpartylicenses.txt

Lines changed: 127 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,34 @@
1-
@angular/common
2-
MIT
31

4-
@angular/core
5-
MIT
2+
--------------------------------------------------------------------------------
3+
Package: @angular/core
4+
License: "MIT"
65

7-
@angular/platform-browser
8-
MIT
6+
The MIT License
7+
8+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
9+
10+
Permission is hereby granted, free of charge, to any person obtaining a copy
11+
of this software and associated documentation files (the "Software"), to deal
12+
in the Software without restriction, including without limitation the rights
13+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14+
copies of the Software, and to permit persons to whom the Software is
15+
furnished to do so, subject to the following conditions:
916

10-
@angular/router
11-
MIT
17+
The above copyright notice and this permission notice shall be included in
18+
all copies or substantial portions of the Software.
19+
20+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26+
THE SOFTWARE.
27+
28+
--------------------------------------------------------------------------------
29+
Package: rxjs
30+
License: "Apache-2.0"
1231

13-
rxjs
14-
Apache-2.0
1532
Apache License
1633
Version 2.0, January 2004
1734
http://www.apache.org/licenses/
@@ -215,12 +232,55 @@ Apache-2.0
215232
limitations under the License.
216233

217234

235+
--------------------------------------------------------------------------------
236+
Package: tslib
237+
License: "0BSD"
238+
239+
Copyright (c) Microsoft Corporation.
240+
241+
Permission to use, copy, modify, and/or distribute this software for any
242+
purpose with or without fee is hereby granted.
243+
244+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
245+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
246+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
247+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
248+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
249+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
250+
PERFORMANCE OF THIS SOFTWARE.
251+
--------------------------------------------------------------------------------
252+
Package: @angular/common
253+
License: "MIT"
254+
255+
The MIT License
256+
257+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
258+
259+
Permission is hereby granted, free of charge, to any person obtaining a copy
260+
of this software and associated documentation files (the "Software"), to deal
261+
in the Software without restriction, including without limitation the rights
262+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
263+
copies of the Software, and to permit persons to whom the Software is
264+
furnished to do so, subject to the following conditions:
265+
266+
The above copyright notice and this permission notice shall be included in
267+
all copies or substantial portions of the Software.
268+
269+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
270+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
271+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
272+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
273+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
274+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
275+
THE SOFTWARE.
276+
277+
--------------------------------------------------------------------------------
278+
Package: @angular/platform-browser
279+
License: "MIT"
218280

219-
zone.js
220-
MIT
221281
The MIT License
222282

223-
Copyright (c) 2010-2023 Google LLC. https://angular.io/license
283+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
224284

225285
Permission is hereby granted, free of charge, to any person obtaining a copy
226286
of this software and associated documentation files (the "Software"), to deal
@@ -239,3 +299,57 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
239299
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
240300
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
241301
THE SOFTWARE.
302+
303+
--------------------------------------------------------------------------------
304+
Package: @angular/router
305+
License: "MIT"
306+
307+
The MIT License
308+
309+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
310+
311+
Permission is hereby granted, free of charge, to any person obtaining a copy
312+
of this software and associated documentation files (the "Software"), to deal
313+
in the Software without restriction, including without limitation the rights
314+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
315+
copies of the Software, and to permit persons to whom the Software is
316+
furnished to do so, subject to the following conditions:
317+
318+
The above copyright notice and this permission notice shall be included in
319+
all copies or substantial portions of the Software.
320+
321+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
322+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
323+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
324+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
325+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
326+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
327+
THE SOFTWARE.
328+
329+
--------------------------------------------------------------------------------
330+
Package: zone.js
331+
License: "MIT"
332+
333+
The MIT License
334+
335+
Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
336+
337+
Permission is hereby granted, free of charge, to any person obtaining a copy
338+
of this software and associated documentation files (the "Software"), to deal
339+
in the Software without restriction, including without limitation the rights
340+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
341+
copies of the Software, and to permit persons to whom the Software is
342+
furnished to do so, subject to the following conditions:
343+
344+
The above copyright notice and this permission notice shall be included in
345+
all copies or substantial portions of the Software.
346+
347+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
348+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
349+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
350+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
351+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
352+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
353+
THE SOFTWARE.
354+
355+
--------------------------------------------------------------------------------

bff/server/wwwroot/favicon.ico

0 Bytes
Binary file not shown.

bff/server/wwwroot/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!DOCTYPE html>
2-
<html lang="en" data-critters-container="">
2+
<html lang="en" data-beasties-container="">
33
<head>
44
<meta charset="utf-8">
5-
<meta name="CSP_NONCE" content="**PLACEHOLDER_NONCE_SERVER**">
5+
<meta name="CSP_NONCE" content="**PLACEHOLDER_NONCE_SERVER**">
66
<title>ui</title>
77
<base href="/">
88
<meta name="viewport" content="width=device-width, initial-scale=1">
99
<link rel="icon" type="image/x-icon" href="favicon.ico">
10-
<link rel="stylesheet" href="styles.ef46db3751d8e999.css"></head>
10+
<link rel="stylesheet" href="styles-5INURTSO.css"></head>
1111
<body>
1212
<app-root ngcspnonce="**PLACEHOLDER_NONCE_SERVER**"></app-root>
13-
<script src="runtime.1cb9cb05f2deb873.js" type="module"></script><script src="polyfills.8cdf208185fb5862.js" type="module"></script><script src="main.30351b27ad0c83f9.js" type="module"></script></body>
13+
<script src="polyfills-5CFQRCPP.js" type="module" nonce="**PLACEHOLDER_NONCE_SERVER**"></script><script src="main-BZTLNTFA.js" type="module" nonce="**PLACEHOLDER_NONCE_SERVER**"></script></body>
1414
</html>

bff/server/wwwroot/main-BZTLNTFA.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bff/server/wwwroot/main.30351b27ad0c83f9.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

bff/server/wwwroot/polyfills-5CFQRCPP.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bff/server/wwwroot/polyfills.8cdf208185fb5862.js

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"routes": {}
3+
}

bff/server/wwwroot/runtime.1cb9cb05f2deb873.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)