随笔分类 -  netcore

摘要:launch.json { "version": "0.2.0", "configurations": [ { "name": ".NET Core Launch (web)", "type": "coreclr", "request": "launch", "preLaunchTask": "bu 阅读全文
posted @ 2024-01-20 11:31 榕树下的回忆 阅读(54) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2024-01-20 11:00 榕树下的回忆 阅读(79) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/lyhbky/p/13931619.html 阅读全文
posted @ 2020-11-28 19:51 榕树下的回忆 阅读(43) 评论(0) 推荐(0) 编辑
摘要:一、前期准备 (1)发布项目程序 (2)ASP.NET Core Runtime 我这里用到的是3.1版本 https://dotnet.microsoft.com/download/dotnet-core/3.1 检查安装是否成功 dotnet --info 重启IIS服务 net stop wa 阅读全文
posted @ 2020-07-28 18:36 榕树下的回忆 阅读(122) 评论(0) 推荐(0) 编辑
摘要:如何再vscode调试net framework程序(非netcore) launch.json 配置如下: { "version": "0.2.0", "configurations": [ { "name": "MyLauncher", //调试器名称 "type":"clr", //解析命令 阅读全文
posted @ 2020-07-21 10:29 榕树下的回忆 阅读(3270) 评论(1) 推荐(0) 编辑
摘要:1、创建MVC项目 dotnet new mvc -o MvcMovie 2、信任https开发证书(linux无效) dotnet dev-certs https --trust 3、添加nuget包 (1)通过命令行 dotnet add package 包名 (2)通过vscode nuget 阅读全文
posted @ 2020-04-23 10:14 榕树下的回忆 阅读(277) 评论(0) 推荐(0) 编辑
摘要:需要更新dotnet tool,使用的命令为: dotnet tool update --global dotnet-ef --version 3.0.0-preview7.19362.6 阅读全文
posted @ 2020-04-22 14:30 榕树下的回忆 阅读(234) 评论(0) 推荐(0) 编辑