mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
This commits a bazel-based build system for C# using `rules_dotnet`. External dependencies are managed via `paket`, and updates to the generated bazel files are done via `./update-deps.sh`. We're providing our own (minimal) test runner for `xunit` tests.
13 lines
287 B
Python
13 lines
287 B
Python
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix")
|
|
|
|
pkg_files(
|
|
name = "downgrades",
|
|
srcs = glob(
|
|
["**"],
|
|
exclude = ["BUILD.bazel"],
|
|
),
|
|
prefix = "downgrades",
|
|
strip_prefix = strip_prefix.from_pkg(),
|
|
visibility = ["//csharp:__pkg__"],
|
|
)
|