v0.15.0
Using Bzlmod with Bazel 7 and above
Requirements:
- Bazel 7.0.0 or later
- Bzlmod must be enabled
- Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_dotnet", version = "0.15.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
- Fix 'repo_mapping_manifest' property check for compatibility by @karataliu in #412
- Fix //dotnet:defs target to allow users to create stardoc docs using it by @michaelboyd2 in #403
- Add run_analyzers option by @karataliu in #419
- bugfix/issue-416-fsharp-debug-release-defines by @njlr in #420
- Remove unnecessary use of ctx.resolve_tools. by @tjgq in #425
- .Net SDK packs by @purkhusid in #426
- Rule API cleanup by @purkhusid in #427
New Contributors
- @karataliu made their first contribution in #412
- @michaelboyd2 made their first contribution in #403
- @njlr made their first contribution in #420
- @tjgq made their first contribution in #425
Full Changelog: v0.14.0...v0.15.0