-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from jsturtevant/building-local
Add notes on how to build the project
- Loading branch information
Showing
3 changed files
with
31 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
We are currently working on improving the contributor experience. Bug fixes and new features must be submitted using a pull request. | ||
# Submitting bugs and fixes | ||
Open an issue detailing the issue you've encountered or feature you would like to see. | ||
|
||
Bug fixes and new features must be submitted using a pull request and pass CI to be included in the project. | ||
|
||
## Building the project locally | ||
|
||
Requires [.NET 8+](https://dotnet.microsoft.com/en-us/download) | ||
|
||
``` | ||
dotnet msbuild src/WasmComponent.Sdk/build/WasmComponent.Sdk.targets /t:PrepareWasmSdks | ||
git submodule update --init | ||
dotnet build | ||
``` | ||
|
||
If you are experiencing issues with values not being updated, try running `dotnet clean` and using the steps above | ||
|
||
## Testing | ||
|
||
Run the tests: | ||
|
||
``` | ||
dotnet test | ||
``` | ||
|
||
## Getting help | ||
While we work on improving the documentation for contributing, if you have any questions please drop a note in the [c# zulip chat](https://bytecodealliance.zulipchat.com/#narrow/stream/407028-C.23.2F.2Enet-collaboration). |
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