-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Microsoft.NET.Publish.targets
1142 lines (957 loc) · 59.7 KB
/
Microsoft.NET.Publish.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
***********************************************************************************************
Microsoft.NET.Publish.targets
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your projects from the command-line or the IDE.
Copyright (c) .NET Foundation. All rights reserved.
***********************************************************************************************
-->
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<DefaultCopyToPublishDirectoryMetadata Condition="'$(DefaultCopyToPublishDirectoryMetadata)' == ''">true</DefaultCopyToPublishDirectoryMetadata>
<_GetChildProjectCopyToPublishDirectoryItems Condition="'$(_GetChildProjectCopyToPublishDirectoryItems)' == ''">true</_GetChildProjectCopyToPublishDirectoryItems>
<IsPublishable Condition="'$(IsPublishable)' == ''">true</IsPublishable>
</PropertyGroup>
<!-- Trimming/AOT/publish* property configuration -->
<PropertyGroup>
<!-- PublishAot depends on PublishTrimmed. This must be set early enough for the KnownILLinkPack to be restored. -->
<PublishTrimmed Condition="'$(PublishTrimmed)' == '' And '$(PublishAot)' == 'true'">true</PublishTrimmed>
<IsTrimmable Condition="'$(IsTrimmable)' == '' and '$(IsAotCompatible)' == 'true'">true</IsTrimmable>
<_IsTrimmingEnabled Condition="'$(_IsTrimmingEnabled)' == '' And ('$(PublishTrimmed)' == 'true' Or '$(IsTrimmable)' == 'true')">true</_IsTrimmingEnabled>
<_IsTrimmingEnabled Condition="'$(_IsTrimmingEnabled)' == ''">false</_IsTrimmingEnabled>
<DynamicCodeSupport Condition="'$(DynamicCodeSupport)' == '' And '$(PublishAot)' == 'true'">false</DynamicCodeSupport>
</PropertyGroup>
<ItemDefinitionGroup>
<ResolvedFileToPublish>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</ResolvedFileToPublish>
</ItemDefinitionGroup>
<!--
============================================================
Publish
The main publish entry point.
============================================================
-->
<Import Project="Microsoft.NET.ClickOnce.targets" Condition="'$(PublishProtocol)' == 'ClickOnce'" />
<PropertyGroup>
<!-- We still need to resolve references even if we are not building during publish. -->
<!-- BuildOnlySettings are required for RAR to find satellites and dependencies -->
<_BeforePublishNoBuildTargets>
BuildOnlySettings;
_PreventProjectReferencesFromBuilding;
ResolveReferences;
PrepareResourceNames;
ComputeIntermediateSatelliteAssemblies;
ComputeEmbeddedApphostPaths;
</_BeforePublishNoBuildTargets>
<_CorePublishTargets>
PrepareForPublish;
ComputeAndCopyFilesToPublishDirectory;
$(PublishProtocolProviderTargets);
PublishItemsOutputGroup;
</_CorePublishTargets>
<_PublishNoBuildAlternativeDependsOn>$(_BeforePublishNoBuildTargets);$(_CorePublishTargets)</_PublishNoBuildAlternativeDependsOn>
</PropertyGroup>
<Target Name="_PublishBuildAlternative"
Condition="'$(NoBuild)' != 'true'"
DependsOnTargets="Build;$(_CorePublishTargets)" />
<Target Name="_PublishNoBuildAlternative"
Condition="'$(NoBuild)' == 'true'"
DependsOnTargets="$(_PublishNoBuildAlternativeDependsOn)" />
<Target Name="Publish"
Condition="$(IsPublishable) == 'true'"
DependsOnTargets="_PublishBuildAlternative;_PublishNoBuildAlternative" >
<!-- Ensure there is minimal verbosity output pointing to the publish directory and not just the
build step's minimal output. Otherwise there is no indication at minimal verbosity of where
the published assets were copied. -->
<Message Importance="High" Text="$(MSBuildProjectName) -> $([System.IO.Path]::GetFullPath('$(PublishDir)'))" />
<ItemGroup>
<PublishTelemetry Include="PublishReadyToRun" Value="$(PublishReadyToRun)" />
<PublishTelemetry Include="PublishTrimmed" Value="$(PublishTrimmed)" />
<PublishTelemetry Include="PublishSingleFile" Value="$(PublishSingleFile)" />
<PublishTelemetry Include="PublishAot" Value="$(PublishAot)" />
<PublishTelemetry Include="PublishProtocol" Value="$(PublishProtocol)" />
</ItemGroup>
<AllowEmptyTelemetry EventName="PublishProperties" EventData="@(PublishTelemetry)" />
</Target>
<!-- Don't let project reference resolution build project references in NoBuild case. -->
<Target Name="_PreventProjectReferencesFromBuilding">
<PropertyGroup>
<BuildProjectReferences>false</BuildProjectReferences>
</PropertyGroup>
</Target>
<!--
============================================================
PrepareForPublish
Prepare the prerequisites for publishing.
============================================================
-->
<Target Name="PrepareForPublish">
<NETSdkError Condition="'$(PublishSingleFile)' == 'true' And '$(_IsExecutable)' != 'true'"
ResourceName="CannotHaveSingleFileWithoutExecutable" />
<NETSdkError Condition="'$(PublishSingleFile)' == 'true' And '$(_IsExecutable)' == 'true' And '$(TargetFrameworkIdentifier)' != '.NETCoreApp'"
ResourceName="CanOnlyHaveSingleFileWithNetCoreApp" />
<NETSdkError Condition="'$(PublishSingleFile)' == 'true' And
'$(IncludeSymbolsInSingleFile)' == 'true' And
'$(_TargetFrameworkVersionWithoutV)' >= '5.0' And '$(TargetFrameworkIdentifier)' == '.NETCoreApp'"
ResourceName="CannotIncludeSymbolsInSingleFile" />
<NETSdkError Condition="'$(PublishSingleFile)' == 'true' and '$(RuntimeIdentifier)' == ''"
ResourceName="CannotHaveSingleFileWithoutRuntimeIdentifier" />
<NETSdkError Condition="'$(PublishSingleFile)' == 'true' and '$(UseAppHost)' != 'true'"
ResourceName="CannotHaveSingleFileWithoutAppHost" />
<NETSdkError Condition="'$(PublishSingleFile)' == 'true' And
'$(EnableCompressionInSingleFile)' == 'true' And
'$(_TargetFrameworkVersionWithoutV)' < '6.0'"
ResourceName="CompressionInSingleFileRequires60" />
<NETSdkError Condition="'$(PublishSingleFile)' == 'true' And
'$(EnableCompressionInSingleFile)' == 'true' And
'$(SelfContained)' != 'true'"
ResourceName="CompressionInSingleFileRequiresSelfContained" />
<NETSdkWarning Condition="'$(PublishProfileImported)' != 'true' and '$(PublishProfile)' != ''"
ResourceName="PublishProfileNotPresent"
FormatArguments="$(PublishProfile)"/>
<!-- Projects in a solution cannot have conflicting configurations. This checks if PublishRelease conflicted at runtime to avoid extra project evaluations.
SolutionExt is used to check if we are publishing a solution. Will be undefined if not.-->
<NETSdkError Condition="'$(_IsPublishing)' == 'true' and
'$(DOTNET_CLI_DISABLE_PUBLISH_AND_PACK_RELEASE)' != 'true' and
'$(DOTNET_CLI_LAZY_PUBLISH_AND_PACK_RELEASE_FOR_SOLUTIONS)' == 'true' and
'$(SolutionExt)' == '.sln' and
'$(_SolutionLevelPublishRelease)' != '$(PublishRelease)'"
ResourceName="SolutionProjectConfigurationsConflict"
FormatArguments="PublishRelease;$(ProjectName)"/>
<PropertyGroup>
<!-- Ensure any PublishDir has a trailing slash, so it can be concatenated -->
<PublishDir Condition="!HasTrailingSlash('$(PublishDir)')">$(PublishDir)\</PublishDir>
</PropertyGroup>
<MakeDir Directories="$(PublishDir)" />
</Target>
<!--
============================================================
ComputeAndCopyFilesToPublishDirectory
Computes the list of all files to copy to the publish directory and then publishes them.
============================================================
-->
<Target Name="ComputeAndCopyFilesToPublishDirectory"
DependsOnTargets="ComputeFilesToPublish;
CopyFilesToPublishDirectory" />
<!--
============================================================
CopyFilesToPublishDirectory
Copy all build outputs, satellites and other necessary files to the publish directory.
When publishing to a single file, only those files that are not bundled are copied.
The remaining files are directly written to the bundle file.
============================================================
-->
<Target Name="CopyFilesToPublishDirectory"
DependsOnTargets="_IncrementalCleanPublishDirectory;
_CopyResolvedFilesToPublishPreserveNewest;
_CopyResolvedFilesToPublishAlways;
_HandleFileConflictsForPublish" />
<!--
============================================================
_IncrementalCleanPublishDirectory
Remove files that were produced in a prior publish but weren't produced in the current publish.
============================================================
-->
<Target Name="_IncrementalCleanPublishDirectory"
DependsOnTargets="_GetCurrentAndPriorPublishFileWrites">
<!-- Subtract list of files produced in the prior publish from list of files produced in this publish. -->
<ItemGroup>
<_OrphanPublishFileWrites Include="@(_PriorPublishFileWrites)" Exclude="@(_CurrentPublishFileWrites)"/>
</ItemGroup>
<!-- Delete the orphaned files. -->
<Delete
Files="@(_OrphanPublishFileWrites)"
TreatErrorsAsWarnings="true">
<Output TaskParameter="DeletedFiles" ItemName="_OrphanFilesDeleted"/>
</Delete>
<!-- Write new list of current files back to clean file. -->
<WriteLinesToFile
File="$(IntermediateOutputPath)$(_PublishCleanFile)"
Lines="@(_CurrentPublishFileWrites)"
Overwrite="true"/>
</Target>
<!--
============================================================
_GetCurrentAndPriorPublishFileWrites
Get the list of files written in the previous publish and the list of files to be written in this publish.
============================================================
-->
<Target Name="_GetCurrentAndPriorPublishFileWrites" >
<PropertyGroup>
<_NormalizedPublishDir>$([MSBuild]::NormalizeDirectory($(PublishDir)))</_NormalizedPublishDir>
</PropertyGroup>
<Hash ItemstoHash="$(_NormalizedPublishDir)">
<Output TaskParameter="HashResult" PropertyName="_NormalizedPublishDirHash" />
</Hash>
<PropertyGroup>
<_PublishCleanFile Condition="'$(PublishCleanFile)'==''">PublishOutputs.$(_NormalizedPublishDirHash.Substring(0, 10)).txt</_PublishCleanFile>
</PropertyGroup>
<!-- Read in writes made by prior publish. -->
<ReadLinesFromFile File="$(IntermediateOutputPath)$(_PublishCleanFile)">
<Output TaskParameter="Lines" ItemName="_UnfilteredPriorPublishFileWrites"/>
</ReadLinesFromFile>
<ConvertToAbsolutePath Paths="@(_UnfilteredPriorPublishFileWrites)">
<Output TaskParameter="AbsolutePaths" ItemName="_UnfilteredAbsolutePriorPublishFileWrites"/>
</ConvertToAbsolutePath>
<!-- Find all files in the final output directory. -->
<FindUnderPath Path="$(_NormalizedPublishDir)" Files="@(_UnfilteredAbsolutePriorPublishFileWrites)" UpdateToAbsolutePaths="true">
<Output TaskParameter="InPath" ItemName="_PriorPublishFileWritesInOuput"/>
</FindUnderPath>
<!-- Remove duplicates from files produced in the previous publish. -->
<RemoveDuplicates Inputs="@(_PriorPublishFileWritesInOuput)" >
<Output TaskParameter="Filtered" ItemName="_PriorPublishFileWrites"/>
</RemoveDuplicates>
<ItemGroup>
<_CurrentPublishFileWritesUnfiltered Include="@(ResolvedFileToPublish->'$(_NormalizedPublishDir)%(RelativePath)')"/>
<_CurrentPublishFileWritesUnfiltered Include="$(_NormalizedPublishDir)$(AssemblyName)$(_NativeExecutableExtension)" Condition="'$(UseAppHost)' == 'true'"/>
</ItemGroup>
<ConvertToAbsolutePath Paths="@(_CurrentPublishFileWritesUnfiltered)">
<Output TaskParameter="AbsolutePaths" ItemName="_CurrentAbsolutePublishFileWritesUnfiltered"/>
</ConvertToAbsolutePath>
<!-- Remove duplicates from the files produced in this publish-->
<RemoveDuplicates Inputs="@(_CurrentAbsolutePublishFileWritesUnfiltered)" >
<Output TaskParameter="Filtered" ItemName="_CurrentPublishFileWrites"/>
</RemoveDuplicates>
</Target>
<!--
============================================================
_CopyResolvedFilesToPublishPreserveNewest
Copy _ResolvedFileToPublishPreserveNewest items to the publish directory
============================================================
-->
<Target Name="_CopyResolvedFilesToPublishPreserveNewest"
DependsOnTargets="_ComputeResolvedFilesToPublishTypes"
Inputs="@(_ResolvedFileToPublishPreserveNewest)"
Outputs="@(_ResolvedFileToPublishPreserveNewest->'$(PublishDir)%(RelativePath)')">
<!--
PreserveNewest means that we will only copy the source to the destination if the source is newer.
SkipUnchangedFiles is not used for that purpose because it will copy if the source and destination
differ by size too. Instead, this target uses inputs and outputs to only copy when the source is newer.
-->
<Copy SourceFiles = "@(_ResolvedFileToPublishPreserveNewest)"
DestinationFiles="@(_ResolvedFileToPublishPreserveNewest->'$(PublishDir)%(RelativePath)')"
OverwriteReadOnlyFiles="$(OverwriteReadOnlyFiles)"
Retries="$(CopyRetryCount)"
RetryDelayMilliseconds="$(CopyRetryDelayMilliseconds)"
UseHardlinksIfPossible="$(CreateHardLinksForPublishFilesIfPossible)"
UseSymboliclinksIfPossible="$(CreateSymbolicLinksForPublishFilesIfPossible)">
<Output TaskParameter="DestinationFiles" ItemName="FileWrites"/>
</Copy>
</Target>
<!--
============================================================
_CopyResolvedFilesToPublishAlways
Copy _ResolvedFileToPublishAlways items to the publish directory
============================================================
-->
<Target Name="_CopyResolvedFilesToPublishAlways"
DependsOnTargets="_ComputeResolvedFilesToPublishTypes">
<!--
Use SkipUnchangedFiles to prevent unnecessary file copies. The copy will occur if the
destination doesn't exist, the source is newer than the destination, or if the source and
destination differ by file size.
-->
<Copy SourceFiles = "@(_ResolvedFileToPublishAlways)"
DestinationFiles="@(_ResolvedFileToPublishAlways->'$(PublishDir)%(RelativePath)')"
SkipUnchangedFiles="$(SkipCopyUnchangedFiles)"
OverwriteReadOnlyFiles="$(OverwriteReadOnlyFiles)"
Retries="$(CopyRetryCount)"
RetryDelayMilliseconds="$(CopyRetryDelayMilliseconds)"
UseHardlinksIfPossible="$(CreateHardLinksForPublishFilesIfPossible)"
UseSymboliclinksIfPossible="$(CreateSymbolicLinksForPublishFilesIfPossible)">
<Output TaskParameter="DestinationFiles" ItemName="FileWrites"/>
</Copy>
</Target>
<UsingTask TaskName="ResolveReadyToRunCompilers" AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<Target Name="ResolveReadyToRunCompilers">
<ResolveReadyToRunCompilers RuntimePacks="@(ResolvedRuntimePack)"
Crossgen2Packs="@(ResolvedCrossgen2Pack)"
TargetingPacks="@(ResolvedTargetingPack)"
RuntimeGraphPath="$(BundledRuntimeIdentifierGraphFile)"
NETCoreSdkRuntimeIdentifier="$(NETCoreSdkRuntimeIdentifier)"
EmitSymbols="$(PublishReadyToRunEmitSymbols)"
ReadyToRunUseCrossgen2="$(PublishReadyToRunUseCrossgen2)"
PerfmapFormatVersion="$(PublishReadyToRunPerfmapFormatVersion)">
<Output TaskParameter="CrossgenTool" ItemName="CrossgenTool" />
<Output TaskParameter="Crossgen2Tool" ItemName="Crossgen2Tool" />
</ResolveReadyToRunCompilers>
</Target>
<!--
============================================================
_ComputeResolvedFilesToPublishTypes
Splits ResolvedFileToPublish items into 'PreserveNewest' and 'Always' buckets.
Then further splits those into 'Unbundled' buckets based on the single file setting.
============================================================
-->
<Target Name="_ComputeResolvedFilesToPublishTypes">
<ItemGroup>
<_ResolvedFileToPublishPreserveNewest Include="@(ResolvedFileToPublish)"
Condition="'%(ResolvedFileToPublish.CopyToPublishDirectory)'=='PreserveNewest'" />
<_ResolvedFileToPublishAlways Include="@(ResolvedFileToPublish)"
Condition="'%(ResolvedFileToPublish.CopyToPublishDirectory)'=='Always'" />
</ItemGroup>
<ItemGroup>
<_ResolvedUnbundledFileToPublishPreserveNewest
Include="@(_ResolvedFileToPublishPreserveNewest)"
Condition="'$(PublishSingleFile)' != 'true' or
'%(_ResolvedFileToPublishPreserveNewest.ExcludeFromSingleFile)'=='true'" />
<_ResolvedUnbundledFileToPublishAlways
Include="@(_ResolvedFileToPublishAlways)"
Condition="'$(PublishSingleFile)' != 'true' or
'%(_ResolvedFileToPublishAlways.ExcludeFromSingleFile)'=='true'" />
</ItemGroup>
</Target>
<!--
============================================================
ComputeFilesToPublish
Gathers all the files that need to be copied to the publish directory, including R2R and ILLinker transformations
============================================================
-->
<Target Name="ComputeFilesToPublish"
DependsOnTargets="PrepareForPublish;
ComputeResolvedFilesToPublishList;
ILLink;
CreateReadyToRunImages;
GeneratePublishDependencyFile;
GenerateSingleFileBundle">
</Target>
<!--
============================================================
ILLink
Initially an empty placeholder target. When trimming, this
will be redefined to invoke ILLink to perform IL trimming.
The placeholder exists to allow other targets to depend on it for ordering purposes.
============================================================
-->
<Target Name="ILLink" />
<PropertyGroup>
<CopyBuildOutputToPublishDirectory Condition="'$(CopyBuildOutputToPublishDirectory)'==''">true</CopyBuildOutputToPublishDirectory>
<CopyOutputSymbolsToPublishDirectory Condition="'$(CopyOutputSymbolsToPublishDirectory)'==''">true</CopyOutputSymbolsToPublishDirectory>
<IncludeSymbolsInSingleFile Condition="'$(IncludeSymbolsInSingleFile)' == ''">false</IncludeSymbolsInSingleFile>
</PropertyGroup>
<UsingTask TaskName="ResolveOverlappingItemGroupConflicts" AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<!--
============================================================
ComputeResolvedFilesToPublishList
Gathers all the files that need to be copied to the publish directory.
============================================================
-->
<Target Name="ComputeResolvedFilesToPublishList"
DependsOnTargets="_ComputeResolvedCopyLocalPublishAssets;
_ComputeCopyToPublishDirectoryItems;
ComputeRefAssembliesToPublish">
<ItemGroup>
<!-- Copy the build product (.dll or .exe). -->
<ResolvedFileToPublish Include="@(IntermediateAssembly)"
Condition="'$(CopyBuildOutputToPublishDirectory)' == 'true'">
<RelativePath>@(IntermediateAssembly->'%(Filename)%(Extension)')</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Copy the deps file if using the build deps file. -->
<ResolvedFileToPublish Include="$(ProjectDepsFilePath)"
Condition="'$(GenerateDependencyFile)' == 'true' and '$(_UseBuildDependencyFile)' == 'true'">
<RelativePath>$(ProjectDepsFileName)</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Copy the runtime config file. -->
<ResolvedFileToPublish Include="$(ProjectRuntimeConfigFilePath)"
Condition="'$(GenerateRuntimeConfigurationFiles)' == 'true' and '$(PublishAot)' != 'true'">
<RelativePath>$(ProjectRuntimeConfigFileName)</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Copy the app.config (if any) -->
<ResolvedFileToPublish Include="@(AppConfigWithTargetPath)"
Condition="'$(CopyBuildOutputToPublishDirectory)' == 'true'">
<RelativePath>@(AppConfigWithTargetPath->'%(TargetPath)')</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Copy the debug information file (.pdb), if any -->
<ResolvedFileToPublish Include="@(_DebugSymbolsIntermediatePath)"
Condition="'$(_DebugSymbolsProduced)'=='true' and '$(CopyOutputSymbolsToPublishDirectory)'=='true'">
<RelativePath>@(_DebugSymbolsIntermediatePath->'%(Filename)%(Extension)')</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<ExcludeFromSingleFile Condition="'$(IncludeSymbolsInSingleFile)'!='true'">true</ExcludeFromSingleFile>
</ResolvedFileToPublish>
<!-- Copy satellite assemblies. -->
<ResolvedFileToPublish Include="@(IntermediateSatelliteAssembliesWithTargetPath)">
<RelativePath>%(IntermediateSatelliteAssembliesWithTargetPath.Culture)\%(Filename)%(Extension)</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Copy generated COM References. -->
<ResolvedFileToPublish Include="@(ReferenceComWrappersToCopyLocal)">
<RelativePath>%(Filename)%(Extension)</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
</ItemGroup>
<!-- Remove conflicting items that appear in both _ResolvedCopyLocalPublishAssets and ResolvedFileToPublish
to ensure that we don't get duplicate files in the publish output. -->
<ResolveOverlappingItemGroupConflicts ItemGroup1="@(_ResolvedCopyLocalPublishAssets->Distinct())"
ItemGroup2="@(ResolvedFileToPublish->Distinct())"
PreferredPackages="$(PackageConflictPreferredPackages)">
<Output TaskParameter="RemovedItemGroup1" ItemName="_ResolvedCopyLocalPublishAssetsRemoved" />
<Output TaskParameter="RemovedItemGroup2" ItemName="ResolvedFileToPublishRemoved" />
</ResolveOverlappingItemGroupConflicts>
<ItemGroup>
<_ResolvedCopyLocalPublishAssets Remove="@(_ResolvedCopyLocalPublishAssetsRemoved)"/>
<ResolvedFileToPublish Remove="@(ResolvedFileToPublishRemoved)"/>
<!-- Copy the resolved copy local publish assets. -->
<ResolvedFileToPublish Include="@(_ResolvedCopyLocalPublishAssets)">
<RelativePath>%(_ResolvedCopyLocalPublishAssets.DestinationSubDirectory)%(Filename)%(Extension)</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Copy the xml documentation (if enabled) -->
<ResolvedFileToPublish Include="@(FinalDocFile)"
Condition="'$(PublishDocumentationFile)' == 'true'">
<RelativePath>@(FinalDocFile->'%(Filename)%(Extension)')</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Copy all PackAsTool shims (if any) -->
<ResolvedFileToPublish Include="@(_EmbeddedApphostPaths->Distinct())">
<RelativePath>shims/%(_EmbeddedApphostPaths.ShimRuntimeIdentifier)/%(_EmbeddedApphostPaths.Filename)%(_EmbeddedApphostPaths.Extension)</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ResolvedFileToPublish>
<!-- Filter files for PublishSingleFiles scenario -->
<_FilesToDrop Include="@(ResolvedFileToPublish)"
Condition="'$(PublishSingleFile)' == 'true' and
'%(ResolvedFileToPublish.DropFromSingleFile)' == 'true'"/>
<ResolvedFileToPublish Remove="@(_FilesToDrop)"/>
</ItemGroup>
</Target>
<!--
============================================================
_ResolveCopyLocalAssetsForPublish
Resolves the assets from packages to copy locally for publish.
We can just use the build's copy local assets if we can reuse the build deps file.
============================================================
-->
<UsingTask TaskName="ResolveCopyLocalAssets" AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<Target Name="_ResolveCopyLocalAssetsForPublish"
DependsOnTargets="ResolveLockFileCopyLocalFiles;
_ComputeUseBuildDependencyFile;
_DefaultMicrosoftNETPlatformLibrary;
ResolveRuntimePackAssets;
_ComputePackageReferencePublish">
<!-- For future: Delete ResolveCopyLocalAssets task. Need to figure out how to get correct DestinationSubPath for
PreserveStoreLayout without this task, and how to handle RuntimeStorePackages. -->
<ResolveCopyLocalAssets AssetsFilePath="$(ProjectAssetsFile)"
TargetFramework="$(TargetFramework)"
RuntimeIdentifier="$(RuntimeIdentifier)"
PlatformLibraryName="$(MicrosoftNETPlatformLibrary)"
RuntimeFrameworks="@(RuntimeFramework)"
ExcludedPackageReferences="@(_ExcludeFromPublishPackageReference)"
RuntimeStorePackages="@(RuntimeStorePackages)"
PreserveStoreLayout="$(PreserveStoreLayout)"
ResolveRuntimeTargets="$(CopyLocalRuntimeTargetAssets)"
IsSelfContained="$(SelfContained)"
Condition="'$(PreserveStoreLayout)' == 'true' Or '@(RuntimeStorePackages)' != ''">
<Output TaskParameter="ResolvedAssets" ItemName="_ResolvedCopyLocalPublishAssets" />
</ResolveCopyLocalAssets>
<ItemGroup>
<_ResolvedCopyLocalPublishAssets Include="@(RuntimePackAsset)"
Condition="('$(SelfContained)' == 'true' Or '%(RuntimePackAsset.RuntimePackAlwaysCopyLocal)' == 'true') and '%(RuntimePackAsset.AssetType)' != 'pgodata'" />
</ItemGroup>
<ItemGroup Condition="'$(_UseBuildDependencyFile)' != 'true'">
<!-- Remove the apphost executable from publish copy local assets; we will copy the generated apphost instead -->
<_ResolvedCopyLocalPublishAssets Remove="@(_NativeRestoredAppHostNETCore)" />
</ItemGroup>
<ItemGroup Condition="'$(PreserveStoreLayout)' != 'true' And '@(RuntimeStorePackages)' == ''">
<_ResolvedCopyLocalPublishAssets Include="@(_ResolvedCopyLocalBuildAssets)"
Condition="'%(_ResolvedCopyLocalBuildAssets.CopyToPublishDirectory)' != 'false' "/>
</ItemGroup>
</Target>
<!--
============================================================
_ParseTargetManifestFiles
Parses the $(TargetManifestFiles) which contains a list of files into @(RuntimeStorePackages) items
which describes which packages should be excluded from publish since they are contained in the runtime store.
============================================================
-->
<UsingTask TaskName="ParseTargetManifests" AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<Target Name="_ParseTargetManifestFiles"
Condition="'$(TargetManifestFiles)' != ''"
Returns="@(RuntimeStorePackages)">
<ParseTargetManifests TargetManifestFiles="$(TargetManifestFiles)">
<Output TaskParameter="RuntimeStorePackages" ItemName="RuntimeStorePackages"/>
</ParseTargetManifests>
</Target>
<!--
============================================================
_FilterSatelliteResourcesForPublish
Filters the resolved resource assets for build to the given resource languages.
============================================================
-->
<Target Name="_FilterSatelliteResourcesForPublish"
Condition="'$(SatelliteResourceLanguages)' != ''">
<ItemGroup>
<_PublishSatelliteResources Include="@(_ResolvedCopyLocalPublishAssets)"
Condition="'%(_ResolvedCopyLocalPublishAssets.AssetType)' == 'resources'" />
</ItemGroup>
<JoinItems Left="@(_PublishSatelliteResources)" LeftKey="Culture" LeftMetadata="*"
Right="$(SatelliteResourceLanguages)" RightKey="" RightMetadata=""
ItemSpecToUse="Left">
<Output TaskParameter="JoinResult" ItemName="_FilteredPublishSatelliteResources" />
</JoinItems>
<ItemGroup Condition="'@(_PublishSatelliteResources)' != ''">
<_ResolvedCopyLocalPublishAssets Remove="@(_PublishSatelliteResources)" />
<_ResolvedCopyLocalPublishAssets Include="@(_FilteredPublishSatelliteResources)" />
</ItemGroup>
</Target>
<!--
============================================================
_ComputeResolvedCopyLocalPublishAssets
Computes the files from both project and package references.
============================================================
-->
<Target Name="_ComputeResolvedCopyLocalPublishAssets"
DependsOnTargets="_ResolveCopyLocalAssetsForPublish;
_FilterSatelliteResourcesForPublish">
<ItemGroup>
<_ResolvedCopyLocalPublishAssets Include="@(ReferenceCopyLocalPaths)"
Exclude="@(_ResolvedCopyLocalBuildAssets);@(RuntimePackAsset)"
Condition="('$(PublishReferencesDocumentationFiles)' == 'true' or '%(ReferenceCopyLocalPaths.Extension)' != '.xml') and '%(ReferenceCopyLocalPaths.Private)' != 'false'">
<DestinationSubPath>%(ReferenceCopyLocalPaths.DestinationSubDirectory)%(ReferenceCopyLocalPaths.Filename)%(ReferenceCopyLocalPaths.Extension)</DestinationSubPath>
</_ResolvedCopyLocalPublishAssets>
</ItemGroup>
</Target>
<!--
============================================================
_ComputeCopyToPublishDirectoryItems
============================================================
-->
<Target Name="_ComputeCopyToPublishDirectoryItems"
DependsOnTargets="GetCopyToPublishDirectoryItems">
<ItemGroup>
<ResolvedFileToPublish Include="@(_SourceItemsToCopyToPublishDirectoryAlways)">
<RelativePath>%(_SourceItemsToCopyToPublishDirectoryAlways.TargetPath)</RelativePath>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
<IsKeyOutput Condition="'%(_SourceItemsToCopyToPublishDirectoryAlways.FullPath)' == '$(AppHostIntermediatePath)'">True</IsKeyOutput>
</ResolvedFileToPublish>
<ResolvedFileToPublish Include="@(_SourceItemsToCopyToPublishDirectory)">
<RelativePath>%(_SourceItemsToCopyToPublishDirectory.TargetPath)</RelativePath>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<IsKeyOutput Condition="'%(_SourceItemsToCopyToPublishDirectory.FullPath)' == '$(AppHostIntermediatePath)'">True</IsKeyOutput>
</ResolvedFileToPublish>
</ItemGroup>
</Target>
<!--
============================================================
GetCopyToPublishDirectoryItems
Get all project items that may need to be transferred to the publish directory.
This includes baggage items from transitively referenced projects. It would appear
that this target computes full transitive closure of content items for all referenced
projects; however that is not the case. It only collects the content items from its
immediate children and not children of children.
See comment on GetCopyToOutputDirectoryItems, from which this logic was taken.
============================================================
-->
<Target Name="GetCopyToPublishDirectoryItems"
Returns="@(AllPublishItemsFullPathWithTargetPath)"
KeepDuplicateOutputs=" '$(MSBuildDisableGetCopyToPublishDirectoryItemsOptimization)' == '' "
DependsOnTargets="AssignTargetPaths;
DefaultCopyToPublishDirectoryMetadata;
_SplitProjectReferencesByFileExistence;
_GetProjectReferenceTargetFrameworkProperties">
<!-- In the general case, clients need very little of the metadata which is generated by invoking this target on this project and its children. For those
cases, we can immediately discard the unwanted metadata, reducing memory usage, particularly in very large and interconnected systems of projects.
However, if some client does require the original functionality, it is sufficient to set MSBuildDisableGetCopyToPublishDirectoryItemsOptimization to
a non-empty value and the original behavior will be restored. -->
<PropertyGroup Condition=" '$(MSBuildDisableGetCopyToPublishDirectoryItemsOptimization)' == '' ">
<_GCTPDIKeepDuplicates>false</_GCTPDIKeepDuplicates>
<_GCTPDIKeepMetadata>CopyToPublishDirectory;ExcludeFromSingleFile;TargetPath</_GCTPDIKeepMetadata>
</PropertyGroup>
<!-- Get items from child projects first. -->
<MSBuild Projects="@(_MSBuildProjectReferenceExistent)"
Targets="GetCopyToPublishDirectoryItems"
BuildInParallel="$(BuildInParallel)"
Properties="%(_MSBuildProjectReferenceExistent.SetConfiguration); %(_MSBuildProjectReferenceExistent.SetPlatform); %(_MSBuildProjectReferenceExistent.SetTargetFramework)"
Condition="'@(_MSBuildProjectReferenceExistent)' != '' and '$(_GetChildProjectCopyToPublishDirectoryItems)' == 'true' and '%(_MSBuildProjectReferenceExistent.Private)' != 'false'"
ContinueOnError="$(ContinueOnError)"
RemoveProperties="%(_MSBuildProjectReferenceExistent.GlobalPropertiesToRemove)$(_GlobalPropertiesToRemoveFromProjectReferences)">
<Output TaskParameter="TargetOutputs" ItemName="_AllChildProjectPublishItemsWithTargetPath"/>
</MSBuild>
<!-- Target outputs must be full paths because they will be consumed by a different project. -->
<ItemGroup>
<_SourceItemsToCopyToPublishDirectoryAlways KeepDuplicates=" '$(_GCTPDIKeepDuplicates)' != 'false' "
KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(_AllChildProjectPublishItemsWithTargetPath->'%(FullPath)')"
Condition="'%(_AllChildProjectPublishItemsWithTargetPath.CopyToPublishDirectory)'=='Always'"/>
<_SourceItemsToCopyToPublishDirectory KeepDuplicates=" '$(_GCTPDIKeepDuplicates)' != 'false' "
KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(_AllChildProjectPublishItemsWithTargetPath->'%(FullPath)')"
Condition="'%(_AllChildProjectPublishItemsWithTargetPath.CopyToPublishDirectory)'=='PreserveNewest'"/>
</ItemGroup>
<!-- Remove items which we will never again use - they just sit around taking up memory otherwise -->
<ItemGroup>
<_AllChildProjectPublishItemsWithTargetPath Remove="@(_AllChildProjectPublishItemsWithTargetPath)"/>
</ItemGroup>
<!-- Get items from this project last so that they will be copied last. -->
<ItemGroup>
<_SourceItemsToCopyToPublishDirectoryAlways KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(ContentWithTargetPath->'%(FullPath)')"
Condition="'%(ContentWithTargetPath.CopyToPublishDirectory)'=='Always'"/>
<_SourceItemsToCopyToPublishDirectory KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(ContentWithTargetPath->'%(FullPath)')"
Condition="'%(ContentWithTargetPath.CopyToPublishDirectory)'=='PreserveNewest'"/>
</ItemGroup>
<ItemGroup>
<_SourceItemsToCopyToPublishDirectoryAlways KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(EmbeddedResource->'%(FullPath)')"
Condition="'%(EmbeddedResource.CopyToPublishDirectory)'=='Always'"/>
<_SourceItemsToCopyToPublishDirectory KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(EmbeddedResource->'%(FullPath)')"
Condition="'%(EmbeddedResource.CopyToPublishDirectory)'=='PreserveNewest'"/>
</ItemGroup>
<ItemGroup>
<_CompileItemsToPublish Include="@(Compile->'%(FullPath)')"
Condition="'%(Compile.CopyToPublishDirectory)'=='Always' or '%(Compile.CopyToPublishDirectory)'=='PreserveNewest'"/>
</ItemGroup>
<AssignTargetPath Files="@(_CompileItemsToPublish)" RootFolder="$(MSBuildProjectDirectory)">
<Output TaskParameter="AssignedFiles" ItemName="_CompileItemsToPublishWithTargetPath" />
</AssignTargetPath>
<ItemGroup>
<_SourceItemsToCopyToPublishDirectoryAlways KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(_CompileItemsToPublishWithTargetPath)"
Condition="'%(_CompileItemsToPublishWithTargetPath.CopyToPublishDirectory)'=='Always'"/>
<_SourceItemsToCopyToPublishDirectory KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(_CompileItemsToPublishWithTargetPath)"
Condition="'%(_CompileItemsToPublishWithTargetPath.CopyToPublishDirectory)'=='PreserveNewest'"/>
</ItemGroup>
<ItemGroup>
<_SourceItemsToCopyToPublishDirectoryAlways KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(_NoneWithTargetPath->'%(FullPath)')"
Condition="'%(_NoneWithTargetPath.CopyToPublishDirectory)'=='Always'"/>
<_SourceItemsToCopyToPublishDirectory KeepMetadata="$(_GCTPDIKeepMetadata)"
Include="@(_NoneWithTargetPath->'%(FullPath)')"
Condition="'%(_NoneWithTargetPath.CopyToPublishDirectory)'=='PreserveNewest'"/>
</ItemGroup>
<ItemGroup>
<AllPublishItemsFullPathWithTargetPath Include="@(_SourceItemsToCopyToPublishDirectoryAlways->'%(FullPath)');@(_SourceItemsToCopyToPublishDirectory->'%(FullPath)')"/>
</ItemGroup>
</Target>
<!--
============================================================
DefaultCopyToPublishDirectoryMetadata
If CopyToPublishDirectory isn't set on these items, the value should be taken from CopyToOutputDirectory.
This way, projects can just set "CopyToOutputDirectory = Always/PreserveNewest" and by default the item will be copied
to both the build output and publish directories.
============================================================
-->
<Target Name="DefaultCopyToPublishDirectoryMetadata"
DependsOnTargets="AssignTargetPaths"
Condition=" '$(DefaultCopyToPublishDirectoryMetadata)' == 'true' ">
<ItemGroup>
<ContentWithTargetPath Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='Always' and '%(ContentWithTargetPath.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</ContentWithTargetPath>
<ContentWithTargetPath Condition="'%(ContentWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest' and '%(ContentWithTargetPath.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</ContentWithTargetPath>
<EmbeddedResource Condition="'%(EmbeddedResource.CopyToOutputDirectory)'=='Always' and '%(EmbeddedResource.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</EmbeddedResource>
<EmbeddedResource Condition="'%(EmbeddedResource.CopyToOutputDirectory)'=='PreserveNewest' and '%(EmbeddedResource.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</EmbeddedResource>
<Compile Condition="'%(Compile.CopyToOutputDirectory)'=='Always' and '%(Compile.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Compile>
<Compile Condition="'%(Compile.CopyToOutputDirectory)'=='PreserveNewest' and '%(Compile.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Compile>
<_NoneWithTargetPath Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='Always' and '%(_NoneWithTargetPath.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</_NoneWithTargetPath>
<_NoneWithTargetPath Condition="'%(_NoneWithTargetPath.CopyToOutputDirectory)'=='PreserveNewest' and '%(_NoneWithTargetPath.CopyToPublishDirectory)' == ''">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</_NoneWithTargetPath>
</ItemGroup>
</Target>
<PropertyGroup Condition="'$(SelfContained)' == 'true'">
<_ComputeManagedRuntimePackAssembliesIfSelfContained>_ComputeManagedRuntimePackAssemblies</_ComputeManagedRuntimePackAssembliesIfSelfContained>
</PropertyGroup>
<!-- Determine the managed assembly subset of ResolvedFileToPublish that should be post-processed by linker, and ready to run compilation -->
<Target Name="_ComputeAssembliesToPostprocessOnPublish"
DependsOnTargets="_ComputeUserRuntimeAssemblies;$(_ComputeManagedRuntimePackAssembliesIfSelfContained)">
<!--
Default set of files to post-process correspond to the items that would be designated
as managed runtime assemblies in .deps.json, and published to root of the application.
RuntimeTargets and satellite assemblies are excluded. Currently, both linker and ready
to run require a RID, so there will not be RuntimeTargets. Linker could conceptually
operate without a RID, but would not know how to handle multiple assemblies with same
identity.
-->
<ItemGroup>
<!-- Assemblies from packages -->
<_ManagedRuntimeAssembly Include="@(RuntimeCopyLocalItems)" />
<!-- Assemblies from other references -->
<_ManagedRuntimeAssembly Include="@(UserRuntimeAssembly)" />
<!-- Assembly produced by this project -->
<_ManagedRuntimeAssembly Include="@(IntermediateAssembly)" />
</ItemGroup>
<!-- Assemblies from runtime packs for self-contained apps -->
<ItemGroup Condition="'$(SelfContained)' == 'true'">
<_ManagedRuntimeAssembly Include="@(_ManagedRuntimePackAssembly)" />
</ItemGroup>
<!--
Match above with ResolvedFileToPublish. Some of above would have been excluded from publish in
various ways and should be excluded from the list of files to postprocess as well. Furthermore,
the metadata must match ResolvedFileToPublish as the tools modify or remove these items in that
list to implement their post-processing.
-->
<JoinItems Left="@(_ManagedRuntimeAssembly)" Right="@(ResolvedFileToPublish)" RightMetadata="*">
<Output TaskParameter="JoinResult" ItemName="_AssemblyToPostprocessOnPublish" />
</JoinItems>
<!--
Set PostprocessAssembly=true metadata on ResolvedFileToPublish, which will be honored by linker
and crossgen.
Assemblies injected into ResolvedFileToPublish outside the set above (such as razor views) are
responsible for setting this metadata to opt in to post-processing.
-->
<ItemGroup>
<ResolvedFileToPublish Remove="@(_AssemblyToPostprocessOnPublish)" />
<ResolvedFileToPublish Include="@(_AssemblyToPostprocessOnPublish)" PostprocessAssembly="true" />
</ItemGroup>
</Target>
<Target Name="_ComputeManagedRuntimePackAssemblies" Returns="@(_ManagedRuntimePackAssembly)">
<ItemGroup>
<!-- Special case for System.Private.Corelib due to https://github.com/dotnet/core-setup/issues/7728 -->
<_ManagedRuntimePackAssembly Include="@(RuntimePackAsset)"
Condition="'%(RuntimePackAsset.AssetType)' == 'runtime'
or '%(RuntimePackAsset.Filename)' == 'System.Private.Corelib'" />
</ItemGroup>
</Target>
<Target Name="_ComputeUseBuildDependencyFile"
DependsOnTargets="_ComputePackageReferencePublish;
_ParseTargetManifestFiles">
<!-- Check to see whether we can re-use the .deps.json file from the build for publish, or whether we have to
generate a different one. -->
<PropertyGroup>
<_TrimRuntimeAssets Condition="'$(PublishSingleFile)' == 'true' and '$(SelfContained)' == 'true'">true</_TrimRuntimeAssets>
<_UseBuildDependencyFile Condition="'@(_ExcludeFromPublishPackageReference)' == '' and
'@(RuntimeStorePackages)' == '' and
'$(PreserveStoreLayout)' != 'true' and
'$(PublishTrimmed)' != 'true' and
'$(_TrimRuntimeAssets)' != 'true'">true</_UseBuildDependencyFile>
</PropertyGroup>
</Target>
<!--
============================================================
GenerateSingleFileBundle
Bundle the ResolvedFileToPublish items into one file in PublishDir
(except those marked ExcludeFromSingleFile)
============================================================
-->
<Target Name="_ComputeFilesToBundle"
DependsOnTargets="_HandleFileConflictsForPublish"
Condition="'$(PublishSingleFile)' == 'true'">
<ItemGroup>
<_FilesToBundle Include="@(ResolvedFileToPublish)"
Condition="'%(ResolvedFileToPublish.ExcludeFromSingleFile)' != 'true'"/>
<ResolvedFileToPublish Remove="@(_FilesToBundle)"/>
</ItemGroup>
<PropertyGroup>
<PublishedSingleFileName>$(AssemblyName)$(_NativeExecutableExtension)</PublishedSingleFileName>
<PublishedSingleFilePath>$(PublishDir)$(PublishedSingleFileName)</PublishedSingleFilePath>
</PropertyGroup>
</Target>
<Target Name="PrepareForBundle"
DependsOnTargets="_ComputeFilesToBundle"
Condition="'$(PublishSingleFile)' == 'true'">
<ItemGroup>
<FilesToBundle Include="@(_FilesToBundle)"/>
</ItemGroup>
<PropertyGroup>
<AppHostFile>$(PublishedSingleFileName)</AppHostFile>
</PropertyGroup>
</Target>
<UsingTask TaskName="GenerateBundle" AssemblyFile="$(MicrosoftNETBuildTasksAssembly)" />
<Target Name="GenerateSingleFileBundle"
Condition="'$(PublishSingleFile)' == 'true'"
DependsOnTargets="_ComputeFilesToBundle;PrepareForBundle"
Inputs="@(FilesToBundle)"
Outputs="$(PublishedSingleFilePath)">
<PropertyGroup>
<TraceSingleFileBundler Condition="'$(TraceSingleFileBundler)' == ''">false</TraceSingleFileBundler>
<IncludeSymbolsInSingleFile Condition="'$(IncludeSymbolsInSingleFile)' == ''">false</IncludeSymbolsInSingleFile>
<IncludeAllContentForSelfExtract Condition="'$(IncludeAllContentForSelfExtract)' == ''">false</IncludeAllContentForSelfExtract>
<IncludeNativeLibrariesForSelfExtract Condition="'$(IncludeNativeLibrariesForSelfExtract)' == ''">$(IncludeAllContentForSelfExtract)</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile Condition="'$(EnableCompressionInSingleFile)' == ''">false</EnableCompressionInSingleFile>
</PropertyGroup>
<NETSdkError Condition="'$(IncludeAllContentForSelfExtract)' == 'true' And '$(IncludeNativeLibrariesForSelfExtract)' != 'true'"
ResourceName="CannotIncludeAllContentButNotNativeLibrariesInSingleFile" />
<GenerateBundle FilesToBundle="@(FilesToBundle)"
AppHostName="$(PublishedSingleFileName)"
IncludeSymbols="$(IncludeSymbolsInSingleFile)"
EnableCompressionInSingleFile="$(EnableCompressionInSingleFile)"
IncludeNativeLibraries="$(IncludeNativeLibrariesForSelfExtract)"
IncludeAllContent="$(IncludeAllContentForSelfExtract)"
TargetFrameworkVersion="$(_TargetFrameworkVersionWithoutV)"
RuntimeIdentifier="$(RuntimeIdentifier)"
OutputDir="$(PublishDir)"
ShowDiagnosticOutput="$(TraceSingleFileBundler)">
<Output TaskParameter="ExcludedFiles" ItemName="_FilesExcludedFromBundle"/>
</GenerateBundle>
<ItemGroup>
<ResolvedFileToPublish Include="@(_FilesExcludedFromBundle)"/>
<!-- ResolvedFileToPublish shouldn't include PublishedSingleFilePath, since the single-file bundle is written directly to the publish directory -->
</ItemGroup>
</Target>
<!--
============================================================
_GeneratePublishDependencyFile
Generates the $(project).deps.json file for a published app
============================================================
-->
<Target Name="GeneratePublishDependencyFile"
DependsOnTargets="_ComputeUseBuildDependencyFile;
_DefaultMicrosoftNETPlatformLibrary;
_HandlePackageFileConflicts;
_HandlePackageFileConflictsForPublish;
_ComputeReferenceAssemblies;
_ComputeUserRuntimeAssemblies;
ResolveRuntimePackAssets;
_ComputePackageReferencePublish"
Condition="'$(GenerateDependencyFile)' == 'true' and '$(_UseBuildDependencyFile)' != 'true' and '$(PublishAot)' != 'true'">
<PropertyGroup>
<!-- IntermediateDepsFilePath is the location where the deps.json file is originally created
PublishDepsFilePath is the location where the deps.json resides when published
PublishDepsFilePath is empty (by default) for PublishSingleFile, since the deps.json file is embedde within the single-file bundle -->
<IntermediateDepsFilePath Condition=" '$(PublishDepsFilePath)' != ''">$(PublishDepsFilePath)</IntermediateDepsFilePath >
<IntermediateDepsFilePath Condition=" '$(PublishDepsFilePath)' == ''">$(IntermediateOutputPath)$(ProjectDepsFileName)</IntermediateDepsFilePath >
<PublishDepsFilePath Condition=" '$(PublishDepsFilePath)' == '' And '$(PublishSingleFile)' != 'true'">$(PublishDir)$(ProjectDepsFileName)</PublishDepsFilePath>
<_IsSingleFilePublish Condition="'$(PublishSingleFile)' == ''">false</_IsSingleFilePublish>
<_IsSingleFilePublish Condition="'$(PublishSingleFile)' != ''">$(PublishSingleFile)</_IsSingleFilePublish>
</PropertyGroup>
<ItemGroup>
<ResolvedCompileFileDefinitions Remove="@(_PublishConflictPackageFiles)" Condition="'%(_PublishConflictPackageFiles.ConflictItemType)' == 'Reference'" />
<RuntimeTargetsCopyLocalItems Remove="@(_PublishConflictPackageFiles)" Condition="'%(_PublishConflictPackageFiles.ConflictItemType)' != 'Reference'" />
<RuntimePackAsset Remove="@(_PublishConflictPackageFiles)" Condition="'%(_PublishConflictPackageFiles.ConflictItemType)' != 'Reference'" />
<_ResolvedNuGetFilesForPublish Include="@(NativeCopyLocalItems)" Condition="'%(NativeCopyLocalItems.CopyToPublishDirectory)' != 'false'" />
<_ResolvedNuGetFilesForPublish Include="@(ResourceCopyLocalItems)" Condition="'%(ResourceCopyLocalItems.CopyToPublishDirectory)' != 'false'" />
<_ResolvedNuGetFilesForPublish Include="@(RuntimeCopyLocalItems)" Condition="'%(RuntimeCopyLocalItems.CopyToPublishDirectory)' != 'false'" />
<_ResolvedNuGetFilesForPublish Remove="@(_PublishConflictPackageFiles)" Condition="'%(_PublishConflictPackageFiles.ConflictItemType)' != 'Reference'" />
</ItemGroup>
<GenerateDepsFile ProjectPath="$(MSBuildProjectFullPath)"
AssetsFilePath="$(ProjectAssetsFile)"