-
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.
Merge pull request #5 from AlamoEngine-Tools/develop
Update CLI params
- Loading branch information
Showing
37 changed files
with
757 additions
and
347 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 |
---|---|---|
|
@@ -55,8 +55,6 @@ jobs: | |
# Change into the artifacts directory to avoid including the directory itself in the zip archive | ||
working-directory: ./releases/net8.0 | ||
run: zip -r ../ModVerify-Net8.zip . | ||
- name: Rename .NET Framework executable | ||
run: mv ./releases/net48/ModVerify.CliApp.exe ./releases/net48/ModVerify.exe | ||
- uses: dotnet/[email protected] | ||
id: nbgv | ||
- name: Create GitHub release | ||
|
Submodule PetroglyphTools
updated
8 files
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,17 @@ | ||
using PG.StarWarsGame.Engine; | ||
using PG.StarWarsGame.Infrastructure.Games; | ||
|
||
namespace AET.ModVerifyTool; | ||
|
||
internal static class ExtensionMethods | ||
{ | ||
public static GameEngineType ToEngineType(this GameType type) | ||
{ | ||
return type == GameType.Foc ? GameEngineType.Foc : GameEngineType.Eaw; | ||
} | ||
|
||
public static GameType FromEngineType(this GameEngineType type) | ||
{ | ||
return type == GameEngineType.Foc ? GameType.Foc : GameType.Eaw; | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/ModVerify.CliApp/GameFinderResult.cs → ...ify.CliApp/GameFinder/GameFinderResult.cs
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,5 +1,5 @@ | ||
using PG.StarWarsGame.Infrastructure.Games; | ||
|
||
namespace ModVerify.CliApp; | ||
namespace AET.ModVerifyTool.GameFinder; | ||
|
||
internal record GameFinderResult(IGame Game, IGame? FallbackGame); |
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,5 @@ | ||
using PG.StarWarsGame.Infrastructure.Games; | ||
|
||
namespace AET.ModVerifyTool; | ||
|
||
internal class GameNotFoundException(string message) : GameException(message); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.