Exclude non netcoreapp packages from OOB package (dotnet/corefx#37845)
authorViktor Hofer <viktor.hofer@microsoft.com>
Tue, 21 May 2019 19:16:50 +0000 (12:16 -0700)
committerGitHub <noreply@github.com>
Tue, 21 May 2019 19:16:50 +0000 (12:16 -0700)
Commit migrated from https://github.com/dotnet/corefx/commit/008d21c47c22b5757e09f6c3d346998004a0f985

src/libraries/pkg/Microsoft.Private.CoreFx.OOB/Microsoft.Private.CoreFx.OOB.pkgproj

index 0c3933b..def3754 100644 (file)
     </MSBuild>
 
     <ItemGroup>
+      <NonNetCoreAppPackage Include="Microsoft.Diagnostics.Tracing.EventSource.Redist" />
+      <NonNetCoreAppPackage Include="Microsoft.IO.Redist" />
+
       <Dependency Include="@(PrereleaseLibraryPackage)"
+                  Exclude="@(NonNetCoreAppPackage)"
                   Condition="!$([System.String]::new('%(Identity)').Contains('Private')) and !$([System.String]::new('%(Identity)').EndsWith('Experimental')) and !$([System.String]::new('%(Identity)').StartsWith('runtime.'))" />
     </ItemGroup>