Skip to content

Commit 07f6a48

Browse files
Provide Microsoft.AspNetCore.Components.WebAssembly.DevServer package README (dotnet#57805)
1 parent a921a43 commit 07f6a48

File tree

1 file changed

+25
-0
lines changed
  • src/Components/WebAssembly/DevServer/src

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
## About
2+
3+
`Microsoft.AspNetCore.Components.WebAssembly.DevServer` provides a development server for use when building Blazor WebAssembly standalone applications.
4+
5+
## How to use
6+
7+
To use `Microsoft.AspNetCore.Components.WebAssembly.DevServer`, add the package to your project:
8+
9+
```shell
10+
dotnet add package Microsoft.AspNetCore.Components.WebAssembly.DevServer
11+
```
12+
13+
Make sure that the newly-added `<PackageReference />` in the `.csproj` file includes `PrivateAssets="all"`:
14+
15+
```xml
16+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="..." PrivateAssets="all" />
17+
```
18+
19+
## Additional Documentation
20+
21+
For additional documentation and examples, refer to the [official documentation](https://learn.microsoft.com/en-us/aspnet/core/blazor/debug#packages) on debugging Blazor WebAssembly applications.
22+
23+
## Feedback &amp; Contributing
24+
25+
`Microsoft.AspNetCore.Components.WebAssembly.DevServer` is released as open-source under the [MIT license](https://licenses.nuget.org/MIT). Bug reports and contributions are welcome at [the GitHub repository](https://github.com/dotnet/aspnetcore).

0 commit comments

Comments
 (0)