IS4.SFI.Application 1.2.2

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package IS4.SFI.Application --version 1.2.2
NuGet\Install-Package IS4.SFI.Application -Version 1.2.2
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="IS4.SFI.Application" Version="1.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IS4.SFI.Application --version 1.2.2
#r "nuget: IS4.SFI.Application, 1.2.2"
#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 IS4.SFI.Application as a Cake Addin
#addin nuget:?package=IS4.SFI.Application&version=1.2.2

// Install IS4.SFI.Application as a Cake Tool
#tool nuget:?package=IS4.SFI.Application&version=1.2.2

Semantic File Inspector Application

This is the primary project to use when wishing to run the Semantic File Inspector as an embedded component.

The project contains a hierarchy of classes derived from Inspector, capable of easily setting up the process of file format inspection. This class is inherited by ComponentInspector, which is capable of storing configurable collections of components, and itself inherited by ExtensibleInspector, adding support for plugins.

When intending to use one of these classes, the user should derive from the one of them covering the user's needs, adding the desired components (such as by calling the ComponentInspector.LoadAssembly method), and either use the inspector by calling methods on the instance, or through the Application class which can be controlled using command-line arguments (see SFI.ConsoleApp for an example how to set up the environment).

Documentation for the command-line API, configuration, and plugin mechanism, can be found in the wiki.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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.2.2 92 3/12/2024
1.2.1 91 2/27/2024
1.2.0 83 2/18/2024
1.1.1 142 7/20/2023
1.1.0 123 7/17/2023

1.2.2
-----

- Fixed an exception when an empty file is encountered with `--only-once`.


1.2.1
-----

- Buffering level can now be set to one of none, temporary (a new intermediate level), and full.
- Temporary buffering (set manually or automatically when a SPARQL query is provided) prevents duplicate triples from being emitted.


1.2
-----

- Single-character options are converted to their canonical form for duplicate checking and options serialization.
- XML options serialization determines whether a setting should be stored as element based on its cardinality.
- The `.nuget/packages` plugin source directory is added only if it exists.
- Options starting with `xml` are properly encoded when serialized.
- Component and property names support wildcards when assigning (but the `:` must still be fully present).
- Support for `/dev/folderpicker` to open a folder browser dialog.
- Individual components are not shared across collections if they are configurable.
- NuGet plugins support the `nuget:?package={package}&version={version}` format.
- `ObsoleteAttribute` on properties is recognized.


1.1.1
-----

- Changed display order of application modes.
- Added missing command-line options.