diff --git a/Liner/Liner.csproj b/Liner/Liner.csproj new file mode 100644 index 0000000..13ee123 --- /dev/null +++ b/Liner/Liner.csproj @@ -0,0 +1,26 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + + + True + True + Resources.resx + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + \ No newline at end of file diff --git a/Liner/Liner.sln b/Liner/Liner.sln new file mode 100644 index 0000000..44bab19 --- /dev/null +++ b/Liner/Liner.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33815.320 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Liner", "Liner.csproj", "{3EF53D4D-3ED6-42CC-A624-222DCB3C5114}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3EF53D4D-3ED6-42CC-A624-222DCB3C5114}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3EF53D4D-3ED6-42CC-A624-222DCB3C5114}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3EF53D4D-3ED6-42CC-A624-222DCB3C5114}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3EF53D4D-3ED6-42CC-A624-222DCB3C5114}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {B3D86E6B-CC33-4EF3-A79E-2BF6171C6AF9} + EndGlobalSection +EndGlobal diff --git a/Liner/Program.cs b/Liner/Program.cs new file mode 100644 index 0000000..8976e9d --- /dev/null +++ b/Liner/Program.cs @@ -0,0 +1,17 @@ +namespace Liner +{ + 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 MainScreen()); + } + } +} \ No newline at end of file