@@ -44,6 +44,8 @@ ROOT="$( cd "$THISDIR"/../../.. ; pwd -P )"
44
44
SRC=" $ROOT /src"
45
45
OUT=" $ROOT /out"
46
46
GCM_SRC=" $SRC /shared/Git-Credential-Manager"
47
+ BITBUCKET_UI_SRC=" $SRC /shared/Atlassian.Bitbucket.UI"
48
+ GITHUB_UI_SRC=" $SRC /shared/GitHub.UI"
47
49
PROJ_OUT=" $OUT /linux/Packaging.Linux"
48
50
49
51
# Build parameters
@@ -94,8 +96,26 @@ dotnet publish "$GCM_SRC" \
94
96
--configuration=" $CONFIGURATION " \
95
97
--framework=" $FRAMEWORK " \
96
98
--runtime=" $RUNTIME " \
97
- --self-contained=true \
98
- " /p:PublishSingleFile=True" \
99
+ --self-contained=true \
100
+ -p:PublishSingleFile=true \
101
+ --output=" $( make_absolute " $PAYLOAD " ) " || exit 1
102
+
103
+ echo " Publishing Bitbucket UI helper..."
104
+ dotnet publish " $BITBUCKET_UI_SRC " \
105
+ --configuration=" $CONFIGURATION " \
106
+ --framework=" $FRAMEWORK " \
107
+ --runtime=" $RUNTIME " \
108
+ --self-contained=true \
109
+ -p:PublishSingleFile=true \
110
+ --output=" $( make_absolute " $PAYLOAD " ) " || exit 1
111
+
112
+ echo " Publishing GitHub UI helper..."
113
+ dotnet publish " $GITHUB_UI_SRC " \
114
+ --configuration=" $CONFIGURATION " \
115
+ --framework=" $FRAMEWORK " \
116
+ --runtime=" $RUNTIME " \
117
+ --self-contained=true \
118
+ -p:PublishSingleFile=true \
99
119
--output=" $( make_absolute " $PAYLOAD " ) " || exit 1
100
120
101
121
# Collect symbols
0 commit comments