首页 > 解决方案 > .NET Interactive Notebooks: How do I overwrite a nuget package version?

问题描述

I'm using .NET notebooks for VSCode. Current version: v1.0.2419011

I'm trying to experiment with a nuget package

I first loaded the package like

#r "nuget: Microsoft.CodeAnalysis.Workspaces.MSBuild"

Then I realized I needed a preview version

#r "nuget: Microsoft.CodeAnalysis.Workspaces.MSBuild, 4.0.0-3.final"

However, the notebook won't let me change versions of the package. It errors with

Error: Microsoft.CodeAnalysis.Workspaces.MSBuild version 4.0.0-1.final cannot be added because version 3.11.0 was added previously.

I don't see any options for clearing the packages or forcing an overwrite. How do I change package versions after previously loading a different version?

标签: .netvisual-studio-codejupyter-notebookf#-interactive

解决方案


Turns out the same question got asked in the project's Github issues, #342.

The answer is to restart the notebook kernel. Restarting the kernel is slightly out of the way. It can be run through the command search (ctrl + shift + p)

enter image description here


推荐阅读