commit b7aae9a04f400917a6d6a4a6d655b9cd79e6ea99 Author: mattia Date: Sat Feb 15 17:50:20 2025 +0100 feat: initial import diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869eb83 --- /dev/null +++ b/.gitignore @@ -0,0 +1,44 @@ +*.swp +*.*~ +project.lock.json +.DS_Store +*.pyc +nupkg/ + +# Visual Studio Code +.vscode/* +!.vscode/settings.json + +# Rider +.idea/ + +# Visual Studio +.vs/ + +# Fleet +.fleet/ + +# Code Rush +.cr/ + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +build/ +bld/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +msbuild.log +msbuild.err +msbuild.wrn diff --git a/InkBlot.sln b/InkBlot.sln new file mode 100644 index 0000000..fa4fb42 --- /dev/null +++ b/InkBlot.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InkBlot", "InkBlot\InkBlot.csproj", "{EDFCA854-0AF5-4C8F-8820-C328915B0FFE}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "InkBlotTestConsoleApp", "InkBlotTestConsoleApp\InkBlotTestConsoleApp.csproj", "{1BD86CDC-A93C-44EE-AA6B-E87E57FBC8AE}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EDFCA854-0AF5-4C8F-8820-C328915B0FFE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDFCA854-0AF5-4C8F-8820-C328915B0FFE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EDFCA854-0AF5-4C8F-8820-C328915B0FFE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EDFCA854-0AF5-4C8F-8820-C328915B0FFE}.Release|Any CPU.Build.0 = Release|Any CPU + {1BD86CDC-A93C-44EE-AA6B-E87E57FBC8AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1BD86CDC-A93C-44EE-AA6B-E87E57FBC8AE}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1BD86CDC-A93C-44EE-AA6B-E87E57FBC8AE}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1BD86CDC-A93C-44EE-AA6B-E87E57FBC8AE}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/InkBlot/Class1.cs b/InkBlot/Class1.cs new file mode 100644 index 0000000..a22f19b --- /dev/null +++ b/InkBlot/Class1.cs @@ -0,0 +1,5 @@ +namespace InkBlot; + +public class Class1 +{ +} \ No newline at end of file diff --git a/InkBlot/InkBlot.csproj b/InkBlot/InkBlot.csproj new file mode 100644 index 0000000..17b910f --- /dev/null +++ b/InkBlot/InkBlot.csproj @@ -0,0 +1,9 @@ + + + + net9.0 + enable + enable + + + diff --git a/InkBlotTestConsoleApp/InkBlotTestConsoleApp.csproj b/InkBlotTestConsoleApp/InkBlotTestConsoleApp.csproj new file mode 100644 index 0000000..85b4959 --- /dev/null +++ b/InkBlotTestConsoleApp/InkBlotTestConsoleApp.csproj @@ -0,0 +1,10 @@ + + + + Exe + net9.0 + enable + enable + + + diff --git a/InkBlotTestConsoleApp/Program.cs b/InkBlotTestConsoleApp/Program.cs new file mode 100644 index 0000000..e5dff12 --- /dev/null +++ b/InkBlotTestConsoleApp/Program.cs @@ -0,0 +1,3 @@ +// See https://aka.ms/new-console-template for more information + +Console.WriteLine("Hello, World!"); \ No newline at end of file