Skip to content

Commit

Permalink
[dotnet] Fix packaging problems
Browse files Browse the repository at this point in the history
  • Loading branch information
diemol committed Jun 20, 2023
1 parent 110079f commit e28064e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotnet/private/nuget.bzl
Expand Up @@ -72,7 +72,7 @@ def _stage_files_for_packaging(ctx, staging_dir):
relative_dest_file = _get_relative_destination_file(src_file)
src_list.append((src_file, relative_dest_file))
if (ctx.attr.create_symbol_package):
symbol_file = dep.default_runfiles.files.to_list()[0]
symbol_file = dep[DefaultInfo].files.to_list()[0]
relative_dest_symbol_file = _get_relative_destination_file(symbol_file)
src_list.append((symbol_file, relative_dest_symbol_file))

Expand Down

0 comments on commit e28064e

Please sign in to comment.