Created
May 7, 2012 15:08
-
-
Save MikeJansen/2628283 to your computer and use it in GitHub Desktop.
ASP.NET MVC 4 - update GAC from nightly build http://is.gd/lAht03
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
rem ********************************************************************************* | |
rem * | |
rem * See http://is.gd/lAht03 | |
rem * | |
rem * Update ASP.NET MVC4 nightly build in the GAC | |
rem * | |
rem * Run from the solution's packages folder. | |
rem * | |
rem * nightly-build-to-gac.cmd [build-no-filter] | |
rem * | |
rem ********************************************************************************* | |
if (%1)==() goto no_filter | |
for /f %%I in ('dir /s /b *.dll ^| findstr /c:"%1" ^| findstr /g:nightly-build-to-gac.lst') do gacutil -i "%%I" | |
goto :eof | |
:no_filter | |
for /f %%I in ('dir /s /b *.dll ^| findstr /g:nightly-build-to-gac.lst') do gacutil -i "%%I" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.Web.Mvc.dll | |
System.Web.Razor.dll | |
System.Net.Http.Formatting.dll | |
System.Web.Http.dll | |
System.Web.Http.WebHost.dll | |
System.Web.Helpers.dll | |
System.Web.WebPages.Deployment.dll | |
System.Web.WebPages.dll | |
System.Web.WebPages.Razor.dll | |
System.Net.Http.dll | |
System.Net.Http.WebRequest.dll | |
System.Json.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment