|
@@ -9,6 +9,7 @@
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
|
|
|
<UseWPF>true</UseWPF>
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
+ <IncludeBuildOutput>false</IncludeBuildOutput>
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
@@ -63,5 +64,27 @@
|
|
|
<None Update="Linq\Observable\Zip.Generated.tt" Generator="TextTemplatingFileGenerator" LastGenOutput="Zip.Generated.cs" />
|
|
|
<Compile Update="Linq\Observable\Zip.Generated.cs" DesignTime="True" AutoGen="True" DependentUpon="Zip.Generated.tt" />
|
|
|
</ItemGroup>
|
|
|
+
|
|
|
+ <PropertyGroup>
|
|
|
+ <TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);RemoveNetCoreApp3FromNuGet</TargetsForTfmSpecificBuildOutput>
|
|
|
+ </PropertyGroup>
|
|
|
+
|
|
|
+ <!-- We remove the output from the nuget so it doesn't wind up in the \lib folder -->
|
|
|
+ <Target Name="RemoveNetCoreApp3FromNuGet" DependsOnTargets="BuiltProjectOutputGroup;DocumentationProjectOutputGroup" Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
|
|
|
+
|
|
|
+ <ItemGroup>
|
|
|
+ <BuiltProjectOutputGroupOutput Remove="@(BuiltProjectOutputGroupOutput)" />
|
|
|
+ <DocumentationProjectOutputGroupOutput Remove="@(DocumentationProjectOutputGroupOutput)" />
|
|
|
+ </ItemGroup>
|
|
|
+
|
|
|
+ </Target>
|
|
|
+
|
|
|
+
|
|
|
+ <ItemGroup>
|
|
|
+ <None Include="bin\$(Configuration)\netcoreapp3.0\*.xml" PackagePath="buildTransitive\netcoreapp3.0" Pack="true" />
|
|
|
+ <None Include="bin\$(Configuration)\netcoreapp3.0\*.dll" PackagePath="buildTransitive\netcoreapp3.0" Pack="true" />
|
|
|
+ <None Include="build\_._" PackagePath="lib\netcoreapp3.0" Pack="true" />
|
|
|
+ <None Include="build\System.Reactive.targets" PackagePath="buildTransitive\netcoreapp3.0" Pack="true" />
|
|
|
+ </ItemGroup>
|
|
|
|
|
|
</Project>
|