mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00

LF is the git default and all new files are stored as such. Old files from the hg to git conversion however were moved over as CRLF.
5 lines
199 B
Batchfile
5 lines
199 B
Batchfile
@echo off
|
|
REM Delete all compiled module binaries to force dynamic compilation (.csproj) to kick in
|
|
set SRC=src\Orchard.Web\Modules
|
|
for /f %%i in ('dir %SRC% /b /ad') do del /q %SRC%\%%i\bin\%%i.dll
|