Automatic project settings

This commit is contained in:
Serraniel 2023-07-23 19:47:32 +02:00
parent 15574637aa
commit 8c4474c597
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3
5 changed files with 5367 additions and 10 deletions

View file

@ -28,10 +28,18 @@
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
SuspendLayout();
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "Form1";
Text = "Form1";
ResumeLayout(false);
}
#endregion

View file

@ -1,10 +1,9 @@
namespace Tagashi_File_Hub
namespace Tagashi_File_Hub;
public partial class Form1 : Form
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -7,6 +7,52 @@
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<StartupObject>Tagashi_File_Hub.Program</StartupObject>
<ApplicationIcon>logo.ico</ApplicationIcon>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<DocumentationFile>../../docs/TagashiFileHub.xml</DocumentationFile>
<Title>Tagashi FIle Hub</Title>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyVersion>0.1.0</AssemblyVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<WarningLevel>9999</WarningLevel>
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
</PropertyGroup>
<ItemGroup>
<Content Include="logo.ico" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\resources\logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TagashiFileHub.Core\TagashiFileHub.Core.csproj" />
</ItemGroup>
</Project>

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 KiB