From: 조웅석/Common Platform Lab(SR)/삼성전자 Date: Mon, 7 Mar 2022 23:51:15 +0000 (+0900) Subject: Bug-fix: fix path for pdb file copying (#392) X-Git-Tag: accepted/tizen/unified/20220318.132742~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d8f2c7a080ef273100b4dd36ea76a08e15cc760;p=platform%2Fcore%2Fdotnet%2Flauncher.git Bug-fix: fix path for pdb file copying (#392) --- diff --git a/NativeLauncher/tool/ni_common.cc b/NativeLauncher/tool/ni_common.cc index 2ed4b32..859c60a 100644 --- a/NativeLauncher/tool/ni_common.cc +++ b/NativeLauncher/tool/ni_common.cc @@ -407,7 +407,7 @@ static ni_error_e crossgen2PostAction(const std::string& dllPath, const std::str if (opt->flags & NI_FLAGS_APPNI) { std::string appNIPath = getAppNIFilePath(dllPath, opt); moveFile(niPath, appNIPath); - makePdbSymlinkForNI(dllPath, niPath); + makePdbSymlinkForNI(dllPath, appNIPath); _SOUT("Native image %s generated successfully.", appNIPath.c_str()); } else { _SOUT("Native image %s generated successfully.", niPath.c_str());