Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained 3.1.14

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.

Requires NuGet 3.3.0 or higher.

dotnet add package Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained --version 3.1.14
NuGet\Install-Package Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained -Version 3.1.14
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="Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained" Version="3.1.14" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained --version 3.1.14
#r "nuget: Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained, 3.1.14"
#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 Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained as a Cake Addin
#addin nuget:?package=Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained&version=3.1.14

// Install Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained as a Cake Tool
#tool nuget:?package=Microsoft.ServiceFabricApps.FabricObserver.Linux.SelfContained&version=3.1.14

This package contains the Service Fabric FabricObserver Application, a highly configurable and extensible resource usage watchdog service that is designed to be run in Service Fabric Windows and Linux clusters. This package contains the entire application and is required to build .NET Standard 2.0 observer plugins.

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.
  • .NETStandard 2.0

    • No dependencies.

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
3.2.15 181 3/20/2024
3.2.14 132 1/31/2024
3.2.13 99 1/19/2024
3.2.12 288 12/21/2023
3.2.11 304 9/25/2023
3.2.10.2 239 9/8/2023
3.2.10 225 9/7/2023
3.2.9 302 8/14/2023
3.2.8 237 5/15/2023
3.2.7 242 4/27/2023
3.2.6 444 3/17/2023
3.2.5 361 3/7/2023
3.2.4.960 433 12/8/2022
3.2.4.831 405 12/8/2022
3.2.3.960 480 10/19/2022
3.2.3.831 451 10/19/2022
3.2.2.960 466 9/27/2022
3.2.2.831 519 9/27/2022
3.2.1.960 507 8/22/2022
3.2.1.831 505 8/22/2022
3.2.0.960 645 7/13/2022
3.2.0.831 674 7/12/2022

- Bug fix in FO plugin loader: native dependencies will not crash loader (and thus FO).
   - For Plugin authors: You MUST place all plugin dependency libraries in the same folder as your plugin dll.
   - Plugins (and their dependencies) can now live in child folders in the Plugins directory, which will keep things cleaner for folks with multiple plugins.
   The Plugins folder/file structure MUST be:
   Config/Data/Plugins/MyPlugin/MyPlugin.dll (required), MyPlugin.pdb (optional), [ALL of MyPlugin.dll's private dependencies] (required)
   OR Config/Data/Plugins/MyPlugin.dll (required), MyPlugin.pdb(optional), [ALL of MyPlugin.dll's private dependencies] (required).  
   A private plugin dependency is any package that you reference in your plugin project that is not already referenced by FabricObserver.
   So, things like Nuget packages or Project References or COM References that are only used by your plugin. It is important to stress that if a dependency dll has dependencies,
   then you MUST also place those in the plugin's directory.