diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ff5b82b --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + "program": "${workspaceFolder}/DriveKeepAlive/bin/Debug/net6.0-windows/DriveKeepAlive.dll", + "args": [], + "cwd": "${workspaceFolder}/DriveKeepAlive", + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..baecefe --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/DriveKeepAlive/DriveKeepAlive.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/DriveKeepAlive/DriveKeepAlive.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/DriveKeepAlive/DriveKeepAlive.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/DriveKeepAlive/DriveKeepAlive.csproj b/DriveKeepAlive/DriveKeepAlive.csproj index ae1a765..2ecd809 100644 --- a/DriveKeepAlive/DriveKeepAlive.csproj +++ b/DriveKeepAlive/DriveKeepAlive.csproj @@ -1,122 +1,27 @@ - - - + - Debug - AnyCPU - {82AD4031-F25A-4317-990B-80E8BFA0B5A2} + net6.0-windows WinExe - Properties - DriveKeepAlive - DriveKeepAlive - v4.0 - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + false + true + true Resources\App-Icon.ico - - - - - - - - - - 4.0 - - - - - - - - MSBuild:Compile - Designer - - - True - True - AppSettings.settings - - - - MSBuild:Compile - Designer - - - App.xaml - Code - - - MainWindow.xaml - Code - - - - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - - SettingsSingleFileGenerator - AppSettings.Designer.cs - - - SettingsSingleFileGenerator - Settings.Designer.cs - - + + + + all + + + - - \ No newline at end of file