Skip to content

Commit ae55beb

Browse files
committed
Debug
1 parent 225c2e6 commit ae55beb

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v3
1919

20+
- name: Install Mono
21+
run: sudo apt-get update && sudo apt-get install -y mono-runtime
22+
2023
- name: Setup dotnet
2124
uses: actions/setup-dotnet@v3
2225
with:

src/Blazor.Diagrams/Blazor.Diagrams.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@
4747
<Message Text="NuGetPackageRoot: $(NuGetPackageRoot)" Importance="high" />
4848
<Exec Command="echo NuGetPackageRoot: $(NuGetPackageRoot)" />
4949

50+
<Exec Command="FILE_PATH=$(find $(GITHUB_WORKSPACE) -type f -name &quot;StrongNameSigner.Console.exe&quot;) && echo &quot;Found file at: $FILE_PATH&quot;" />
51+
<Message Text="StrongNameSigner file path: $(FILE_PATH)" Importance="high" />
52+
53+
<!-- Run Strong Name Signer -->
54+
<Exec ContinueOnError="false"
55+
Command="mono &quot;$(NuGetPackageRoot)\Brutal.Dev.StrongNameSigner.3.5.1\build\StrongNameSigner.Console.exe&quot; -in &quot;$(NuGetPackageRoot)&quot;" />
56+
5057
<!-- Test if Excubo.WebCompiler is installed (recommended) -->
5158
<Exec Command="webcompiler -h" ContinueOnError="true" StandardOutputImportance="low" StandardErrorImportance="low" LogStandardErrorAsError="false" IgnoreExitCode="true">
5259
<Output TaskParameter="ExitCode" PropertyName="ErrorCode" />

0 commit comments

Comments
 (0)