From e5fbee13f90283fc369dfac7339511e34187bff9 Mon Sep 17 00:00:00 2001 From: nek0 Date: Wed, 22 Apr 2020 17:11:18 +0200 Subject: [PATCH] init source --- .gitignore | 3 +++ src/.vscode/launch.json | 22 ++++++++++++++++++++++ src/.vscode/tasks.json | 24 ++++++++++++++++++++++++ src/Bücherwurm.csproj | 8 ++++++++ src/Program.cs | 13 +++++++++++++ 5 files changed, 70 insertions(+) create mode 100644 .gitignore create mode 100644 src/.vscode/launch.json create mode 100644 src/.vscode/tasks.json create mode 100644 src/Bücherwurm.csproj create mode 100644 src/Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c17fba5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +src/bin/* +src/obj/* + diff --git a/src/.vscode/launch.json b/src/.vscode/launch.json new file mode 100644 index 0000000..127e1b0 --- /dev/null +++ b/src/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 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}/bin/Debug/netcoreapp1.1/Bücherwurm.dll>", + "args": [], + "cwd": "${workspaceFolder}", + "stopAtEntry": false, + "console": "internalConsole" + } + + + ] +} \ No newline at end of file diff --git a/src/.vscode/tasks.json b/src/.vscode/tasks.json new file mode 100644 index 0000000..31c32bd --- /dev/null +++ b/src/.vscode/tasks.json @@ -0,0 +1,24 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "2.0.0", + "tasks": [ + { + "label": "build", + "command": "dotnet", + "type": "shell", + "args": [ + "build", + // Ask dotnet build to generate full paths for file names. + "/property:GenerateFullPaths=true", + // Do not generate summary otherwise it leads to duplicate errors in Problems panel + "/consoleloggerparameters:NoSummary" + ], + "group": "build", + "presentation": { + "reveal": "silent" + }, + "problemMatcher": "$msCompile" + } + ] +} \ No newline at end of file diff --git a/src/Bücherwurm.csproj b/src/Bücherwurm.csproj new file mode 100644 index 0000000..e5e0e16 --- /dev/null +++ b/src/Bücherwurm.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp2.1 + + + diff --git a/src/Program.cs b/src/Program.cs new file mode 100644 index 0000000..8bf0539 --- /dev/null +++ b/src/Program.cs @@ -0,0 +1,13 @@ +using System; + +namespace Bücherwurm +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } + +} \ No newline at end of file