随笔分类 - netcore
摘要:launch.json { "version": "0.2.0", "configurations": [ { "name": ".NET Core Launch (web)", "type": "coreclr", "request": "launch", "preLaunchTask": "bu
阅读全文
摘要:What does the dotnet nuget list source command returns? If it's empty, it might be an issue with your NuGet sources. You can try dotnet nuget add sour
阅读全文
摘要:https://www.cnblogs.com/lyhbky/p/13931619.html
阅读全文
摘要:一、前期准备 (1)发布项目程序 (2)ASP.NET Core Runtime 我这里用到的是3.1版本 https://dotnet.microsoft.com/download/dotnet-core/3.1 检查安装是否成功 dotnet --info 重启IIS服务 net stop wa
阅读全文
摘要:如何再vscode调试net framework程序(非netcore) launch.json 配置如下: { "version": "0.2.0", "configurations": [ { "name": "MyLauncher", //调试器名称 "type":"clr", //解析命令
阅读全文
摘要:1、创建MVC项目 dotnet new mvc -o MvcMovie 2、信任https开发证书(linux无效) dotnet dev-certs https --trust 3、添加nuget包 (1)通过命令行 dotnet add package 包名 (2)通过vscode nuget
阅读全文
摘要:需要更新dotnet tool,使用的命令为: dotnet tool update --global dotnet-ef --version 3.0.0-preview7.19362.6
阅读全文