# AspDotNetCoreLesson **Repository Path**: wxpcc/AspDotNetCoreLesson ## Basic Information - **Project Name**: AspDotNetCoreLesson - **Description**: asp.net core项目实践,config,middleware,docker - **Primary Language**: C# - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-03-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #AspDotNetCore实践分享 目前实践有三部分 1. [项目初始化](https://git.oschina.net/wxpcc/AspDotNetCoreLesson/tree/master/GettingStart) 1. [不同环境配置](https://git.oschina.net/wxpcc/AspDotNetCoreLesson/tree/master/Config) 1. [中间件的开发](https://git.oschina.net/wxpcc/AspDotNetCoreLesson/tree/master/MiddlerWare) > 项目切换时记得调整`.vscode/launch.json`配置 Configurations里的program 节点和cwd节点 ```javascript { "version": "0.2.0", "configurations": [ { "name": ".NET Core Launch (web)", "type": "coreclr", "request": "launch", "preLaunchTask": "build", "program": "${workspaceRoot}\\MiddlerWare\\bin\\Debug\\netcoreapp1.1\\MiddlerWare.dll", "args": [], "cwd": "${workspaceRoot}\\MiddlerWare", "stopAtEntry": false, "internalConsoleOptions": "openOnSessionStart", "launchBrowser": { "enabled": true, "args": "${auto-detect-url}", "windows": { "command": "cmd.exe", "args": "/C start ${auto-detect-url}" }, "osx": { "command": "open" }, "linux": { "command": "xdg-open" } }, "env": { "ASPNETCORE_ENVIRONMENT": "test" }, "sourceFileMap": { "/Views": "${workspaceRoot}/Views" } }, { "name": ".NET Core Attach", "type": "coreclr", "request": "attach", "processId": "${command:pickProcess}" } ] } ```