Question:
I would like to exclude certain files (by type) from my Azure Websites deployment. Can this be done without creating a custom deployment file?
Given:
I assume that these CoffeeScript files are listed in your csproj file so that they appear in Visual Studio?
, , , " " "", "", .
, ,
cd /d %HOME%\site\wwwroot for /F "tokens=*" %%i in ('dir /s /b *.coffee') do del %%i
, , ,
for /F "tokens=*" %%i in ('dir /s /b *.coffee') do echo %%i >> toBeDeleted.txt