This commit is contained in:
Dmitrii.PIbd-14 2024-02-13 09:26:40 +04:00
parent 6dbac30d09
commit ec8a14a571
6 changed files with 42 additions and 48 deletions

View File

@ -1,9 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34525.116
VisualStudioVersion = 17.7.34202.233
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ElectricLocomotive", "ElectricLocomotive\ElectricLocomotive.csproj", "{4D945FCE-9358-42F9-AE60-159256B4D9CA}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WarmlyShip", "WarmlyShip\WarmlyShip.csproj", "{047EF427-F9BD-405D-BA87-4E38BE807DDD}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@ -11,15 +11,15 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4D945FCE-9358-42F9-AE60-159256B4D9CA}.Release|Any CPU.Build.0 = Release|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{047EF427-F9BD-405D-BA87-4E38BE807DDD}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {09FB2C10-894B-4529-BBD2-BFF03BE4AC73}
SolutionGuid = {C28B3C24-258E-4039-8296-57E5AB49F00A}
EndGlobalSection
EndGlobal

View File

@ -1,4 +1,4 @@
namespace ElectricLocomotive
namespace WarmlyShip
{
partial class Form1
{
@ -28,16 +28,10 @@
/// </summary>
private void InitializeComponent()
{
SuspendLayout();
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(793, 480);
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
}
#endregion

View File

@ -1,4 +1,4 @@
namespace ElectricLocomotive
namespace WarmlyShip
{
public partial class Form1 : Form
{

View File

@ -1,4 +1,4 @@
namespace ElectricLocomotive
namespace WarmlyShip
{
internal static class Program
{

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>