c# - visual studio 2015 stuck when building, killing find.exe (three times) completes the build process -
visual studio 2015 gets stuck when building rather complex solution...
i discovered building starts "find.exe" , killing "find.exe" lets build complete.
i have project of similar complexity builds fine without me needing kill anything.
the project .net4.0 full framework, of projects c#
i don't see hints why hanging, , build output in console seems gets stuck @ different places each time.
any appreciated
i have fixed problem...
in 'pre-build' scripts, invoked 'replacestring.bat' batch file, commandline, , vs2010/2012... worked fine. in 2015, mentioned, stalled find.exe running... content of bad batch file this:
@echo off rem -- prepare command processor -- setlocal enableextensions setlocal disabledelayedexpansion ::batchsubstitude - parses file line line , replaces substring" ::syntax: batchsubstitude.bat oldstr newstr file :: oldstr [in] - string replaced :: newstr [in] - string replace :: file [in] - file parsed :$changed 20100115 :$source http://www.dostips.com if "%~1"=="" findstr "^::" "%~f0"&goto:eof /f "tokens=1,* delims=]" %%a in ('"type %3|find /n /v """') ( set "line=%%b" if defined line ( call set "line=echo.%%line:%~1=%~2%%" /f "delims=" %%x in ('"echo."%%line%%""') %%~x ) else echo. ) i have replaced .net exe file , works
Comments
Post a Comment