aboutsummaryrefslogtreecommitdiff
path: root/src/ext
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2023-11-26 22:40:25 -0500
committerBob Arnson <github@bobs.org>2023-12-04 15:20:37 -0500
commit5f23086a29aac7f0cbbe3b2e3d2f980d15e447c7 (patch)
tree65907df33dc5bee267223e1bd98ca3f77d678f45 /src/ext
parente0a9ec5d3e02d2471d496d1a59c89cb963bd01d7 (diff)
downloadwix-5f23086a29aac7f0cbbe3b2e3d2f980d15e447c7.tar.gz
wix-5f23086a29aac7f0cbbe3b2e3d2f980d15e447c7.tar.bz2
wix-5f23086a29aac7f0cbbe3b2e3d2f980d15e447c7.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.proj7
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