Восстановление потерянных файлов

This commit is contained in:
Marselchi 2023-09-25 09:52:56 +04:00
parent 1a22fe73af
commit 33aeb63548
3 changed files with 68 additions and 0 deletions

26
Liner/Liner.csproj Normal file
View File

@ -0,0 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>

25
Liner/Liner.sln Normal file
View File

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

17
Liner/Program.cs Normal file
View File

@ -0,0 +1,17 @@
namespace Liner
{
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 MainScreen());
}
}
}