diff --git a/ProjectCruiser.sln b/ProjectCruiser.sln new file mode 100644 index 0000000..86729a8 --- /dev/null +++ b/ProjectCruiser.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34525.116 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectCruiser", "ProjectCruiser\ProjectCruiser.csproj", "{AA0BC14A-BDFA-45D8-A567-250EEA399775}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {84618447-139C-4156-9798-E16E7E543123} + EndGlobalSection +EndGlobal diff --git a/ProjectCruiser/Program.cs b/ProjectCruiser/Program.cs new file mode 100644 index 0000000..2ddf3fc --- /dev/null +++ b/ProjectCruiser/Program.cs @@ -0,0 +1,17 @@ +namespace ProjectCruiser +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/ProjectCruiser/ProjectCruiser.csproj b/ProjectCruiser/ProjectCruiser.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/ProjectCruiser/ProjectCruiser.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file