v0.20.0
Using Bzlmod with Bazel 7 and above
Requirements:
- Bazel 7.0.0 or later
- Bzlmod must be enabled
- Add to your
MODULE.bazelfile:
bazel_dep(name = "rules_dotnet", version = "0.20.0")
dotnet = use_extension("@rules_dotnet//dotnet:extensions.bzl", "dotnet")
dotnet.toolchain(dotnet_version = "8.0.200")
use_repo(dotnet, "dotnet_toolchains")
register_toolchains("@dotnet_toolchains//:all")What's Changed
- Add e2e test for web sdk by @purkhusid in #503
- Update SDKs by @purkhusid in #504
- Exclude compiler references to System.EnterpriseServices.Wrapper.dll by @lapwingcloud in #506
- Fix handling of native runtime dependencies by @purkhusid in #515
- chore(deps): upgrade to bazel-lib 3 by @alexeagle in #514
- NuGet Tools Support by @purkhusid in #516
- Update SDKs by @purkhusid in #517
- Use
execin Bash launcher template by @sin-ack in #518
New Contributors
- @lapwingcloud made their first contribution in #506
- @alexeagle made their first contribution in #514
Full Changelog: v0.19.2...v0.20.0