From f484c82825a7ab62e2cb3bfb27d1d530a59253b9 Mon Sep 17 00:00:00 2001 From: Zhenka133 Date: Mon, 14 Feb 2022 15:55:55 +0300 Subject: [PATCH 1/4] init commit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e58af8a..6c6bbeb 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Tprogramming_42_2020 - +Митрофанова Евгения Master branch :) \ No newline at end of file From 828e2aeb9f4f4be7b6590b74a7916261c0e655c4 Mon Sep 17 00:00:00 2001 From: Zhenka133 Date: Wed, 2 Mar 2022 08:15:51 +0300 Subject: [PATCH 2/4] add name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e58af8a..c55f9da 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Tprogramming_42_2020 - +Mitrofanova Zhenka Master branch :) \ No newline at end of file From dbdb60d592b419461ba5209b69cd3d740b4d95ab Mon Sep 17 00:00:00 2001 From: Zhenka133 Date: Wed, 2 Mar 2022 08:35:08 +0300 Subject: [PATCH 3/4] add name add --- Programs/1.cs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Programs/1.cs diff --git a/Programs/1.cs b/Programs/1.cs new file mode 100644 index 0000000..9129370 --- /dev/null +++ b/Programs/1.cs @@ -0,0 +1,2 @@ +using System; +namespace Programs From d7ae6d4d97f2f45d80ebcb4110e0878320405999 Mon Sep 17 00:00:00 2001 From: Zhenka133 Date: Wed, 2 Mar 2022 09:00:27 +0300 Subject: [PATCH 4/4] For me For me --- .vscode/launch.json | 26 ++++++++++++++++ .vscode/settings.json | 2 +- .vscode/tasks.json | 41 ++++++++++++++++++++++++++ CourseApp.Tests/.vscode/launch.json | 24 +++++++++++++++ CourseApp.Tests/.vscode/tasks.json | 41 ++++++++++++++++++++++++++ CourseApp.Tests/CourseApp.Tests.csproj | 2 +- CourseApp/.vscode/launch.json | 13 ++++---- CourseApp/.vscode/tasks.json | 5 ++-- CourseApp/CourseApp.csproj | 2 +- 9 files changed, 143 insertions(+), 13 deletions(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json create mode 100644 CourseApp.Tests/.vscode/launch.json create mode 100644 CourseApp.Tests/.vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ef74c12 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,26 @@ +{ + "version": "0.2.0", + "configurations": [ + { + // Use IntelliSense to find out which attributes exist for C# debugging + // Use hover for the description of the existing attributes + // For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md + "name": ".NET Core Launch (console)", + "type": "coreclr", + "request": "launch", + "preLaunchTask": "build", + // If you have changed target frameworks, make sure to update the program path. + "program": "${workspaceFolder}/CourseApp/bin/Debug/netcoreapp2.1/CourseApp.dll", + "args": [], + "cwd": "${workspaceFolder}/CourseApp", + // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index bf78e73..d98be0d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -5,6 +5,6 @@ "**/CVS": true, "**/.DS_Store": true, "CourseApp": true, - "CourseApp.test":true, + "CourseApp.Tests":true, } } \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..742612d --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/CourseApp/CourseApp.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/CourseApp/CourseApp.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/CourseApp/CourseApp.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/CourseApp.Tests/.vscode/launch.json b/CourseApp.Tests/.vscode/launch.json new file mode 100644 index 0000000..afe0d1d --- /dev/null +++ b/CourseApp.Tests/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // Используйте IntelliSense, чтобы узнать о возможных атрибутах. + // Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов. + // Для получения дополнительной информации посетите: 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}/bin/Debug/netcoreapp3.1/CourseApp.Tests.dll", + "args": [], + "cwd": "${workspaceFolder}", + "console": "internalConsole", + "stopAtEntry": false + }, + { + "name": ".NET Core Attach", + "type": "coreclr", + "request": "attach" + } + ] +} \ No newline at end of file diff --git a/CourseApp.Tests/.vscode/tasks.json b/CourseApp.Tests/.vscode/tasks.json new file mode 100644 index 0000000..e83fdae --- /dev/null +++ b/CourseApp.Tests/.vscode/tasks.json @@ -0,0 +1,41 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/CourseApp.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/CourseApp.Tests.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "--project", + "${workspaceFolder}/CourseApp.Tests.csproj" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/CourseApp.Tests/CourseApp.Tests.csproj b/CourseApp.Tests/CourseApp.Tests.csproj index ae46394..79653f6 100644 --- a/CourseApp.Tests/CourseApp.Tests.csproj +++ b/CourseApp.Tests/CourseApp.Tests.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.1 True 1573,1591,1701;1702;1705 false diff --git a/CourseApp/.vscode/launch.json b/CourseApp/.vscode/launch.json index 208ea3a..0a99e57 100644 --- a/CourseApp/.vscode/launch.json +++ b/CourseApp/.vscode/launch.json @@ -1,7 +1,7 @@ { - // 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 + // Используйте IntelliSense, чтобы узнать о возможных атрибутах. + // Наведите указатель мыши, чтобы просмотреть описания существующих атрибутов. + // Для получения дополнительной информации посетите: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { @@ -9,17 +9,16 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "build", - "program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/CourseApp.dll", + "program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/CourseApp.dll", "args": [], "cwd": "${workspaceFolder}", - "console": "internalConsole", + "console": "integratedTerminal", "stopAtEntry": false }, { "name": ".NET Core Attach", "type": "coreclr", - "request": "attach", - "processId": "${command:pickProcess}" + "request": "attach" } ] } \ No newline at end of file diff --git a/CourseApp/.vscode/tasks.json b/CourseApp/.vscode/tasks.json index f8c71cd..e104be6 100644 --- a/CourseApp/.vscode/tasks.json +++ b/CourseApp/.vscode/tasks.json @@ -32,9 +32,8 @@ "args": [ "watch", "run", - "${workspaceFolder}/CourseApp.csproj", - "/property:GenerateFullPaths=true", - "/consoleloggerparameters:NoSummary" + "--project", + "${workspaceFolder}/CourseApp.csproj" ], "problemMatcher": "$msCompile" } diff --git a/CourseApp/CourseApp.csproj b/CourseApp/CourseApp.csproj index 9551450..44eee5b 100644 --- a/CourseApp/CourseApp.csproj +++ b/CourseApp/CourseApp.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.1 + netcoreapp3.1 True 1573,1591,1701;1702;1705;