We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9092071 commit 73f7718Copy full SHA for 73f7718
src/packageSourceGenerator/PackageSourceGenerator.proj
@@ -328,10 +328,16 @@
328
<TargetingPackage Include="Microsoft.AspNetCore.App.Ref" />
329
<TargetingPackage Include="Microsoft.WindowsDesktop.App.Ref" />
330
</ItemGroup>
331
+
332
+ <!-- External packages aren't visited as they shouldn't be added to SBRP. -->
333
+ <ItemGroup>
334
+ <ExternalPackage Include="Newtonsoft.Json" />
335
+ </ItemGroup>
336
337
<ItemGroup>
338
<FilteredPackageDependency Include="@(PackageDependency)"
- Exclude="@(TargetingPackage)" />
339
+ Exclude="@(TargetingPackage);
340
+ @(ExternalPackage)" />
341
342
343
<MSBuild Projects="$(MSBuildThisFileFullPath)"
0 commit comments