From bfcd5bd4a2b77a8923cfc90c811a35e7607f4f43 Mon Sep 17 00:00:00 2001 From: Linnea May Date: Thu, 31 Mar 2022 10:41:31 -0700 Subject: [PATCH] remove hardcoded library name (#11058) Co-authored-by: Linnea May --- tools/ci_build/gen_def.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci_build/gen_def.py b/tools/ci_build/gen_def.py index d64c5e33e3..950b2b6b79 100755 --- a/tools/ci_build/gen_def.py +++ b/tools/ci_build/gen_def.py @@ -36,7 +36,7 @@ symbols = sorted(symbols) symbol_index = 1 with open(args.output, 'w') as file: if args.style == 'vc': - file.write('LIBRARY "onnxruntime.dll"\n') + file.write('LIBRARY\n') file.write('EXPORTS\n') elif args.style == 'xcode': pass # xcode compile don't has any header.