-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathFabricHealer.nuspec.template
More file actions
40 lines (40 loc) · 2.22 KB
/
Copy pathFabricHealer.nuspec.template
File metadata and controls
40 lines (40 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata minClientVersion="3.3.0">
<id>%PACKAGE_ID%</id>
<version>1.3.2</version>
<releaseNotes>
- Fixed bug in Service Fabric System service repair's EnsureProcess function related to process start time comparison issue, which broke the repair execution.
</releaseNotes>
<authors>Microsoft</authors>
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<title>FabricHealer Service</title>
<icon>icon.png</icon>
<readme>fhnuget.md</readme>
<language>en-US</language>
<description>FabricHealer is a Service Fabric service (built for .NET 8, requires SF runtime version 9.0 and above) that schedules and safely executes automatic repairs in Linux and Windows Service Fabric clusters after inspecting unhealthy events created by FabricObserver instances or other services employing FabricHealerProxy running in the same cluster. It employs a novel Configuration-as-Logic model to express repair workflows using Prolog-like semantics/syntax in text-based configuration files.</description>
<contentFiles>
<files include="**" buildAction="None" copyToOutput="true" />
</contentFiles>
<dependencies>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.Logic.Guan" version="1.0.7" />
</group>
<group targetFramework="net8.0">
<dependency id="Microsoft.ServiceFabric.Services" version="7.0.1816" />
</group>
</dependencies>
<projectUrl>https://github.com/microsoft/service-fabric-healer</projectUrl>
<tags>azure servicefabric fabrichealer fabricobserver auto-mitigation logic-programming guan</tags>
<copyright>© Microsoft Corporation. All rights reserved.</copyright>
</metadata>
<files>
<file src="**" target="contentFiles\any\any" />
<file src="FabricHealerPkg\Code\Guan.dll" target="lib\netstandard2.0" />
<file src="FabricHealerPkg\Code\TelemetryLib.dll" target="lib\net8.0" />
<file src="FabricHealerPkg\Code\FabricHealer.dll" target="lib\net8.0" />
<file src="%ROOT_PATH%\icon.png" target="" />
<file src="%ROOT_PATH%\fhnuget.md" target="" />
</files>
</package>