-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
137 changed files
with
3,965 additions
and
1,013 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
In order to debug the individual build scripts, you need to open a command prompt, | ||
change to the Debug directory, where the test scripts reside, | ||
then execute the individual build script. | ||
|
||
This will navigate up to the root dir and execute the script from there. | ||
|
||
It would then be advisable to execute the main build-test.cmd script from root, | ||
which will run all the build scripts in debug mode. | ||
|
||
Then check to make sure Nuget packages have been added to the build output directory. |
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,4 @@ | ||
cd ..\..\..\..\ | ||
set PackageVersion=2.1.1-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Source\Scripts\TrackableEntities.Client.cmd 1 |
4 changes: 4 additions & 0 deletions
4
Build/Source/Scripts/Debug/TrackableEntities.Client.Net4-test.cmd
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,4 @@ | ||
cd ..\..\..\..\ | ||
set PackageVersion=2.1.1-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Source\Scripts\TrackableEntities.Client.Net4.cmd 1 |
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,4 @@ | ||
cd ..\..\..\..\ | ||
set PackageVersion=2.1.1-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Source\Scripts\TrackableEntities.Common.cmd 1 |
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,4 @@ | ||
cd ..\..\..\..\ | ||
set PackageVersion=2.1.1-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Source\Scripts\TrackableEntities.EF.5.cmd 1 |
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,4 @@ | ||
cd ..\..\..\..\ | ||
set PackageVersion=2.1.1-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Source\Scripts\TrackableEntities.EF.6.cmd 1 |
4 changes: 4 additions & 0 deletions
4
Build/Source/Scripts/Debug/TrackableEntities.Patterns-test.cmd
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,4 @@ | ||
cd ..\..\..\..\ | ||
set PackageVersion=2.1.1-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Source\Scripts\TrackableEntities.Patterns.cmd 1 |
4 changes: 4 additions & 0 deletions
4
Build/Source/Scripts/Debug/TrackableEntities.Patterns.EF.6-test.cmd
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,4 @@ | ||
cd ..\..\..\..\ | ||
set PackageVersion=2.1.1-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Source\Scripts\TrackableEntities.Patterns.EF.6.cmd 1 |
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,29 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config="%Configuration%" | ||
if %config% == "" ( | ||
set config=Release | ||
) | ||
set version="%PackageVersion%" | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.Client.Net4\packages.config -OutputDirectory Source\packages -NonInteractive | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.Client.Net4\packages.config -OutputDirectory packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir Build\Source\Output\TrackableEntities.Client.Net4\net40 | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Source\TrackableEntities.Client.Net4\TrackableEntities.Client.Net4.csproj /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=Build\Source\Output\TrackableEntities.Client.Net4\net40\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe pack "Source\TrackableEntities.Client.Net4\TrackableEntities.Client.Net4.csproj" -symbols -o Build\Source\Output\TrackableEntities.Client.Net4\net40 -p Configuration=%config%;PackageVersion=%version% | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
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,29 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config="%Configuration%" | ||
if %config% == "" ( | ||
set config=Release | ||
) | ||
set version="%PackageVersion%" | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.Client\packages.config -OutputDirectory Source\packages -NonInteractive | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.Client\packages.config -OutputDirectory packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir Build\Source\Output\TrackableEntities.Client\portable-net45+sl5+win8+windowsphone8 | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Source\TrackableEntities.Client\TrackableEntities.Client.csproj /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=Build\Source\Output\TrackableEntities.Client\portable-net45+sl5+win8+windowsphone8\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe pack "Source\TrackableEntities.Client\TrackableEntities.Client.csproj" -symbols -o Build\Source\Output\TrackableEntities.Client\portable-net45+sl5+win8+windowsphone8 -p Configuration=%config%;PackageVersion=%version% | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
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,21 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config="%Configuration%" | ||
if %config% == "" ( | ||
set config=Release | ||
) | ||
set version="%PackageVersion%" | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir Build\Source\Output\TrackableEntities.Common\portable-net40+sl5+win8+windowsphone8 | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Source\TrackableEntities.Common\TrackableEntities.Common.csproj /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=Build\Source\Output\TrackableEntities.Common\portable-net40+sl5+win8+windowsphone8\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
Source\.nuget\nuget.exe pack "Source\TrackableEntities.Common\TrackableEntities.Common.csproj" -symbols -o Build\Source\Output\TrackableEntities.Common\portable-net40+sl5+win8+windowsphone8 -p Configuration=%config%;PackageVersion=%version% | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
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,29 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config="%Configuration%" | ||
if %config% == "" ( | ||
set config=Release | ||
) | ||
set version="%PackageVersion%" | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.EF.5\packages.config -OutputDirectory Source\packages -NonInteractive | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.EF.5\packages.config -OutputDirectory packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir Build\Source\Output\TrackableEntities.EF.5\net45 | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Source\TrackableEntities.EF.5\TrackableEntities.EF.5.csproj /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=Build\Source\Output\TrackableEntities.EF.5\net45\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe pack "Source\TrackableEntities.EF.5\TrackableEntities.EF.5.csproj" -symbols -o Build\Source\Output\TrackableEntities.EF.5\net45 -p Configuration=%config%;PackageVersion=%version% | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
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,29 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config="%Configuration%" | ||
if %config% == "" ( | ||
set config=Release | ||
) | ||
set version="%PackageVersion%" | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.EF.6\packages.config -OutputDirectory Source\packages -NonInteractive | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.EF.6\packages.config -OutputDirectory packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir Build\Source\Output\TrackableEntities.EF.6\net45 | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Source\TrackableEntities.EF.6\TrackableEntities.EF.6.csproj /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=Build\Source\Output\TrackableEntities.EF.6\net45\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe pack "Source\TrackableEntities.EF.6\TrackableEntities.EF.6.csproj" -symbols -o Build\Source\Output\TrackableEntities.EF.6\net45 -p Configuration=%config%;PackageVersion=%version% | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
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,29 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config="%Configuration%" | ||
if %config% == "" ( | ||
set config=Release | ||
) | ||
set version="%PackageVersion%" | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.Patterns.EF.6\packages.config -OutputDirectory Source\packages -NonInteractive | ||
Source\.nuget\nuget.exe install Source\TrackableEntities.Patterns.EF.6\packages.config -OutputDirectory packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir Build\Source\Output\TrackableEntities.Patterns.EF.6\net45 | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Source\TrackableEntities.Patterns.EF.6\TrackableEntities.Patterns.EF.6.csproj /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=Build\Source\Output\TrackableEntities.Patterns.EF.6\net45\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe pack "Source\TrackableEntities.Patterns.EF.6\TrackableEntities.Patterns.EF.6.csproj" -symbols -o Build\Source\Output\TrackableEntities.Patterns.EF.6\net45 -p Configuration=%config%;PackageVersion=%version% | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
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,21 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config="%Configuration%" | ||
if %config% == "" ( | ||
set config=Release | ||
) | ||
set version="%PackageVersion%" | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir Build\Source\Output\TrackableEntities.Patterns\net45 | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild Source\TrackableEntities.Patterns\TrackableEntities.Patterns.csproj /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=Build\Source\Output\TrackableEntities.Patterns\net45\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
Source\.nuget\nuget.exe pack "Source\TrackableEntities.Patterns\TrackableEntities.Patterns.csproj" -symbols -o Build\Source\Output\TrackableEntities.Patterns\net45 -p Configuration=%config%;PackageVersion=%version% | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
Oops, something went wrong.