Skip to content

Commit bdb3a9a

Browse files
committed
dotnet-tool: include core UI helper in package
We missed the core UI helper from the dotnet tool package - include it!
1 parent 3a46451 commit bdb3a9a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/shared/DotnetTool/pack-tool.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ ROOT="$( cd "$THISDIR"/../../.. ; pwd -P )"
4646
SRC="$ROOT/src"
4747
OUT="$ROOT/out"
4848
GCM_SRC="$SRC/shared/Git-Credential-Manager"
49+
GCM_UI_SRC="$SRC/shared/Git-Credential-Manager.UI.Avalonia"
4950
BITBUCKET_UI_SRC="$SRC/shared/Atlassian.Bitbucket.UI.Avalonia"
5051
GITHUB_UI_SRC="$SRC/shared/GitHub.UI.Avalonia"
5152
GITLAB_UI_SRC="$SRC/shared/GitLab.UI.Avalonia"
@@ -84,6 +85,13 @@ $DOTNET_ROOT/dotnet publish "$GCM_SRC" \
8485
--output="$(make_absolute "$PAYLOAD")" \
8586
-p:UseAppHost=false || exit 1
8687

88+
echo "Publishing core UI helper..."
89+
$DOTNET_ROOT/dotnet publish "$GCM_UI_SRC" \
90+
--configuration="$CONFIGURATION" \
91+
--framework="$FRAMEWORK" \
92+
--output="$(make_absolute "$PAYLOAD")" \
93+
-p:UseAppHost=false || exit 1
94+
8795
echo "Publishing Bitbucket UI helper..."
8896
$DOTNET_ROOT/dotnet publish "$BITBUCKET_UI_SRC" \
8997
--configuration="$CONFIGURATION" \

0 commit comments

Comments
 (0)