From c2d527e1a402a87b4983b509242472232e7e769a Mon Sep 17 00:00:00 2001 From: "Adam R. Grey" Date: Tue, 8 Jun 2021 07:02:34 -0400 Subject: [PATCH] initial why would bin and obj not be in the default gitigonre --- .gitignore | 2 ++ .vscode/launch.json | 26 +++++++++++++++++++++++ .vscode/tasks.json | 42 ++++++++++++++++++++++++++++++++++++++ Program.cs | 12 +++++++++++ directors-assistant.csproj | 9 ++++++++ 5 files changed, 91 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json create mode 100644 Program.cs create mode 100644 directors-assistant.csproj diff --git a/.gitignore b/.gitignore index b60c46d..78d58a9 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ !.vscode/launch.json !.vscode/extensions.json *.code-workspace +bin/ +obj/ # Local History for Visual Studio Code .history/ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..c40f6d0 --- /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}/bin/Debug/net5.0/directors-assistant.dll", + "args": [], + "cwd": "${workspaceFolder}", + // 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/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..4e54451 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,42 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "process", + "args": [ + "build", + "${workspaceFolder}/directors-assistant.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "publish", + "command": "dotnet", + "type": "process", + "args": [ + "publish", + "${workspaceFolder}/directors-assistant.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + }, + { + "label": "watch", + "command": "dotnet", + "type": "process", + "args": [ + "watch", + "run", + "${workspaceFolder}/directors-assistant.csproj", + "/property:GenerateFullPaths=true", + "/consoleloggerparameters:NoSummary" + ], + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..1623753 --- /dev/null +++ b/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace directors_assistant +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/directors-assistant.csproj b/directors-assistant.csproj new file mode 100644 index 0000000..49d259e --- /dev/null +++ b/directors-assistant.csproj @@ -0,0 +1,9 @@ + + + + Exe + net5.0 + directors_assistant + + +