You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, consumer projects (.csproj) must be SDK-style (those that start with <Project Sdk="..."> and reference packages through <PackageReference>). This means that .NET Core and NETStandard consumer projects are covered.
The classic .NET Framework projects (packages.config style) should be supported as well.
There are differences between the two styles:
SDK-style: packages are used directly from user-level cache (~/.nuget/packages)
packages.config style: packages are placed under packages subfolder in solution. This style closely resembles node_modules and allows scoping the link to specific solution.
The text was updated successfully, but these errors were encountered:
felix-b
changed the title
Support projects in .NET Framework format
Support consumer projects in .NET Framework (packages.config style) format
May 28, 2019
Currently, consumer projects (.csproj) must be SDK-style (those that start with
<Project Sdk="...">
and reference packages through<PackageReference>
). This means that .NET Core and NETStandard consumer projects are covered.The classic .NET Framework projects (
packages.config
style) should be supported as well.There are differences between the two styles:
packages
subfolder in solution. This style closely resemblesnode_modules
and allows scoping the link to specific solution.The text was updated successfully, but these errors were encountered: