Skip to content

Commit

Permalink
Fix DirectML nuget creation in Nuget pipeline (microsoft#3929)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Lai authored May 14, 2020
1 parent f380460 commit 48f69cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/nuget/generate_nuspec_for_native_nuget.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def generate_files(list, args):
if includes_directml:
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, 'DirectML.dll') + '" target="runtimes\\win-' + args.target_architecture + '\\native" />')
files_list.append('<file src=' + '"' + os.path.join(args.native_build_path, 'DirectML.pdb') + '" target="runtimes\\win-' + args.target_architecture + '\\native" />')
files_list.append('<file src=' + '"' + os.path.join(args.packages_path, 'DirectML.0.0.2\\LICENSE.txt') + '" target="DirectML_LICENSE.txt" />')
files_list.append('<file src=' + '"' + os.path.join(args.packages_path, 'DirectML.0.0.4\\LICENSE.txt') + '" target="DirectML_LICENSE.txt" />')

if includes_winml:
# Process microsoft.ai.machinelearning import lib, dll, and pdb
Expand Down

0 comments on commit 48f69cf

Please sign in to comment.