-
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.
Allow output type and startup name override for gh actoin
- Loading branch information
1 parent
8f03e79
commit 8da23a5
Showing
8 changed files
with
51 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,16 @@ | ||
dotnet publish ./src/DepTree.Console/DepTree.Console.csproj -c Release -o out --no-self-contained | ||
|
||
ASSEMBLY_LOCATION=/Users/maisiesadler/repos/endpoints/src/Endpoints.Api/bin/Release/net5.0/osx.10.12-x64/Endpoints.Api.dll | ||
ROOT_TYPES=Pokedex.Controllers.PokemonController | ||
ROOT_TYPES=Endpoints.Api.Domain.MyModelRetriever | ||
INTERFACE_RESOLVER=None | ||
OUTPUT_FORMAT=debug | ||
|
||
ASSEMBLY_LOCATION=$ASSEMBLY_LOCATION \ | ||
APPLICATION_CONFIG_LOCATION=$APPLICATION_CONFIG_LOCATION \ | ||
ROOT_TYPES=$ROOT_TYPES \ | ||
SKIP_TYPES=$SKIP_TYPES \ | ||
ASSEMBLY_CONFIG_LOCATION=$ASSEMBLY_CONFIG_LOCATION \ | ||
INTERFACE_RESOLVER=$INTERFACE_RESOLVER \ | ||
OUTPUT_FORMAT=$OUTPUT_FORMAT \ | ||
STARTUP_NAME=$STARTUP_NAME \ | ||
dotnet out/DepTree.Console.dll |
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
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,9 @@ | ||
namespace DepTree.Console.Configuration | ||
{ | ||
public enum OutputFormatType | ||
{ | ||
Yuml, | ||
YumlMd, | ||
Debug, | ||
} | ||
} |
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