Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Crauzer committed Jan 14, 2024
1 parent 0313c0f commit c4d9057
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Photino.Blazor/Photino.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Photino.NET" Version="2.3.2" />
<PackageReference Include="Photino.NET" Version="2.6.0" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions lol2gltf.CLI/lol2gltf.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="LeagueToolkit" Version="4.0.0-beta.29" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="LeagueToolkit" Version="4.0.0-beta.30" />
<PackageReference Include="LeagueToolkit.IO.Extensions" Version="4.0.0-beta.29" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
</ItemGroup>
Expand Down
12 changes: 6 additions & 6 deletions lol2gltf.CLI/packages.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"net6.0": {
"CommandLineParser": {
"type": "Direct",
"requested": "[2.8.0, )",
"resolved": "2.8.0",
"contentHash": "eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q=="
"requested": "[2.9.1, )",
"resolved": "2.9.1",
"contentHash": "OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA=="
},
"LeagueToolkit": {
"type": "Direct",
"requested": "[4.0.0-beta.29, )",
"resolved": "4.0.0-beta.29",
"contentHash": "HSnIRX//O2OmTWhwrFvI9QaHv3Kc/DGCI1oCLKWMqT+gauS5tWR8lcxvqYogYthyu0iFNrV17LHXcKG19B1vpg==",
"requested": "[4.0.0-beta.30, )",
"resolved": "4.0.0-beta.30",
"contentHash": "80LvrYLwnRlz/3YNnQAFgsAPibiiScXAkmKSSwmkAdnIUA0eKic4YgkY4yV6KvR4HBxRYFLbVa2+2k4gRVIg+Q==",
"dependencies": {
"CommunityToolkit.Diagnostics": "8.2.0",
"CommunityToolkit.HighPerformance": "8.2.0",
Expand Down
4 changes: 2 additions & 2 deletions lol2gltf/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ static void Main(string[] args)

PhotinoBlazorApp app = builder.Build();
// customize window
app.MainWindow.SetIconFile("favicon.ico").SetTitle("lol2gltf").Center().SetUseOsDefaultSize(true);
app.MainWindow.SetIconFile("favicon.ico").SetTitle("lol2gltf").Center();

#if DEBUG
app.MainWindow.SetDevToolsEnabled(true);
#endif

AppDomain.CurrentDomain.UnhandledException += (sender, error) =>
{
app.MainWindow.OpenAlertWindow("Fatal exception", error.ExceptionObject.ToString());
app.MainWindow.ShowMessage("Fatal exception", error.ExceptionObject.ToString(), icon: PhotinoNET.PhotinoDialogIcon.Error);
};

app.Run();
Expand Down
6 changes: 3 additions & 3 deletions lol2gltf/lol2gltf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentValidation" Version="11.5.0" />
<PackageReference Include="LeagueToolkit" Version="4.0.0-beta.29" />
<PackageReference Include="FluentValidation" Version="11.9.0" />
<PackageReference Include="LeagueToolkit" Version="4.0.0-beta.30" />
<PackageReference Include="LeagueToolkit.IO.Extensions" Version="4.0.0-beta.29" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" />
<PackageReference Include="MudBlazor" Version="6.1.9" />
<PackageReference Include="WindowsAPICodePackShell" Version="7.0.4" />
<PackageReference Include="WindowsAPICodePackShell" Version="8.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit c4d9057

Please sign in to comment.