msbuild - Issue with VS 2015 Project/Solution build definition in TFS 2010 Server -
i'm getting issue tfs 2010 build definition not copying dlls project in vs 2015. had issue compiler dlls putting in bin folder , i'm getting application level errors. once moved compiler dlls (csc.exe, .config,.codeanalysis.dll,...) roslyn folder inside bin folder (project\bin\roslyn), application working successfully. roslyn folder creating outside project root directory.
folder structure:
......\build\roslyn
......\build\_publishedwebsite\project_folder\bin
i have created post build command move roslyn inside bin , moved successfully. still copy of files under roslyn available in bin , failing application work properly.
any help. please let me know if need more info.
as temporary fix, have added post build command remove files , it's working successfully.
if exist "$(webprojectoutputdir)\bin\microsoftcodeanalysisdll" del /f "$(webprojectoutputdir)\bin\microsoftcodeanalysisdll"
Comments
Post a Comment