Skip to content

v0.8.2

Compare
Choose a tag to compare
@github-actions github-actions released this 10 Jan 12:41
· 84 commits to master since this release
1ab95e0

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 = "849da4fa588cb403235aeb7094e6add52790e4cdefe9dd2ec223d68fd4574e82",
    strip_prefix = "rules_dotnet-0.8.2",
    url = "https://github.com/bazelbuild/rules_dotnet/archive/refs/tags/v0.8.2.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()

Full Changelog: v0.8.0...v0.8.2