-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from LogoFX/feature/model-template-2
Feature/model template 2
- Loading branch information
Showing
44 changed files
with
773 additions
and
183 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 |
---|---|---|
|
@@ -352,3 +352,4 @@ MigrationBackup/ | |
# Unclear | ||
.DS_Store | ||
/generated | ||
/utils/ModifyTool/Properties/launchSettings.json |
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
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,4 @@ | ||
.sln | ||
.csproj | ||
AppModel.cs | ||
IAppModel.cs |
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
REM Publish UninstallTemplate to \devops\utils folder | ||
|
||
set utils=utils | ||
|
||
if exist %utils% ( | ||
rmdir %utils% /s /q | ||
) | ||
|
||
if %ERRORLEVEL% NEQ 0 ( | ||
goto EXIT | ||
) | ||
|
||
cd ..\utils\UninstallTemplate | ||
|
||
dotnet publish -c release -o ..\..\devops\%utils% | ||
|
||
if %ERRORLEVEL% NEQ 0 ( | ||
goto EXIT | ||
) | ||
|
||
cd ..\..\devops | ||
|
||
:EXIT | ||
EXIT /B %ERRORLEVEL% |
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,39 @@ | ||
set temp=generated | ||
set utils=utils | ||
|
||
REM Prepare 'Generated' folder | ||
|
||
cd .. | ||
if not exist %temp% ( | ||
md %temp% | ||
) | ||
|
||
cd %temp% | ||
|
||
if %ERRORLEVEL% NEQ 0 ( | ||
goto EXIT | ||
) | ||
|
||
if exist %utils% ( | ||
echo Removing %utils% | ||
rmdir %utils% /s /q | ||
) | ||
|
||
if %ERRORLEVEL% NEQ 0 ( | ||
echo Error removing %utils% | ||
goto EXIT | ||
) | ||
|
||
cd ..\utils | ||
|
||
cd ModifyTool | ||
dotnet publish -c release -o ..\..\%temp%\%1\%utils% | ||
|
||
if %ERRORLEVEL% NEQ 0 ( | ||
goto EXIT | ||
) | ||
|
||
cd ..\..\devops | ||
|
||
:EXIT | ||
EXIT /B %ERRORLEVEL% |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
cd ..\specs | ||
dotnet test -c Release | ||
dotnet test -c Release | ||
cd ..\devops |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.