Skip to content

Commit b676382

Browse files
committed
Update all deps
1 parent 5cca015 commit b676382

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed

Cpp2IL.Core/Cpp2IL.Core.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
<ItemGroup>
2828
<!--Needed for DLL output-->
29-
<PackageReference Include="AsmResolver.DotNet" Version="5.0.0" />
29+
<PackageReference Include="AsmResolver.DotNet" Version="5.1.0" />
3030

3131
<!--For ARM64 dissassembly-->
3232
<PackageReference Include="Disarm" Version="2022.1.0-master.26" />
@@ -40,7 +40,7 @@
4040
<!--Not used at runtime, but needed for the build-->
4141
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
4242

43-
<PackageReference Include="PolySharp" Version="1.8.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
43+
<PackageReference Include="PolySharp" Version="1.12.1" PrivateAssets="all" IncludeAssets="runtime; build; native; contentfiles; analyzers; buildtransitive" />
4444
</ItemGroup>
4545

4646
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'">

Cpp2IL.Gui/App.axaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
<Application.Styles>
1010
<StyleInclude Source="avares://AvaloniaEdit/AvaloniaEdit.xaml" />
1111
<StyleInclude Source="avares://SharpTreeView/Themes/TreeView.xaml" />
12-
<SimpleTheme Mode="Dark"/>
12+
<SimpleTheme />
1313
</Application.Styles>
1414
</Application>

Cpp2IL.Gui/Cpp2IL.Gui.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
<None Remove=".gitignore" />
2020
</ItemGroup>
2121
<ItemGroup>
22-
<PackageReference Include="Avalonia" Version="11.0.0-preview4" />
22+
<PackageReference Include="Avalonia" Version="11.0.0-preview5" />
2323
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.0-preview2" />
24-
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview1" />
25-
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.0-preview4" />
26-
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0-preview4" />
27-
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.0-preview4" />
28-
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.0-preview1" />
24+
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview5" />
25+
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.0-preview5" />
26+
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0-preview5" />
27+
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.0-preview5" />
28+
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.0-preview2" />
2929
</ItemGroup>
3030
<ItemGroup>
3131
<ProjectReference Include="..\Cpp2IL.Core\Cpp2IL.Core.csproj" />

Cpp2IL.Gui/ViewLocator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class ViewLocator : IDataTemplate
1010
{
1111
[UnconditionalSuppressMessage("Trimming", "IL2026", Justification = "All the viewmodel types are hard referenced")]
1212
[UnconditionalSuppressMessage("Trimming", "IL2057", Justification = "All the viewmodel types are hard referenced")]
13-
public IControl Build(object? data)
13+
public Control Build(object? data)
1414
{
1515
var name = data!.GetType().FullName!.Replace("ViewModel", "View");
1616
var type = Type.GetType(name);

Cpp2IL.Gui/Views/MainWindow.axaml.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
using Cpp2IL.Gui.ViewModels;
1111
using TextMateSharp.Grammars;
1212

13+
#if DEBUG
14+
using Avalonia;
15+
#endif
16+
1317
namespace Cpp2IL.Gui.Views
1418
{
1519
public partial class MainWindow : Window
@@ -51,10 +55,7 @@ private async void OnClickDropPrompt(object? sender, PointerPressedEventArgs e)
5155
var paths = new List<string>();
5256
foreach (var file in ret)
5357
{
54-
if(!file.TryGetUri(out var uri))
55-
continue;
56-
57-
paths.Add(uri.LocalPath);
58+
paths.Add(file.Path.LocalPath);
5859
}
5960

6061
vm.OnDropped(paths.ToArray());

Cpp2IL.Plugin.BuildReport/Cpp2IL.Plugin.BuildReport.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="System.Text.Json" Version="6.0.7" />
19+
<PackageReference Include="System.Text.Json" Version="7.0.1" />
2020
</ItemGroup>
2121

2222
</Project>

LibCpp2IL/LibCpp2IL.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</PropertyGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="AssetRipper.VersionUtilities" Version="1.2.1" />
25+
<PackageReference Include="AssetRipper.VersionUtilities" Version="1.3.1" />
2626
</ItemGroup>
2727

2828
<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'">

0 commit comments

Comments
 (0)