Skip to content

Commit e28064e

Browse files
committed
[dotnet] Fix packaging problems
1 parent 110079f commit e28064e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/private/nuget.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def _stage_files_for_packaging(ctx, staging_dir):
7272
relative_dest_file = _get_relative_destination_file(src_file)
7373
src_list.append((src_file, relative_dest_file))
7474
if (ctx.attr.create_symbol_package):
75-
symbol_file = dep.default_runfiles.files.to_list()[0]
75+
symbol_file = dep[DefaultInfo].files.to_list()[0]
7676
relative_dest_symbol_file = _get_relative_destination_file(symbol_file)
7777
src_list.append((symbol_file, relative_dest_symbol_file))
7878

0 commit comments

Comments
 (0)