-
Notifications
You must be signed in to change notification settings - Fork 10k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[blazor] Boot handled by dotnet.js #47752
Conversation
maraf
commented
Apr 17, 2023
•
edited by pavelsavara
Loading
edited by pavelsavara
- Let runtime handle booting
- Blazor loads boot config only to get dotnet.js URL, before we find a better solution for putting a fingerprint on parts of dotnet.js that change more often
- [browser] Split dotnet.js and introduce loader + emscripten modules runtime#85045
- This PR doesn't migrate some features, that should be considered common and will be done in later PRs
- JSInitializers
- Satelite assemblies
- Lazy assemblies
@@ -19,7 +19,7 @@ public class BootResourceCachingTest | |||
: ServerTestBase<AspNetSiteServerFixture> | |||
{ | |||
// The cache name is derived from the application's base href value (in this case, '/') | |||
private const string CacheName = "blazor-resources-/"; | |||
private const string CacheName = "dotnet-resources-/"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will force one time DLL re-download. I think it's fine.
@javiercn any objections, it would be good to get this in soon |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me, @MackinnonBuck can you take a look at it too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!