diff options
author | Bob Arnson <bob@firegiant.com> | 2023-11-26 22:40:25 -0500 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-01-28 09:22:41 -0800 |
commit | 6a6f1eb8d4e86b63b455d6676455e6489ee147a4 (patch) | |
tree | aa98fbc09d06fac40807ddbebdfcd20966df9d94 /src/ext | |
parent | 1c36cb8bc5a6535de82a64a6fa695df3ec4d7fda (diff) | |
download | wix-6a6f1eb8d4e86b63b455d6676455e6489ee147a4.tar.gz wix-6a6f1eb8d4e86b63b455d6676455e6489ee147a4.tar.bz2 wix-6a6f1eb8d4e86b63b455d6676455e6489ee147a4.zip |
Build tweaks to support VS 17.8...
...because SemVer is just a suggestion.
- Also fix missing NuGet cleanup.
- And update NuGet^2 packages because v6.3.1 has vulnerabilities.
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/Bal/test/examples/examples.proj | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ext/Bal/test/examples/examples.proj b/src/ext/Bal/test/examples/examples.proj index 855f0ef5..60388a93 100644 --- a/src/ext/Bal/test/examples/examples.proj +++ b/src/ext/Bal/test/examples/examples.proj | |||
@@ -39,7 +39,12 @@ | |||
39 | Condition="'%(CoreMBAProject.SkipFDD)'==''" /> | 39 | Condition="'%(CoreMBAProject.SkipFDD)'==''" /> |
40 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\scd" -r win-x64 -c $(Configuration) --self-contained true "%(CoreMBAProject.Identity)"' | 40 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\scd" -r win-x64 -c $(Configuration) --self-contained true "%(CoreMBAProject.Identity)"' |
41 | Condition="'%(CoreMBAProject.SkipSCD)'==''" /> | 41 | Condition="'%(CoreMBAProject.SkipSCD)'==''" /> |
42 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\trimmedscd" -r win-x64 -c $(Configuration) --self-contained true -p:PublishTrimmed=true -p:TrimMode=%(CoreMBAProject.TrimMode) "%(CoreMBAProject.Identity)"' | 42 | <!-- |
43 | Publishing a library is "undefined" (per https://github.com/dotnet/runtime/issues/91535) | ||
44 | and is now a build error. This will go away when BAs go out of proc, so not spending a | ||
45 | lot of time to keep building trimmed in VS 17.8. | ||
46 | --> | ||
47 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\trimmedscd" -r win-x64 -c $(Configuration) --self-contained true -p:PublishTrimmed=false -p:TrimMode=%(CoreMBAProject.TrimMode) "%(CoreMBAProject.Identity)"' | ||
43 | Condition="'%(CoreMBAProject.TrimMode)'!=''" /> | 48 | Condition="'%(CoreMBAProject.TrimMode)'!=''" /> |
44 | </Target> | 49 | </Target> |
45 | 50 | ||