Skip to content

v0.10.8

Compare
Choose a tag to compare
@github-actions github-actions released this 15 Sep 14:43
· 53 commits to master since this release
e667a70

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 = "4477b62a79a1ea131532fea77c460982f878786b186b9890fdccd1ea294556c9",
    strip_prefix = "rules_dotnet-0.10.8",
    url = "https://github.com/bazelbuild/rules_dotnet/releases/download/v0.10.8/rules_dotnet-v0.10.8.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

New Contributors

Full Changelog: v0.10.7...v0.10.8