1
0
Форкнуть 0

Automated build and added ps script to clean dnx packages

This commit is contained in:
Karthik Tangirala 2015-07-08 09:44:07 -07:00
Родитель 5983ee5ede
Коммит 1de854236e
2 изменённых файлов: 9 добавлений и 1 удалений

7
CleanPackages.ps1 Normal file
Просмотреть файл

@ -0,0 +1,7 @@
#enable verbose mode
$VerbosePreference = "Continue";
[String]$dnxRoot = [System.Environment]::ExpandEnvironmentVariables('%USERPROFILE%\.dnx');
rm -r $dnxRoot\packages -Force

Просмотреть файл

@ -2,8 +2,9 @@
call "%VS140COMNTOOLS%\VsDevCmd.bat"
SET ProjectName=Msbuild.All
REM Set the configuration to either release or debug based on the requirement.
REM Set the configuration to either release or debug based on the requirement. Accepts this as a parameter to build.cmd. By default it is chosen to be Release.
SET Configuration=Release
if NOT "%1"=="" (SET Configuration=%1)
SET Platform=Any CPU
SET NugetOrg_Feed=https://www.nuget.org/api/v2/
SET IsOfficialBuild=False