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