From 79d048f2f84920bab1191cd37c1403ef9db66ccd Mon Sep 17 00:00:00 2001 From: luxick Date: Sat, 30 Aug 2025 10:24:51 +0200 Subject: [PATCH] Init --- .gitignore | 5 +++++ Org2Ics.sln | 16 ++++++++++++++++ Org2Ics/Org2Ics.csproj | 10 ++++++++++ Org2Ics/Program.cs | 2 ++ 4 files changed, 33 insertions(+) create mode 100644 .gitignore create mode 100644 Org2Ics.sln create mode 100644 Org2Ics/Org2Ics.csproj create mode 100644 Org2Ics/Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/Org2Ics.sln b/Org2Ics.sln new file mode 100644 index 0000000..9893bbb --- /dev/null +++ b/Org2Ics.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Org2Ics", "Org2Ics\Org2Ics.csproj", "{E9949BC0-0FC4-40CA-9165-EAB730FB6192}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E9949BC0-0FC4-40CA-9165-EAB730FB6192}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E9949BC0-0FC4-40CA-9165-EAB730FB6192}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E9949BC0-0FC4-40CA-9165-EAB730FB6192}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E9949BC0-0FC4-40CA-9165-EAB730FB6192}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Org2Ics/Org2Ics.csproj b/Org2Ics/Org2Ics.csproj new file mode 100644 index 0000000..85b4959 --- /dev/null +++ b/Org2Ics/Org2Ics.csproj @@ -0,0 +1,10 @@ + + + + Exe + net9.0 + enable + enable + + + diff --git a/Org2Ics/Program.cs b/Org2Ics/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/Org2Ics/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!");