diff options
| author | Bob Arnson <bob@firegiant.com> | 2025-04-27 11:21:34 -0400 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2025-06-11 23:34:42 -0400 |
| commit | 7051e6a5fdc8965289fbc34d0de2a78dae14e62e (patch) | |
| tree | 4a6ba3d354089b0abdf1c295a9b79b5e56ea39f1 /src/ext/Bal/test/examples/examples.proj | |
| parent | fddc154029b838c2fd83a2eee09d53468dd4cf08 (diff) | |
| download | wix-7051e6a5fdc8965289fbc34d0de2a78dae14e62e.tar.gz wix-7051e6a5fdc8965289fbc34d0de2a78dae14e62e.tar.bz2 wix-7051e6a5fdc8965289fbc34d0de2a78dae14e62e.zip | |
Add `Payloads` element to harvest bundle payloads.
Implements https://github.com/wixtoolset/issues/issues/9049
Diffstat (limited to 'src/ext/Bal/test/examples/examples.proj')
| -rw-r--r-- | src/ext/Bal/test/examples/examples.proj | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ext/Bal/test/examples/examples.proj b/src/ext/Bal/test/examples/examples.proj index c1544766..e439c288 100644 --- a/src/ext/Bal/test/examples/examples.proj +++ b/src/ext/Bal/test/examples/examples.proj | |||
| @@ -34,16 +34,12 @@ | |||
| 34 | Condition="'%(CoreMBAProject.SkipFDD)'==''" /> | 34 | Condition="'%(CoreMBAProject.SkipFDD)'==''" /> |
| 35 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\scd" -r win-x64 -c $(Configuration) --self-contained true "%(CoreMBAProject.Identity)"' | 35 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\scd" -r win-x64 -c $(Configuration) --self-contained true "%(CoreMBAProject.Identity)"' |
| 36 | Condition="'%(CoreMBAProject.SkipSCD)'==''" /> | 36 | Condition="'%(CoreMBAProject.SkipSCD)'==''" /> |
| 37 | <!-- | ||
| 38 | Publishing a library is "undefined" (per https://github.com/dotnet/runtime/issues/91535) | ||
| 39 | and is now a build error. This will go away when BAs go out of proc, so not spending a | ||
| 40 | lot of time to keep building trimmed in VS 17.8. | ||
| 41 | --> | ||
| 42 | <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)"' | 37 | <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)'!=''" /> | 38 | Condition="'%(CoreMBAProject.TrimMode)'!=''" /> |
| 44 | </Target> | 39 | </Target> |
| 45 | 40 | ||
| 46 | <ItemGroup> | 41 | <ItemGroup> |
| 42 | <ProjectReference Include="..\..\wixext\WixToolset.BootstrapperApplications.wixext.csproj" /> | ||
| 47 | <ProjectReference Include="**\*.wixproj" /> | 43 | <ProjectReference Include="**\*.wixproj" /> |
| 48 | </ItemGroup> | 44 | </ItemGroup> |
| 49 | </Project> | 45 | </Project> |
