nfs2iso2nfs 1.0.1

dotnet add package nfs2iso2nfs --version 1.0.1
NuGet\Install-Package nfs2iso2nfs -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nfs2iso2nfs" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nfs2iso2nfs --version 1.0.1
#r "nuget: nfs2iso2nfs, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install nfs2iso2nfs as a Cake Addin
#addin nuget:?package=nfs2iso2nfs&version=1.0.1

// Install nfs2iso2nfs as a Cake Tool
#tool nuget:?package=nfs2iso2nfs&version=1.0.1

nfs2iso2nfs

Convert nfs files to iso and back

This Branch

  • Updated to support .Net 7
  • Written as a Class Library instead of a Console App with a focus of moving over to Objects and Helpers
  • All the code is moved over to be Async
  • Added support to run it as a Console App with similar performance, there will be different information written out to the console
  • Added simple Unit Tests for the Helper functions
  • Added a logger
    • ILogger < Pack > logger

Example

  • No Logging

    • string[] args = {"-enc", "-homebrew", "-iso", iso, "-fwimg", fwImg, "-key", htk, "-output", output};
    • var packInstance = new nfs2iso2nfs.Pack();
    • await packInstance.Convert(aargs);
  • Logging

    • string[] args = {"-enc", "-homebrew", "-iso", iso, "-fwimg", fwImg, "-key", htk, "-output", output};
    • var packInstance = new nfs2iso2nfs.Pack(_logger);
    • await packInstance.Convert(aargs);
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 119 9/16/2023
1.0.0 211 8/23/2022

Added support to .Net 7, refactored the code to be async, and added a logger