Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- import { dotnet } from './dotnet.js'
-
- const is_browser = typeof window != "undefined";
- if (!is_browser) throw new Error(`Expected to be running in a browser`);
-
- const dotnetRuntime = await dotnet
- .withDiagnosticTracing(false)
- .withApplicationArgumentsFromQuery()
- .create();
-
- const config = dotnetRuntime.getConfig();
-
- await dotnetRuntime.runMainAndExit(config.mainAssemblyName, [window.location.search]);
|