diff options
Diffstat (limited to '')
-rw-r--r-- | src/ext/Bal/test/examples/examples.proj | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ext/Bal/test/examples/examples.proj b/src/ext/Bal/test/examples/examples.proj index 5722cfcb..a16af2a4 100644 --- a/src/ext/Bal/test/examples/examples.proj +++ b/src/ext/Bal/test/examples/examples.proj | |||
@@ -17,14 +17,15 @@ | |||
17 | <ItemGroup> | 17 | <ItemGroup> |
18 | <CoreMBAProject Include="$(EarliestCoreMBAProjectPath)"> | 18 | <CoreMBAProject Include="$(EarliestCoreMBAProjectPath)"> |
19 | <PublishPath>$(MBAPublishPath)Example.EarliestCoreMBA</PublishPath> | 19 | <PublishPath>$(MBAPublishPath)Example.EarliestCoreMBA</PublishPath> |
20 | <TrimMode>CopyUsed</TrimMode> | ||
20 | </CoreMBAProject> | 21 | </CoreMBAProject> |
21 | <CoreMBAProject Include="$(LatestCoreMBAProjectPath)"> | 22 | <CoreMBAProject Include="$(LatestCoreMBAProjectPath)"> |
22 | <PublishPath>$(MBAPublishPath)Example.LatestCoreMBA</PublishPath> | 23 | <PublishPath>$(MBAPublishPath)Example.LatestCoreMBA</PublishPath> |
24 | <TrimMode>Link</TrimMode> | ||
23 | </CoreMBAProject> | 25 | </CoreMBAProject> |
24 | <CoreMBAProject Include="$(WPFCoreMBAProjectPath)"> | 26 | <CoreMBAProject Include="$(WPFCoreMBAProjectPath)"> |
25 | <PublishPath>$(MBAPublishPath)Example.WPFCoreMBA</PublishPath> | 27 | <PublishPath>$(MBAPublishPath)Example.WPFCoreMBA</PublishPath> |
26 | <SkipSCD>true</SkipSCD> | 28 | <SkipSCD>true</SkipSCD> |
27 | <SkipTrimmedSCD>true</SkipTrimmedSCD> | ||
28 | </CoreMBAProject> | 29 | </CoreMBAProject> |
29 | 30 | ||
30 | <FullMBAProject Include="$(FullFramework2MBAProjectPath)" /> | 31 | <FullMBAProject Include="$(FullFramework2MBAProjectPath)" /> |
@@ -38,8 +39,8 @@ | |||
38 | Condition="'%(CoreMBAProject.SkipFDD)'==''" /> | 39 | Condition="'%(CoreMBAProject.SkipFDD)'==''" /> |
39 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\scd" -r win-x86 -c $(Configuration) --self-contained true "%(CoreMBAProject.Identity)"' | 40 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\scd" -r win-x86 -c $(Configuration) --self-contained true "%(CoreMBAProject.Identity)"' |
40 | Condition="'%(CoreMBAProject.SkipSCD)'==''" /> | 41 | Condition="'%(CoreMBAProject.SkipSCD)'==''" /> |
41 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\trimmedscd" -r win-x86 -c $(Configuration) --self-contained true -p:PublishTrimmed=true "%(CoreMBAProject.Identity)"' | 42 | <Exec Command='dotnet publish -o "%(CoreMBAProject.PublishPath)\trimmedscd" -r win-x86 -c $(Configuration) --self-contained true -p:PublishTrimmed=true -p:TrimMode=%(CoreMBAProject.TrimMode) "%(CoreMBAProject.Identity)"' |
42 | Condition="'%(CoreMBAProject.SkipTrimmedSCD)'==''" /> | 43 | Condition="'%(CoreMBAProject.TrimMode)'!=''" /> |
43 | </Target> | 44 | </Target> |
44 | 45 | ||
45 | <Target Name="Build" DependsOnTargets="PublishCoreExamples"> | 46 | <Target Name="Build" DependsOnTargets="PublishCoreExamples"> |