This commit is contained in:
2025-08-30 10:24:51 +02:00
commit 79d048f2f8
4 changed files with 33 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/

16
Org2Ics.sln Normal file
View File

@@ -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

10
Org2Ics/Org2Ics.csproj Normal file
View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

2
Org2Ics/Program.cs Normal file
View File

@@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");