Создание проекта

This commit is contained in:
leonteva.v 2024-03-25 10:31:48 +04:00
parent 3338af62f6
commit ac6c991796
3 changed files with 53 additions and 0 deletions

25
Typography/Typography.sln Normal file
View File

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

View File

@ -0,0 +1,17 @@
namespace Typography
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[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());
}
}
}

View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>