v0.9.0
Using WORKSPACE
Paste this snippet into your WORKSPACE
file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_dotnet",
sha256 = "b422380a8842ad68eca92f9f91d65d9199a5366b257a7820c5624b67611c0f4d",
strip_prefix = "rules_dotnet-0.9.0",
url = "https://github.com/bazelbuild/rules_dotnet/releases/download/v0.9.0/rules_dotnet-v0.9.0.tar.gz",
)
load(
"@rules_dotnet//dotnet:repositories.bzl",
"dotnet_register_toolchains",
"rules_dotnet_dependencies",
)
rules_dotnet_dependencies()
# Here you can specify the version of the .NET SDK to use.
dotnet_register_toolchains("dotnet", "7.0.101")
load("@rules_dotnet//dotnet:rules_dotnet_nuget_packages.bzl", "rules_dotnet_nuget_packages")
rules_dotnet_nuget_packages()
What's Changed
- Document invariant culture and RBE by @purkhusid in #357
- Support using custom NuGet repo and basic auth for it by @zhongyi-zhang in #362
New Contributors
- @zhongyi-zhang made their first contribution in #362
Full Changelog: v0.8.12...v0.9.0