Skip to content

Commit

Permalink
Update all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
SamboyCoding committed Feb 4, 2023
1 parent 5cca015 commit b676382
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Cpp2IL.Core/Cpp2IL.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

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

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

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

<ItemGroup Condition="'$(TargetFramework)' != 'net6.0'">
Expand Down
2 changes: 1 addition & 1 deletion Cpp2IL.Gui/App.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
<Application.Styles>
<StyleInclude Source="avares://AvaloniaEdit/AvaloniaEdit.xaml" />
<StyleInclude Source="avares://SharpTreeView/Themes/TreeView.xaml" />
<SimpleTheme Mode="Dark"/>
<SimpleTheme />
</Application.Styles>
</Application>
12 changes: 6 additions & 6 deletions Cpp2IL.Gui/Cpp2IL.Gui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.0-preview4" />
<PackageReference Include="Avalonia" Version="11.0.0-preview5" />
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.0-preview2" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview1" />
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.0-preview4" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0-preview4" />
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.0-preview4" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.0-preview1" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview5" />
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.0-preview5" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.0-preview5" />
<PackageReference Include="Avalonia.Themes.Simple" Version="11.0.0-preview5" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.0-preview2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Cpp2IL.Core\Cpp2IL.Core.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion Cpp2IL.Gui/ViewLocator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class ViewLocator : IDataTemplate
{
[UnconditionalSuppressMessage("Trimming", "IL2026", Justification = "All the viewmodel types are hard referenced")]
[UnconditionalSuppressMessage("Trimming", "IL2057", Justification = "All the viewmodel types are hard referenced")]
public IControl Build(object? data)
public Control Build(object? data)
{
var name = data!.GetType().FullName!.Replace("ViewModel", "View");
var type = Type.GetType(name);
Expand Down
9 changes: 5 additions & 4 deletions Cpp2IL.Gui/Views/MainWindow.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
using Cpp2IL.Gui.ViewModels;
using TextMateSharp.Grammars;

#if DEBUG
using Avalonia;
#endif

namespace Cpp2IL.Gui.Views
{
public partial class MainWindow : Window
Expand Down Expand Up @@ -51,10 +55,7 @@ private async void OnClickDropPrompt(object? sender, PointerPressedEventArgs e)
var paths = new List<string>();
foreach (var file in ret)
{
if(!file.TryGetUri(out var uri))
continue;

paths.Add(uri.LocalPath);
paths.Add(file.Path.LocalPath);
}

vm.OnDropped(paths.ToArray());
Expand Down
2 changes: 1 addition & 1 deletion Cpp2IL.Plugin.BuildReport/Cpp2IL.Plugin.BuildReport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="6.0.7" />
<PackageReference Include="System.Text.Json" Version="7.0.1" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion LibCpp2IL/LibCpp2IL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AssetRipper.VersionUtilities" Version="1.2.1" />
<PackageReference Include="AssetRipper.VersionUtilities" Version="1.3.1" />
</ItemGroup>

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

0 comments on commit b676382

Please sign in to comment.