Skip to content

v0.21.1

Choose a tag to compare

@github-actions github-actions released this 17 Nov 14:37
· 6 commits to master since this release

Using Bzlmod with Bazel 7 and above

Requirements:

  • Bazel 7.0.0 or later
  • Bzlmod must be enabled
  1. Add to your MODULE.bazel file:
bazel_dep(name = "rules_dotnet", version = "0.21.1")

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

  • resolved_toolchain: Remove incompatible_use_toolchain_transition flag by @sin-ack in #520
  • Add support for .Net 10 by @purkhusid in #522

Full Changelog: v0.20.5...v0.21.1