forked from CaitSith2/ios-steamguard-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .NET Runtime 6.0.6 & Avalonia 0.10.15 Use PublishTrimmed New AppIcon
- Loading branch information
Showing
29 changed files
with
515 additions
and
464 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
Avalonia.Ref/Avalonia.Themes.Fluent/Avalonia.Themes.Fluent.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<SignAssembly>true</SignAssembly> | ||
<DelaySign>false</DelaySign> | ||
<AssemblyOriginatorKeyFile>$(MSBuildProjectDirectory)\..\avalonia.snk</AssemblyOriginatorKeyFile> | ||
<Version>255.255.255.255</Version> | ||
<AllowedReferenceRelatedFileExtensions> | ||
<!-- Prevent default XML and PDB files copied to output in RELEASE. | ||
Only *.allowedextension files will be included, which doesn't exist in my case. | ||
--> | ||
.allowedextension | ||
</AllowedReferenceRelatedFileExtensions> | ||
<DebugType>none</DebugType> | ||
<DebugSymbols>false</DebugSymbols> | ||
</PropertyGroup> | ||
</Project> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
iOSSteamGuardExtractor.UI/iOSSteamGuardExtractor.UI.csproj
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using Avalonia; | ||
using Avalonia.Markup.Xaml; | ||
using Avalonia.Controls.ApplicationLifetimes; | ||
|
||
namespace iOSSteamGuardExtractor; | ||
|
||
public class App : Application | ||
{ | ||
public override void Initialize() | ||
{ | ||
AvaloniaXamlLoader.Load(this); | ||
} | ||
|
||
public override void OnFrameworkInitializationCompleted() | ||
{ | ||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) | ||
{ | ||
desktop.MainWindow = new MainWindow(); | ||
} | ||
|
||
base.OnFrameworkInitializationCompleted(); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.