diff --git a/.gitignore b/.gitignore index f0e5135..4c37d36 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /obj /*.user /Properties/PublishProfiles/*.user +/.vscode diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index f2f79ce..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - // 使用 IntelliSense 找出 C# 调试存在哪些属性 - // 将悬停用于现有属性的说明 - // 有关详细信息,请访问 https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md。 - "name": ".NET Core Launch (web)", - "type": "coreclr", - "request": "launch", - "preLaunchTask": "build", - // 如果已更改目标框架,请确保更新程序路径。 - "program": "${workspaceFolder}/bin/Debug/net8.0/AutoNotificatPhone.dll", - "args": [], - "cwd": "${workspaceFolder}", - "stopAtEntry": false, - // 启用在启动 ASP.NET Core 时启动 Web 浏览器。有关详细信息: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser - "serverReadyAction": { - "action": "openExternally", - "pattern": "\\bNow listening on:\\s+(https?://\\S+)" - }, - "env": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "sourceFileMap": { - "/Views": "${workspaceFolder}/Views" - } - }, - { - "name": ".NET Core Attach", - "type": "coreclr", - "request": "attach" - } - ] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index da19f96..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "build", - "command": "dotnet", - "type": "process", - "args": [ - "build", - "${workspaceFolder}/AutoNotificatPhone.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary;ForceNoAlign" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "publish", - "command": "dotnet", - "type": "process", - "args": [ - "publish", - "${workspaceFolder}/AutoNotificatPhone.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary;ForceNoAlign" - ], - "problemMatcher": "$msCompile" - }, - { - "label": "watch", - "command": "dotnet", - "type": "process", - "args": [ - "watch", - "run", - "--project", - "${workspaceFolder}/AutoNotificatPhone.csproj" - ], - "problemMatcher": "$msCompile" - } - ] -} \ No newline at end of file