v0.16.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.16.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
- Use assembly name for DotnetAssembly{Compile,Runtime}Info by @sin-ack in #435
- Use new host constraints in
@platforms
by @Wyverald in #437 - Publish appsettingsjson by @mkempers in #438
- Fix default transition reset by @purkhusid in #453
- Rework Analyzer/Source Generator support by @purkhusid in #452
New Contributors
- @sin-ack made their first contribution in #435
- @Wyverald made their first contribution in #437
- @mkempers made their first contribution in #438
Full Changelog: v0.15.1...v0.16.0