![]() |
VOOZH | about |
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" />
<PackageVersion Include="IS4.SFI.Application" Version="1.2.2" />Directory.Packages.props
<PackageReference Include="IS4.SFI.Application" />Project file
paket add IS4.SFI.Application --version 1.2.2
#r "nuget: IS4.SFI.Application, 1.2.2"
#:package IS4.SFI.Application@1.2.2
#addin nuget:?package=IS4.SFI.Application&version=1.2.2Install as a Cake Addin
#tool nuget:?package=IS4.SFI.Application&version=1.2.2Install as a Cake Tool
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 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
This package is not used by any NuGet packages.
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.