-
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
1,597 changed files
with
234,726 additions
and
49,238 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 |
---|---|---|
|
@@ -3,4 +3,8 @@ bin | |
obj | ||
*.suo | ||
*.user | ||
*.ds_store | ||
*._.ds_store | ||
|
||
/Build/Output | ||
/Build/Logs |
Binary file not shown.
File renamed without changes.
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,5 @@ | ||
cd ..\..\..\ | ||
set PackageVersion=2.5.0-test | ||
set Configuration=Debug | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Scripts\TrackableEntities.Client.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,5 @@ | ||
cd ..\..\..\ | ||
set PackageVersion=2.5.0-test | ||
set Configuration=Debug | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\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.5.0-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Scripts\TrackableEntities.CodeTemplates.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,5 @@ | ||
cd ..\..\..\ | ||
set PackageVersion=2.5.0-test | ||
set Configuration=Debug | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\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,5 @@ | ||
cd ..\..\..\ | ||
set PackageVersion=2.5.0-test | ||
set Configuration=Debug | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\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,5 @@ | ||
cd ..\..\..\ | ||
set PackageVersion=2.5.0-test | ||
set Configuration=Debug | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Scripts\TrackableEntities.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,4 @@ | ||
cd ..\..\..\ | ||
set PackageVersion=2.5.0-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\Scripts\TrackableEntities.Patterns.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.5.0-test | ||
rem pass 1 to debug, 0 to run without pausing | ||
Build\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,33 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config=%Configuration% | ||
if "%Configuration%" == "" ( | ||
set config=Release | ||
) | ||
set version=%PackageVersion% | ||
set name=TrackableEntities.Client.Net4 | ||
set source=Source\%name% | ||
set logs=Build\Logs\%name% | ||
set output=Build\Output\%name% | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install "%source%\packages.config" -OutputDirectory Source\packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir "%logs%" | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild "%source%\%name%.csproj" /p:Configuration="%config%" /m /v:M /fl /flp:LogFile="%logs%\msbuild.log";Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%" | ||
Source\.nuget\nuget.exe pack "%source%\%name%.csproj" -symbols -o "%output%" -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,84 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config=%Configuration% | ||
if "%Configuration%" == "" ( | ||
set config=Release | ||
) | ||
set version=%PackageVersion% | ||
set name=TrackableEntities.Client | ||
set source=Source\%name% | ||
set logs=Build\Logs\%name% | ||
set output=Build\Output\%name% | ||
set target-portable=portable-net45+wp80+win8+wpa81 | ||
set target-sl5=sl5 | ||
set target-net45=net45 | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install "%source%\packages.config" -OutputDirectory Source\packages -NonInteractive | ||
Source\.nuget\nuget.exe install "%source%.Net45\packages.config" -OutputDirectory Source\packages -NonInteractive | ||
Source\.nuget\nuget.exe install "%source%.sl5\packages.config" -OutputDirectory Source\packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir "%logs%" | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild "%source%\%name%.csproj" /p:Configuration="%config%" /m /v:M /fl /flp:LogFile="%logs%\msbuild.log";Verbosity=Normal /nr:false | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild "%source%.Net45\%name%.Net45.csproj" /p:Configuration="%config%" /m /v:M /fl /flp:LogFile="%logs%\msbuild.Net45.log";Verbosity=Normal /nr:false | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild "%source%.Sl5\%name%.Sl5.csproj" /p:Configuration="%config%" /m /v:M /fl /flp:LogFile="%logs%\msbuild.Sl5.log";Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Portable Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\lib\%target-portable%" | ||
xcopy "%source%\bin\%config%\%name%.dll" "%output%\lib\%target-portable%\" /y | ||
xcopy "%source%\bin\%config%\%name%.xml" "%output%\lib\%target-portable%\" /y | ||
xcopy "%source%\bin\%config%\%name%.pdb" "%output%\lib\%target-portable%\" /y | ||
|
||
mkdir "%output%\src\%target-portable%\Properties" | ||
xcopy "Source\AssemblyVersion.cs" "%output%\src\%target-portable%\Properties\" /y | ||
xcopy "%source%\Properties\AssemblyInfo.cs" "%output%\src\%target-portable%\Properties\" /y | ||
xcopy "%source%\*.cs" "%output%\src\%target-portable%\" /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Portable-SL5 Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\lib\%target-sl5%" | ||
xcopy "%source%\bin\%config%\%name%.dll" "%output%\lib\%target-sl5%\" /y | ||
xcopy "%source%\bin\%config%\%name%.xml" "%output%\lib\%target-sl5%\" /y | ||
xcopy "%source%\bin\%config%\%name%.pdb" "%output%\lib\%target-sl5%\" /y | ||
|
||
mkdir "%output%\src\%target-sl5%\Properties" | ||
xcopy "Source\AssemblyVersion.cs" "%output%\src\%target-sl5%\Properties\" /y | ||
xcopy "%source%\Properties\AssemblyInfo.cs" "%output%\src\%target-sl5%\Properties\" /y | ||
xcopy "%source%\*.cs" "%output%\src\%target-sl5%\" /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Net45 Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\lib\%target-net45%" | ||
xcopy "%source%.Net45\bin\%config%\%name%.dll" "%output%\lib\%target-net45%\" /y | ||
xcopy "%source%.Net45\bin\%config%\%name%.xml" "%output%\lib\%target-net45%\" /y | ||
xcopy "%source%.Net45\bin\%config%\%name%.pdb" "%output%\lib\%target-net45%\" /y | ||
|
||
mkdir "%output%\src\%target-net45%\Properties" | ||
xcopy "Source\AssemblyVersion.cs" "%output%\src\%target-net45%\Properties\" /y | ||
xcopy "%source%\Properties\AssemblyInfo.cs" "%output%\src\%target-net45%\Properties\" /y | ||
xcopy "%source%\*.cs" "%output%\src\%target-net45%\" /y | ||
del "%output%\src\%target-net45%\EntityBasePortable.cs" | ||
xcopy "%source%.Net45\*.cs" "%output%\src\%target-net45%\" /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
xcopy "%source%\%name%.nuspec" "%output%\" /y | ||
Source\.nuget\nuget.exe pack "%output%\%name%.nuspec" -symbols -o "%output%" -p 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,98 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set version=%PackageVersion% | ||
set name=TrackableEntities.CodeTemplates | ||
set source=Extensions\Templates\%name% | ||
set output=Build\Output\%name% | ||
|
||
rem Client.Portable | ||
set ext=Client.Portable | ||
|
||
REM Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\%name%.%ext%" | ||
xcopy "%source%.%ext%\Content" "%output%\%name%.%ext%\Content\" /e /y | ||
xcopy "%source%.%ext%\tools" "%output%\%name%.%ext%\tools\" /e /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
xcopy "%source%.%ext%\%name%.%ext%.nuspec" "%output%\%name%.%ext%\" /y | ||
Source\.nuget\nuget.exe pack "%output%\%name%.%ext%\%name%.%ext%.nuspec" -o "%output%\%name%.%ext%" -p PackageVersion="%version%" | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
rem Client.Net45 | ||
set ext=Client.Net45 | ||
|
||
REM Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\%name%.%ext%" | ||
xcopy "%source%.%ext%\Content" "%output%\%name%.%ext%\Content\" /e /y | ||
xcopy "%source%.%ext%\tools" "%output%\%name%.%ext%\tools\" /e /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
xcopy "%source%.%ext%\%name%.%ext%.nuspec" "%output%\%name%.%ext%\" /y | ||
Source\.nuget\nuget.exe pack "%output%\%name%.%ext%\%name%.%ext%.nuspec" -o "%output%\%name%.%ext%" -p PackageVersion="%version%" | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
rem Service.Net45 | ||
set ext=Service.Net45 | ||
|
||
REM Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\%name%.%ext%" | ||
xcopy "%source%.%ext%\Content" "%output%\%name%.%ext%\Content\" /e /y | ||
xcopy "%source%.%ext%\tools" "%output%\%name%.%ext%\tools\" /e /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
xcopy "%source%.%ext%\%name%.%ext%.nuspec" "%output%\%name%.%ext%\" /y | ||
Source\.nuget\nuget.exe pack "%output%\%name%.%ext%\%name%.%ext%.nuspec" -o "%output%\%name%.%ext%" -p PackageVersion="%version%" | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
rem Shared.Net45 | ||
set ext=Shared.Net45 | ||
|
||
REM Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\%name%.%ext%" | ||
xcopy "%source%.%ext%\Content" "%output%\%name%.%ext%\Content\" /e /y | ||
xcopy "%source%.%ext%\tools" "%output%\%name%.%ext%\tools\" /e /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
xcopy "%source%.%ext%\%name%.%ext%.nuspec" "%output%\%name%.%ext%\" /y | ||
Source\.nuget\nuget.exe pack "%output%\%name%.%ext%\%name%.%ext%.nuspec" -o "%output%\%name%.%ext%" -p PackageVersion="%version%" | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
rem Shared.Portable | ||
set ext=Shared.Portable | ||
|
||
REM Copy: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%\%name%.%ext%" | ||
xcopy "%source%.%ext%\Content" "%output%\%name%.%ext%\Content\" /e /y | ||
xcopy "%source%.%ext%\tools" "%output%\%name%.%ext%\tools\" /e /y | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
xcopy "%source%.%ext%\%name%.%ext%.nuspec" "%output%\%name%.%ext%\" /y | ||
Source\.nuget\nuget.exe pack "%output%\%name%.%ext%\%name%.%ext%.nuspec" -o "%output%\%name%.%ext%" -p 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,27 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config=%Configuration% | ||
if "%Configuration%" == "" ( | ||
set config=Release | ||
) | ||
set version=%PackageVersion% | ||
set name=TrackableEntities.Common | ||
set source=Source\%name% | ||
set logs=Build\Logs\%name% | ||
set output=Build\Output\%name% | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir "%logs%" | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild "%source%\%name%.csproj" /p:Configuration="%config%" /m /v:M /fl /flp:LogFile="%logs%\msbuild.log";Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%" | ||
Source\.nuget\nuget.exe pack "%source%\%name%.csproj" -symbols -o "%output%" -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,33 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config=%Configuration% | ||
if "%Configuration%" == "" ( | ||
set config=Release | ||
) | ||
set version=%PackageVersion% | ||
set name=TrackableEntities.EF.5 | ||
set source=Source\%name% | ||
set logs=Build\Logs\%name% | ||
set output=Build\Output\%name% | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install "%source%\packages.config" -OutputDirectory Source\packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir "%logs%" | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild "%source%\%name%.csproj" /p:Configuration="%config%" /m /v:M /fl /flp:LogFile="%logs%\msbuild.log";Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%" | ||
Source\.nuget\nuget.exe pack "%source%\%name%.csproj" -symbols -o "%output%" -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,33 @@ | ||
@echo On | ||
set debug=%1 | ||
|
||
REM Set Variables: | ||
set config=%Configuration% | ||
if "%Configuration%" == "" ( | ||
set config=Release | ||
) | ||
set version=%PackageVersion% | ||
set name=TrackableEntities.EF.6 | ||
set source=Source\%name% | ||
set logs=Build\Logs\%name% | ||
set output=Build\Output\%name% | ||
|
||
REM Restore: | ||
if "%debug%"=="1" pause | ||
Source\.nuget\nuget.exe install "%source%\packages.config" -OutputDirectory Source\packages -NonInteractive | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Build: | ||
if "%debug%"=="1" pause | ||
mkdir "%logs%" | ||
%WINDIR%\Microsoft.NET\Framework\v4.0.30319\msbuild "%source%\%name%.csproj" /p:Configuration="%config%" /m /v:M /fl /flp:LogFile=%logs%\msbuild.log;Verbosity=Normal /nr:false | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit | ||
|
||
REM Package: | ||
if "%debug%"=="1" pause | ||
mkdir "%output%" | ||
Source\.nuget\nuget.exe pack "%source%\%name%.csproj" -symbols -o "%output%" -p Configuration="%config%";PackageVersion="%version%" | ||
if "%debug%"=="1" pause | ||
if not "%errorlevel%"=="0" exit |
Oops, something went wrong.