msbuild.exe aaa.csproj /t:restore
就是提示程序集不存在
net472的
如果是vs打开,点重新生成,又可以自己下载nuget依赖
如果是 dotnet 命令,的restore 只能用于 dotnetcore 程序,
为什么 msbuild 的不可以 restore 自己下载 nuget 依赖
所以经常的报错:
未能找到类型或命名空间名“DbSet<>”(是否缺少using 指令或程序集引用?)
msbuild 所在位置:
Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe
正常vs2019安装来的,
试试 How can I get MSBuild to restore any needed NuGet packages 中的方法
msbuild.exe aaa.csproj /t:restore -p:RestorePackagesConfig=true
为什么我的msbuild不能restore
msbuild.exe aaa.csproj /t:restore
就是提示程序集不存在
net472的
如果是vs打开,点重新生成,又可以自己下载nuget依赖
如果是 dotnet 命令,的restore 只能用于 dotnetcore 程序,
为什么 msbuild 的不可以 restore 自己下载 nuget 依赖
所以经常的报错:
未能找到类型或命名空间名“DbSet<>”(是否缺少using 指令或程序集引用?)
msbuild 所在位置:
Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\MSBuild.exe
正常vs2019安装来的,