IS4.SFI.Application
1.2.2
Prefix Reserved
dotnet add package IS4.SFI.Application --version 1.2.2
NuGet\Install-Package IS4.SFI.Application -Version 1.2.2
<PackageReference Include="IS4.SFI.Application" Version="1.2.2" />
paket add IS4.SFI.Application --version 1.2.2
#r "nuget: IS4.SFI.Application, 1.2.2"
// 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 | Versions 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. |
-
.NETStandard 2.0
- IS4.SFI (>= 1.3.2)
- IS4.SFI.RDF (>= 1.2.1)
- Microsoft.Extensions.DependencyInjection (>= 7.0.0)
- Microsoft.Extensions.DependencyModel (>= 7.0.0)
- NuGet.PackageManagement (>= 6.6.1)
- System.Runtime.Loader (>= 4.3.0)
- System.Text.Encoding.CodePages (>= 7.0.0)
- Ude.NetStandard (>= 1.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
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.