File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 13
13
14
14
<ItemGroup >
15
15
<ProjectReference Include =" ../../shared/Git-Credential-Manager/Git-Credential-Manager.csproj" ReferenceOutputAssembly =" false" />
16
+ <ProjectReference Include =" ../../shared/Atlassian.Bitbucket.UI/Atlassian.Bitbucket.UI.csproj" ReferenceOutputAssembly =" false" />
17
+ <ProjectReference Include =" ../../shared/GitHub.UI/GitHub.UI.csproj" ReferenceOutputAssembly =" false" />
16
18
</ItemGroup >
17
19
18
20
<!-- Implicit SDK targets import (so we can override the default targets below) -->
Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ SRC="$ROOT/src"
21
21
OUT=" $ROOT /out"
22
22
INSTALLER_SRC=" $SRC /osx/Installer.Mac"
23
23
GCM_SRC=" $SRC /shared/Git-Credential-Manager"
24
+ BITBUCKET_UI_SRC=" $SRC /shared/Atlassian.Bitbucket.UI"
25
+ GITHUB_UI_SRC=" $SRC /shared/GitHub.UI"
24
26
25
27
# Build parameters
26
28
FRAMEWORK=net5.0
@@ -77,6 +79,20 @@ dotnet publish "$GCM_SRC" \
77
79
--runtime=" $RUNTIME " \
78
80
--output=" $( make_absolute " $PAYLOAD " ) " || exit 1
79
81
82
+ echo " Publishing Bitbucket UI helper..."
83
+ dotnet publish " $BITBUCKET_UI_SRC " \
84
+ --configuration=" $CONFIGURATION " \
85
+ --framework=" $FRAMEWORK " \
86
+ --runtime=" $RUNTIME " \
87
+ --output=" $( make_absolute " $PAYLOAD " ) " || exit 1
88
+
89
+ echo " Publishing GitHub UI helper..."
90
+ dotnet publish " $GITHUB_UI_SRC " \
91
+ --configuration=" $CONFIGURATION " \
92
+ --framework=" $FRAMEWORK " \
93
+ --runtime=" $RUNTIME " \
94
+ --output=" $( make_absolute " $PAYLOAD " ) " || exit 1
95
+
80
96
# Collect symbols
81
97
echo " Collecting managed symbols..."
82
98
mv " $PAYLOAD " /* .pdb " $SYMBOLOUT " || exit 1
Original file line number Diff line number Diff line change 20
20
21
21
<ItemGroup >
22
22
<FilesToSign Include ="
23
+ $(OutDir)\Atlassian.Bitbucket.dll;
24
+ $(OutDir)\Atlassian.Bitbucket.UI.dll;
23
25
$(OutDir)\git-credential-manager-core.dll;
24
26
$(OutDir)\GitHub.dll;
27
+ $(OutDir)\GitHub.UI.dll;
25
28
$(OutDir)\Microsoft.AzureRepos.dll;
26
29
$(OutDir)\Microsoft.Git.CredentialManager.dll;" >
27
30
<Authenticode >Microsoft400</Authenticode >
28
31
<InProject >false</InProject >
29
32
</FilesToSign >
30
33
<MacFilesToSign Include ="
31
- $(OutDir)\git-credential-manager-core;" >
34
+ $(OutDir)\git-credential-manager-core;
35
+ $(OutDir)\GitHub.UI;
36
+ $(OutDir)\Atlassian.Bitbucket.UI;" >
32
37
<InProject >false</InProject >
33
38
</MacFilesToSign >
34
39
</ItemGroup >
You can’t perform that action at this time.
0 commit comments