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
Chnage that all references of the msbuild package are marked as private
assets, so they don't get added as dependency to the nuget package.
The dependecies field of the nuspec before the change:
```xml
<dependencies>
<group targetFramework="net6.0">
<dependency id="System.Text.Json" version="8.0.1" exclude="Build,Analyzers" />
</group>
<group targetFramework="net7.0">
<dependency id="System.Text.Json" version="8.0.1" exclude="Build,Analyzers" />
</group>
<group targetFramework="net8.0">
<dependency id="System.Text.Json" version="8.0.1" exclude="Build,Analyzers" />
</group>
</dependencies>
```
and afer the change the dependencies of the nuspec look like this:
```xml
<dependencies>
<group targetFramework="net6.0" />
<group targetFramework="net7.0" />
<group targetFramework="net8.0" />
</dependencies>
```
0 commit comments