VS Code 添加移除asp.net core项目引用
可以通过编辑.csproj文件来添加或者移除项目引用.
注意这里并没有智能提示, 最好是在Nuget网站(https://www.nuget.org/)搜索好相关包之后填写进来.
编辑结束之后, vscode会提示进行restore, 这就相当于在命令行执行dotnet restore命令.
此外, 也可以通过命令行来添加nuget包, 使用dotnet add package xxx命令来添加nuget包:
这时, csproj文件里就会出现AutoMapper的PackageReference: