forked from chocolatey/choco
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* stable: Remove duplicate word (chocolateyGH-1285) Default push to new or old w/warning (chocolateyGH-1285) Add old/new default push source (chocolateyGH-1298) GenericRunner.count() sets security protocol (chocolateyGH-1298) GenericRunner.list() should match run() (maint) API - Warn on extraction errors (chocolateyGH-389) API - Ensure ChocolateyInstall env var (maint) Do not load config back into global (chocolateyGH-1296) API - Reuse existing base configuration (maint) API - Note methods that won't allow changes (chocolateyGH-1294) API - Expose container directly (build) option to build debug version (doc) Source/Key notes surrounding source/apikey (maint) log that license file has been found (chocolateyGH-1287) Non-internal SimpleInjector XML Comments (maint) formatting (chocolateyGH-1287) API - Ensure dll can work w/licensed code (chocolateyGH-1284) Install-ChocolateyPackage aliases File/File64
- Loading branch information
Showing
13 changed files
with
309 additions
and
66 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
chocolatey.* | ||
NuGet.* | ||
NuGet.* | ||
SimpleInjector.* | ||
Rhino.Licensing.* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
@echo off | ||
|
||
::Project UppercuT - http://uppercut.googlecode.com | ||
::No edits to this file are required - http://uppercut.pbwiki.com | ||
|
||
if '%1' == '/?' goto usage | ||
if '%1' == '-?' goto usage | ||
if '%1' == '?' goto usage | ||
if '%1' == '/help' goto usage | ||
|
||
SET DIR=%cd% | ||
SET BUILD_DIR=%~d0%~p0% | ||
SET NANT="%BUILD_DIR%lib\Nant\nant.exe" | ||
SET build.config.settings="%DIR%\.uppercut" | ||
|
||
%NANT% /logger:"NAnt.Core.DefaultLogger" /quiet /nologo /f:"%BUILD_DIR%.build\default.build" -D:build.config.settings=%build.config.settings% -D:msbuild.configuration="Debug" -D:run.nuget="false" -D:test.framework="None" -D:cover.framework="None" -D:run.codesign="false" %* | ||
|
||
::#-D:run.ilmerge="false" | ||
|
||
if %ERRORLEVEL% NEQ 0 goto errors | ||
|
||
call %DIR%\documentscenarios.bat | ||
|
||
goto finish | ||
|
||
:usage | ||
echo. | ||
echo Usage: build.bat | ||
echo. | ||
goto finish | ||
|
||
:errors | ||
EXIT /B %ERRORLEVEL% | ||
|
||
:finish |
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
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
Oops, something went wrong.