SharedFrameworkOnly.props 1.2 KB

123456789101112131415161718192021222324252627
  1. <!--
  2. This lists all assemblies which are part of the Microsoft.AspNetCore.App shared framework
  3. and should not ship as NuGet packages.
  4. -->
  5. <Project>
  6. <Import Project="..\src\Framework\Microsoft.AspNetCore.App.props" />
  7. <ItemGroup>
  8. <!-- Packages to be removed from the shared framework but not done yet due to JSON.net dependency. -->
  9. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.JsonPatch" />
  10. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson" />
  11. <!-- Assemblies required by components and WebAssembly -->
  12. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.Components" />
  13. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.Components.Browser" />
  14. <!-- Assemblies required by the SignalR client. -->
  15. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.Http.Features" />
  16. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.SignalR.Common" />
  17. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.Connections.Abstractions" />
  18. <SharedFrameworkAndPackage Include="Microsoft.AspNetCore.Http.Connections.Common" />
  19. <SharedFrameworkOnlyPackage Include="@(Dependency)" Exclude="@(SharedFrameworkAndPackage)" />
  20. </ItemGroup>
  21. </Project>