Skip to content

Commit

Permalink
feat (DfuInstallation.cs): trivial reordering of classes for the sake…
Browse files Browse the repository at this point in the history
… of visibility
  • Loading branch information
ksidirop-laerdal committed Feb 28, 2025
1 parent c71ac1d commit 92f3911
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions Laerdal.Dfu/DfuInstallation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@

namespace Laerdal.Dfu
{
public partial class DfuInstallation : SharedDfuInstallation
{
}

public abstract class SharedDfuInstallation : IDisposable
{
public string DeviceId { get; set; }
Expand Down Expand Up @@ -302,6 +306,4 @@ public void Dispose()
GC.SuppressFinalize(this);
}
}

public partial class DfuInstallation : SharedDfuInstallation { }
}
4 changes: 2 additions & 2 deletions Laerdal.Dfu/Laerdal.Dfu.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@

<!-- =========================== PACKAGES ============================ -->
<!-- Android -->
<!-- iOS -->
<!-- MacCatalyst -->
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-android'">
<PackageReference Include="Laerdal.Dfu.Bindings.Android" Version="2.7.0.43903" />
</ItemGroup>
<!-- iOS -->
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-ios'">
<PackageReference Include="Laerdal.Dfu.Bindings.iOS" Version="4.15.3.44000" />
</ItemGroup>
<!-- MacCatalyst -->
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0-maccatalyst'">
<PackageReference Include="Laerdal.Dfu.Bindings.MacCatalyst" Version="4.15.3.44000" />
</ItemGroup>
Expand Down

0 comments on commit 92f3911

Please sign in to comment.