Skip to content

v0.18.0

Compare
Choose a tag to compare
@github-actions github-actions released this 22 Mar 15:11
· 11 commits to master since this release
4b4d832

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.18.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")

Breaking changes

  • The runfiles handling in publish_binary has been changed in a way that might break some users depending on how they package their binaries to move them out of Bazel. If you are using pkg_tar you need to make sure that you are using include_runfiles = True.

What's Changed

Full Changelog: v0.17.5...v0.18.0