File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -1025,8 +1025,12 @@ def _files_list_append(key: str):
10251025
10261026 files_list .append ("<file src=" + '"' + target_props_native + '" target="' + build_dir + '\\ native" />' )
10271027 if not is_snpe_package and not is_qnn_package :
1028- files_list .append ("<file src=" + '"' + target_props_netstandard + '" target="' + build_dir + '\\ netstandard2.0" />' )
1029- files_list .append ("<file src=" + '"' + target_props_netstandard + '" target="' + build_dir + '\\ netstandard2.1" />' )
1028+ files_list .append (
1029+ "<file src=" + '"' + target_props_netstandard + '" target="' + build_dir + '\\ netstandard2.0" />'
1030+ )
1031+ files_list .append (
1032+ "<file src=" + '"' + target_props_netstandard + '" target="' + build_dir + '\\ netstandard2.1" />'
1033+ )
10301034
10311035 # Process targets file
10321036 source_targets_native = os .path .join (
@@ -1060,8 +1064,12 @@ def _files_list_append(key: str):
10601064
10611065 files_list .append ("<file src=" + '"' + target_targets_native + '" target="' + build_dir + '\\ native" />' )
10621066 if not is_snpe_package and not is_qnn_package :
1063- files_list .append ("<file src=" + '"' + target_targets_netstandard + '" target="' + build_dir + '\\ netstandard2.0" />' )
1064- files_list .append ("<file src=" + '"' + target_targets_netstandard + '" target="' + build_dir + '\\ netstandard2.1" />' )
1067+ files_list .append (
1068+ "<file src=" + '"' + target_targets_netstandard + '" target="' + build_dir + '\\ netstandard2.0" />'
1069+ )
1070+ files_list .append (
1071+ "<file src=" + '"' + target_targets_netstandard + '" target="' + build_dir + '\\ netstandard2.1" />'
1072+ )
10651073
10661074 # Process xamarin targets files
10671075 if args .package_name == "Microsoft.ML.OnnxRuntime" :
You can’t perform that action at this time.
0 commit comments