Skip to content

Commit 607bfcc

Browse files
committed
slightly better build outputs
1 parent fe84588 commit 607bfcc

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

src/FsAutoComplete/FsAutoComplete.fsproj

+22-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
2020
<IsPackable>true</IsPackable>
2121
<PackAsTool>true</PackAsTool>
22+
<PublishTrimmed>true</PublishTrimmed>
23+
<PublishSingleFile>true</PublishSingleFile>
24+
<PublishSelfContained>true</PublishSelfContained>
25+
<DebugType>embedded</DebugType>
2226
</PropertyGroup>
2327
<ItemGroup>
2428
<None
@@ -83,17 +87,32 @@
8387

8488
<Target Name="BuildAllStandloneApplications">
8589
<ItemGroup>
90+
<!-- Make MSBuild Items out of the RIDs so we can batch across them -->
8691
<_RIDS Include="$(RuntimeIdentifiers)" />
92+
<!-- Make MSBuild Items out of the TFMs so we can batch across them. Create NUM_RIDS items
93+
per-TFM because we want to build each TFM for all supported platforms. -->
94+
<_TFMS
95+
Include="$(TargetFrameworks)"
96+
RID="%(_RIDS.Identity)" />
97+
<!-- Turn the _TFMS items into requests to build this project (fsautocomplete.fsproj) with
98+
different parameters. This pattern is often used to to parallel builds of the same project in
99+
MSBuild logic. -->
87100
<_RIDSpecificFSACBuild
88101
Include="$(MSBuildThisFile)"
89-
AdditionalProperties="RuntimeIdentifier=%(_RIDS.Identity)" />
102+
AdditionalProperties="RuntimeIdentifier=%(_TFMS.RID);TargetFramework=%(_TFMS.Identity)" />
90103
</ItemGroup>
91104

105+
<!-- Ask MSBuild to build all of the requests we just made. The MSBuild Task recognizes the
106+
AdditionalProperties metadata and will apply that to each specific build, we can specify the things
107+
that are common to all of the builds here. Unsetting RuntimeIdentifiers and TargetFrameworks
108+
ensures that the SDK targets detect that these are single-RID/single-TFM builds accurately, and
109+
since we're pretty certain there are no data dependencies here we can have the builds operate in
110+
parallel. -->
92111
<MSBuild
93112
Projects="@(_RIDSpecificFSACBuild)"
94113
Targets="Publish"
95-
Properties="Configuration=Release;PublishSingleFile=true;PublishTrimmed=true;"
96-
RemoveProperties="RuntimeIdentifiers"
114+
Properties="Configuration=Release;SelfContained=true"
115+
RemoveProperties="RuntimeIdentifiers;TargetFrameworks"
97116
BuildInParallel="true" />
98117
</Target>
99118

0 commit comments

Comments
 (0)