From 52ee191972f51a0f97e6bff825cce68f53cafda5 Mon Sep 17 00:00:00 2001 From: Florian Stinglmayr Date: Wed, 30 Jul 2025 14:15:10 +0200 Subject: [PATCH] initial commit --- .gitignore | 3 +++ .gitmodules | 3 +++ EDPlayerJournal | 1 + edith.sln | 31 +++++++++++++++++++++++++++++++ src/Edith.cs | 9 +++++++++ src/edith.csproj | 10 ++++++++++ 6 files changed, 57 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 160000 EDPlayerJournal create mode 100644 edith.sln create mode 100644 src/Edith.cs create mode 100644 src/edith.csproj diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..292ab92 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +src/bin +src/obj +.vs/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..98c476e --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "EDPlayerJournal"] + path = EDPlayerJournal + url = git@aror.org:florian/EDPlayerJournal diff --git a/EDPlayerJournal b/EDPlayerJournal new file mode 160000 index 0000000..ec41c71 --- /dev/null +++ b/EDPlayerJournal @@ -0,0 +1 @@ +Subproject commit ec41c718b17a417fe04b61abee288f481466c127 diff --git a/edith.sln b/edith.sln new file mode 100644 index 0000000..27180a2 --- /dev/null +++ b/edith.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "edith", "src\edith.csproj", "{50890DE0-B2B9-CDA8-C696-480FAC830AC9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EDPlayerJournal", "EDPlayerJournal\EDPlayerJournal\EDPlayerJournal.csproj", "{5FAB13DD-1F3D-7390-D11A-F56738487BB3}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {50890DE0-B2B9-CDA8-C696-480FAC830AC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {50890DE0-B2B9-CDA8-C696-480FAC830AC9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {50890DE0-B2B9-CDA8-C696-480FAC830AC9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {50890DE0-B2B9-CDA8-C696-480FAC830AC9}.Release|Any CPU.Build.0 = Release|Any CPU + {5FAB13DD-1F3D-7390-D11A-F56738487BB3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5FAB13DD-1F3D-7390-D11A-F56738487BB3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5FAB13DD-1F3D-7390-D11A-F56738487BB3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5FAB13DD-1F3D-7390-D11A-F56738487BB3}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4076204B-7F00-4ABE-AB2A-3EECB49518D9} + EndGlobalSection +EndGlobal diff --git a/src/Edith.cs b/src/Edith.cs new file mode 100644 index 0000000..ce940da --- /dev/null +++ b/src/Edith.cs @@ -0,0 +1,9 @@ + +namespace Edith; + +public class Program +{ + public static void Main(string[] args) { + + } +} \ No newline at end of file diff --git a/src/edith.csproj b/src/edith.csproj new file mode 100644 index 0000000..e8e1b5a --- /dev/null +++ b/src/edith.csproj @@ -0,0 +1,10 @@ + + + + Exe + net9.0 + enable + enable + + +