File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Rx.NET/Source/src/System.Reactive Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 66
66
</ItemGroup >
67
67
68
68
<PropertyGroup >
69
- <TargetsForTfmSpecificBuildOutput >$(TargetsForTfmSpecificBuildOutput);RemoveNetCoreApp3FromNuGet</TargetsForTfmSpecificBuildOutput >
69
+ <TargetsForTfmSpecificBuildOutput >$(TargetsForTfmSpecificBuildOutput);RemoveNetCoreApp3FromNuGet</TargetsForTfmSpecificBuildOutput >
70
+ <TargetsForTfmSpecificContentInPackage >$(TargetsForTfmSpecificContentInPackage);AddNetCore3ToNuGet</TargetsForTfmSpecificContentInPackage >
70
71
</PropertyGroup >
71
72
72
73
<!-- We remove the output from the nuget so it doesn't wind up in the \lib folder -->
73
74
<Target Name =" RemoveNetCoreApp3FromNuGet" DependsOnTargets =" BuiltProjectOutputGroup;DocumentationProjectOutputGroup" Condition =" '$(TargetFramework)' == 'netcoreapp3.0'" >
74
-
75
75
<ItemGroup >
76
76
<!-- Before clearing the output groups, add them to None for packing -->
77
- <None Include =" @(BuiltProjectOutputGroupOutput);@(DocumentationProjectOutputGroupOutput)" PackagePath =" build\netcoreapp3.0" Pack = " true " />
77
+ <ItemsToAddToNuGet Include =" @(BuiltProjectOutputGroupOutput);@(DocumentationProjectOutputGroupOutput)" PackagePath =" build\netcoreapp3.0" />
78
78
79
79
<BuiltProjectOutputGroupOutput Remove =" @(BuiltProjectOutputGroupOutput)" />
80
80
<DocumentationProjectOutputGroupOutput Remove =" @(DocumentationProjectOutputGroupOutput)" />
81
81
</ItemGroup >
82
-
82
+ </Target >
83
+
84
+ <Target Name =" AddNetCore3ToNuGet" Condition =" '$(TargetFramework)' == 'netcoreapp3.0'" >
85
+ <ItemGroup >
86
+ <!-- Add the removed build output to the build\netcoreapp3.0 folder -->
87
+ <TfmSpecificPackageFileWithRecursiveDir Include =" @(ItemsToAddToNuGet)" PackagePath =" build\netcoreapp3.0" />
88
+ </ItemGroup >
83
89
</Target >
84
90
85
91
<ItemGroup >
You can’t perform that action at this time.
0 commit comments