-
Notifications
You must be signed in to change notification settings - Fork 0
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,199 changed files
with
38,280 additions
and
1,565 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
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
@echo off | ||
|
||
echo "Clone To ZProRx.Lib" | ||
|
||
del /q /s ..\..\ZProRx.Lib\ZP.Lib\* | ||
rd /s /q ..\..\ZProRx.Lib\ZP.Lib\ | ||
|
||
xcopy ..\ZP.Lib\* ..\..\ZProRx.Lib\ZP.Lib\ /s /e /c /y /h /r | ||
|
||
del /q /s ..\..\ZProRx.Lib\ZP.Lib\ZP.Lib.Battle\* | ||
rd /s /q ..\..\ZProRx.Lib\ZP.Lib\ZP.Lib.Battle\ | ||
|
||
del /q /s ..\..\ZProRx.Lib\ZP.Lib\ZP.Lib.Battle.NetCore\* | ||
rd /s /q ..\..\ZProRx.Lib\ZP.Lib\ZP.Lib.Battle.NetCore\ | ||
|
||
del /q /s ..\..\ZProRx.Lib\ZProRx.Test.Unity\* | ||
rd /s /q ..\..\ZProRx.Lib\ZProRx.Test.Unity\ | ||
|
||
del /q /s ..\..\ZProRx.Lib\ZProRx.Test.Server\* | ||
rd /s /q ..\..\ZProRx.Lib\ZProRx.Test.Server\ | ||
|
||
del /q /s ..\..\ZProRx.Lib\ZProRx.Test.Web\* | ||
rd /s /q ..\..\ZProRx.Lib\ZProRx.Test.Web\ | ||
|
||
xcopy ..\ZProRx.Test.Unity\* ..\..\ZProRx.Lib\ZProRx.Test.Unity\ /s /e /c /y /h /r | ||
xcopy ..\ZProRx.Test.Server\* ..\..\ZProRx.Lib\ZProRx.Test.Server\ /s /e /c /y /h /r | ||
xcopy ..\ZProRx.Test.Web\* ..\..\ZProRx.Lib\ZProRx.Test.Web\ /s /e /c /y /h /r | ||
|
||
xcopy ..\.vscode\* ..\..\ZProRx.Lib\.vscode\ /s /e /c /y /h /r | ||
xcopy ..\Docs\* ..\..\ZProRx.Lib\Docs\ /s /e /c /y /h /r | ||
xcopy ..\.favorites.json ..\..\ZProRx.Lib\.favorites.json /s /e /c /y /h /r | ||
xcopy ..\.gitattributes ..\..\ZProRx.Lib\.gitattributes /s /e /c /y /h /r | ||
xcopy ..\.gitignore ..\..\ZProRx.Lib\.gitignore /s /e /c /y /h /r | ||
xcopy ..\ZProRx.Lib.Open.sln ..\..\ZProRx.Lib\ZProRx.Lib.Open.sln /s /e /c /y /h /r | ||
xcopy ..\Readme.md ..\..\ZProRx.Lib\Readme.md /s /e /c /y /h /r | ||
|
||
echo "Unit Test ZProRx.Lib" | ||
|
||
cd /d ..\..\ZProRx.Lib\ZP.Lib\ZP.Lib.Server.Test\ | ||
dotnet test ZP.Lib.Server.Test.csproj |
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,47 @@ | ||
@echo off | ||
|
||
echo "Publish Package" | ||
|
||
|
||
echo "pack ZP.Lib.NetCore" | ||
cd /d ./ZP.Lib.NetCore/ | ||
dotnet pack .\ZP.Lib.NetCore.csproj -c Release -p:NuspecFile=.\ZP.Lib.NetCore.nuspec | ||
xcopy .\bin\Release\*.nupkg ..\..\..\Publish\ /s /e /c /y /h /r | ||
cd /d ../ | ||
|
||
echo "pack ZP.Lib.Main" | ||
cd /d ./ZP.Lib.Main/ | ||
del /q /s .\bin\Release\*.nupkg | ||
dotnet pack .\ZP.Lib.Server.csproj -c Release -p:NuspecFile=.\ZP.Lib.Server.nuspec | ||
xcopy .\bin\Release\*.nupkg ..\..\..\Publish\ /s /e /c /y /h /r | ||
cd /d ../ | ||
|
||
echo "pack ZP.Lib.Card" | ||
cd /d ./ZP.Lib.Card/ | ||
dotnet pack .\ZP.Lib.Card.csproj -c Release -p:NuspecFile=.\ZP.Lib.Card.nuspec | ||
xcopy .\bin\Release\*.nupkg ..\..\..\Publish\ /s /e /c /y /h /r | ||
cd /d ../ | ||
|
||
echo "pack ZP.Lib.Matrix" | ||
cd /d ./ZP.Lib.Matrix/ | ||
dotnet pack .\ZP.Lib.Matrix.csproj -c Release -p:NuspecFile=.\ZP.Lib.Matrix.nuspec | ||
xcopy .\bin\Release\*.nupkg ..\..\..\Publish\ /s /e /c /y /h /r | ||
cd /d ../ | ||
|
||
echo "pack ZP.Lib.Standard" | ||
cd /d ./ZP.Lib.Standard/ | ||
dotnet pack .\ZP.Lib.Standard.csproj -c Release -p:NuspecFile=.\ZP.Lib.Standard.nuspec | ||
xcopy .\bin\Release\*.nupkg ..\..\..\Publish\ /s /e /c /y /h /r | ||
cd /d ../ | ||
|
||
|
||
echo "pack ZP.Lib.Web" | ||
cd /d ./ZP.Lib.Web/ | ||
dotnet pack .\ZP.Lib.Web.csproj -c Release -p:NuspecFile=.\ZP.Lib.Web.nuspec | ||
xcopy .\bin\Release\*.nupkg ..\..\..\Publish\ /s /e /c /y /h /r | ||
cd /d ../ | ||
|
||
|
||
echo "Unit Test nuget pakcages" | ||
cd /d ./ZP.Lib.Server.Test/ | ||
dotnet test ZP.Lib.Server.TestLocalNupack.csproj -c Release |
Oops, something went wrong.