Skip to content

Commit 9b2ac96

Browse files
authored
Add files via upload
1 parent 2d77319 commit 9b2ac96

15 files changed

Lines changed: 1015 additions & 0 deletions

FatalityLoader/App.xaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<Application x:Class="FatalityLoader.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
StartupUri="MainWindow.xaml">
5+
<Application.Resources>
6+
<Style TargetType="Button">
7+
<Setter Property="Template">
8+
<Setter.Value>
9+
<ControlTemplate TargetType="Button">
10+
<Border Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" CornerRadius="5">
11+
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
12+
</Border>
13+
</ControlTemplate>
14+
</Setter.Value>
15+
</Setter>
16+
</Style>
17+
</Application.Resources>
18+
</Application>

FatalityLoader/App.xaml.cs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
using System;
2+
using System.Windows;
3+
4+
namespace FatalityLoader
5+
{
6+
public partial class App : Application
7+
{
8+
}
9+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>WinExe</OutputType>
5+
<TargetFramework>net8.0-windows</TargetFramework>
6+
<Nullable>enable</Nullable>
7+
<UseWPF>true</UseWPF>
8+
<ApplicationIcon>icon.ico</ApplicationIcon>
9+
<StartupObject />
10+
<PublishSingleFile>true</PublishSingleFile>
11+
<SelfContained>true</SelfContained>
12+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
13+
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
14+
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
15+
<ApplicationManifest>app.manifest</ApplicationManifest>
16+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
17+
<DefaultItemExcludes>$(DefaultItemExcludes);TestDLL\**;CheckDll\**</DefaultItemExcludes>
18+
</PropertyGroup>
19+
20+
<ItemGroup>
21+
<Compile Remove="IconConverter.cs" />
22+
<Content Include="icon.png">
23+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
24+
</Content>
25+
<Content Include="soldier.png">
26+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
27+
</Content>
28+
<None Include="app.manifest" />
29+
</ItemGroup>
30+
31+
</Project>

FatalityLoader/FatalityLoader.sln

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FatalityLoader", "FatalityLoader.csproj", "{A1B2C3D4-E5F6-4789-0123-456789ABCDEF}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Элементы решения", "Элементы решения", "{754FC069-D67B-A9D7-50A1-8D1CA196D8F1}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Release|Any CPU = Release|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{A1B2C3D4-E5F6-4789-0123-456789ABCDEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
17+
{A1B2C3D4-E5F6-4789-0123-456789ABCDEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{A1B2C3D4-E5F6-4789-0123-456789ABCDEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
19+
{A1B2C3D4-E5F6-4789-0123-456789ABCDEF}.Release|Any CPU.Build.0 = Release|Any CPU
20+
EndGlobalSection
21+
GlobalSection(SolutionProperties) = preSolution
22+
HideSolutionNode = FALSE
23+
EndGlobalSection
24+
GlobalSection(ExtensibilityGlobals) = postSolution
25+
SolutionGuid = {FBF05781-3656-4082-B6DE-7CCE5AE54334}
26+
EndGlobalSection
27+
EndGlobal

0 commit comments

Comments
 (0)