-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Drop duplicated description from json definition. * Update readme in both templates.
- Loading branch information
Showing
4 changed files
with
11 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
## Browser application | ||
## .NET WebAssembly Browser app | ||
|
||
## Build | ||
|
||
You can build the application from Visual Studio or by dotnet cli | ||
You can build the app from Visual Studio or from the command-line: | ||
|
||
``` | ||
dotnet build -c Debug/Release | ||
``` | ||
|
||
After building the application, the result is in the `bin/$(Configuration)/net7.0/browser-wasm/AppBundle` directory. | ||
After building the app, the result is in the `bin/$(Configuration)/net7.0/browser-wasm/AppBundle` directory. | ||
|
||
## Run | ||
|
||
You can build the application from Visual Studio or by dotnet cli | ||
You can build the app from Visual Studio or the command-line: | ||
|
||
``` | ||
dotnet run -c Debug/Release | ||
``` | ||
|
||
Or you can start any static file server from the AppBundle directory | ||
Or you can start any static file server from the AppBundle directory: | ||
|
||
``` | ||
dotnet tool install dotnet-serve | ||
dotnet serve -d:bin/$(Configuration)/net7.0/browser-wasm/AppBundle | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters