Updated nuget refs

This commit is contained in:
Tig Kindel
2024-01-05 08:00:56 -07:00
parent 97a75af86a
commit c2bda7a280
5 changed files with 487 additions and 428 deletions

View File

@@ -11,8 +11,8 @@
<InformationalVersion>2.0</InformationalVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ReactiveUI.Fody" Version="19.5.31" />
<PackageReference Include="ReactiveUI" Version="19.5.31" />
<PackageReference Include="ReactiveUI.Fody" Version="19.5.39" />
<PackageReference Include="ReactiveUI" Version="19.5.39" />
<PackageReference Include="ReactiveMarbles.ObservableEvents.SourceGenerator" Version="1.3.1" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>

View File

@@ -1,31 +1,24 @@
using System;
namespace Terminal.Gui {
namespace Terminal.Gui;
/// <summary>
/// Args for events about Size (e.g. Resized)
/// </summary>
public class SizeChangedEventArgs : EventArgs {
/// <summary>
/// Creates a new instance of the <see cref="SizeChangedEventArgs" /> class.
/// </summary>
/// <param name="size"></param>
public SizeChangedEventArgs (Size size) => Size = size;
/// <summary>
/// Args for events about Size (e.g. Resized)
/// Gets the size the event describes. This should reflect the new/current size after the event.
/// </summary>
public class SizeChangedEventArgs : EventArgs {
public Size Size { get; }
/// <summary>
/// Creates a new instance of the <see cref="SizeChangedEventArgs"/> class.
/// </summary>
/// <param name="size"></param>
public SizeChangedEventArgs (Size size)
{
Size = size;
}
/// <summary>
/// Gets the size the event describes. This should
/// reflect the new/current size after the event
/// resolved.
/// </summary>
public Size Size { get; }
/// <summary>
/// Set to <see langword="true"/> to cause the resize to be cancelled, if appropriate.
/// </summary>
public bool Cancel { get; set; }
}
}
/// <summary>
/// Set to <see langword="true" /> to cause the resize to be cancelled, if appropriate.
/// </summary>
public bool Cancel { get; set; }
}

File diff suppressed because it is too large Load Diff

View File

@@ -29,7 +29,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.5" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.2" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />

View File

@@ -25,7 +25,7 @@
<PackageReference Include="ReportGenerator" Version="5.2.0" />
<PackageReference Include="System.Collections" Version="4.3.0" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" Version="20.0.4" />
<PackageReference Include="xunit" Version="2.6.4" />
<PackageReference Include="xunit" Version="2.6.5" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>