Commit 26e2850
authored
Fix publish-nuget workflow: resolve signing key path to absolute (#725)
* Add .NET 10 SDK to CodeQL analysis workflow
Add 10.0.x to dotnet-version in codeql-analysis.yml to support
building projects targeting net10.0.
* Fix signing key path resolution in build-signed.ps1
The script passed a relative path (src/RulesEngine/signKey.snk) to
-p:AssemblyOriginatorKeyFile, but MSBuild resolves that relative to the
project directory, causing it to look for the file at
src/RulesEngine/src/RulesEngine/signKey.snk which doesn't exist.
Convert to absolute path using [System.IO.Path]::GetFullPath() so
MSBuild finds the file at its actual location.1 parent d1cbb5d commit 26e2850
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
0 commit comments