We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33ab01c commit 059e652Copy full SHA for 059e652
dotnet/nuget.bzl
@@ -1,4 +1,7 @@
1
-load("@io_bazel_rules_dotnet//dotnet/private:context.bzl", "dotnet_context")
+load(
2
+ "@io_bazel_rules_dotnet//dotnet/private:context.bzl",
3
+ "dotnet_context"
4
+)
5
6
def _nuget_package_impl(ctx):
7
args = [
@@ -32,7 +35,7 @@ def _nuget_package_impl(ctx):
32
35
ctx.actions.run(
33
36
executable = ctx.executable.nuget_exe,
34
37
arguments = args,
- inputs = ctx.attr.src.files + ctx.files.deps,
38
+ inputs = ctx.attr.src.files.to_list() + ctx.files.deps,
39
outputs = [
40
package_file,
41
]
0 commit comments