From ac6c991796ad140fd43b35e261a1b94b9cce90f0 Mon Sep 17 00:00:00 2001 From: "leonteva.v" Date: Mon, 25 Mar 2024 10:31:48 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Typography/Typography.sln | 25 +++++++++++++++++++++++++ Typography/Typography/Program.cs | 17 +++++++++++++++++ Typography/Typography/Typography.csproj | 11 +++++++++++ 3 files changed, 53 insertions(+) create mode 100644 Typography/Typography.sln create mode 100644 Typography/Typography/Program.cs create mode 100644 Typography/Typography/Typography.csproj diff --git a/Typography/Typography.sln b/Typography/Typography.sln new file mode 100644 index 0000000..7d70ae9 --- /dev/null +++ b/Typography/Typography.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34221.43 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Typography", "Typography\Typography.csproj", "{4EE7D689-E2F4-435E-A27C-11BD117622E2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4EE7D689-E2F4-435E-A27C-11BD117622E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4EE7D689-E2F4-435E-A27C-11BD117622E2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4EE7D689-E2F4-435E-A27C-11BD117622E2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4EE7D689-E2F4-435E-A27C-11BD117622E2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {C3D9C4C7-A8A4-4348-8990-61E0243ADE6B} + EndGlobalSection +EndGlobal diff --git a/Typography/Typography/Program.cs b/Typography/Typography/Program.cs new file mode 100644 index 0000000..16c105f --- /dev/null +++ b/Typography/Typography/Program.cs @@ -0,0 +1,17 @@ +namespace Typography +{ + 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/Typography/Typography/Typography.csproj b/Typography/Typography/Typography.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/Typography/Typography/Typography.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file