From 868e71877acb1c6e334a5034f25f04814e808170 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 16 May 2026 19:34:18 +0000
Subject: [PATCH 1/4] Initial plan
From 97ed6a61b6ea19d296112d28c62005fe4556ba22 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 16 May 2026 19:45:45 +0000
Subject: [PATCH 2/4] docs: migrate guideline callouts
Agent-Logs-Url: https://github.com/dennisdoomen/CSharpGuidelines/sessions/2204c2c3-0c9b-4950-bc91-79931ab96c96
Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com>
---
Build/Build.cs | 77 +++++++++++++++++++++++++++++++++++-
_includes/footer/custom.html | 52 +++++++++++++++++++++++-
_rules/0100.md | 3 +-
_rules/0110.md | 3 +-
_rules/0125.md | 6 ++-
_rules/1000.md | 15 ++++---
_rules/1002.md | 3 +-
_rules/1003.md | 3 +-
_rules/1008.md | 3 +-
_rules/1011.md | 3 +-
_rules/1014.md | 6 ++-
_rules/1020.md | 3 +-
_rules/1025.md | 3 +-
_rules/1030.md | 3 +-
_rules/1032.md | 3 +-
_rules/1105.md | 3 +-
_rules/1130.md | 3 +-
_rules/1137.md | 3 +-
_rules/1225.md | 3 +-
_rules/1235.md | 3 +-
_rules/1505.md | 3 +-
_rules/1507.md | 6 ++-
_rules/1515.md | 3 +-
_rules/1522.md | 21 +++++-----
_rules/1551.md | 3 +-
_rules/1555.md | 9 +++--
_rules/1561.md | 3 +-
_rules/1562.md | 9 +++--
_rules/1578.md | 3 +-
_rules/1585.md | 3 +-
_rules/1702.md | 3 +-
_rules/1706.md | 3 +-
_rules/1725.md | 3 +-
_rules/1739.md | 3 +-
_rules/1820.md | 3 +-
_rules/2225.md | 17 ++++----
_rules/2305.md | 6 ++-
_sass/custom/_generic.scss | 50 ++++++++++++++++++++++-
38 files changed, 287 insertions(+), 65 deletions(-)
diff --git a/Build/Build.cs b/Build/Build.cs
index 4d63c14d..61a52707 100644
--- a/Build/Build.cs
+++ b/Build/Build.cs
@@ -142,6 +142,7 @@ string ProcessPage(AbsolutePath pageFile)
rawContent = StripFrontmatter(rawContent);
var content = string.IsNullOrEmpty(category) ? rawContent : BuildCategorySection(category);
content = ApplySiteReplacements(content);
+ content = TransformAlertsForPandoc(content);
return string.IsNullOrEmpty(title) ? content : $"
{title}
\n{content}";
}
@@ -180,6 +181,80 @@ static string ApplySiteReplacements(string content)
@"\(\/.+?(#\w+)\)", "($1)");
}
+ static string TransformAlertsForPandoc(string content)
+ {
+ var lines = content.Replace("\r\n", "\n").Split('\n');
+ var transformed = new List(lines.Length);
+
+ for (var index = 0; index < lines.Length;)
+ {
+ if (!TryTransformAlert(lines, ref index, transformed))
+ {
+ transformed.Add(lines[index]);
+ index++;
+ }
+ }
+
+ return string.Join("\n", transformed);
+ }
+
+ static bool TryTransformAlert(string[] lines, ref int index, List transformed)
+ {
+ var match = Regex.Match(lines[index], @"^> \[!(NOTE|TIP|IMPORTANT|WARNING|CAUTION)\]\s*$");
+ if (!match.Success)
+ return false;
+
+ var alertType = match.Groups[1].Value;
+ var alertLines = new List();
+ index++;
+
+ while (index < lines.Length && lines[index].StartsWith(">"))
+ {
+ alertLines.Add(lines[index].Length == 1 ? "" : lines[index][2..]);
+ index++;
+ }
+
+ if (alertLines.Count == 0)
+ {
+ transformed.Add(lines[index - 1]);
+ return true;
+ }
+
+ var title = alertType switch
+ {
+ "NOTE" => "Note",
+ "TIP" => "Tip",
+ "IMPORTANT" => "Important",
+ "WARNING" => "Warning",
+ "CAUTION" => "Caution",
+ _ => alertType
+ };
+
+ var firstContentLineIndex = alertLines.FindIndex(line => !string.IsNullOrWhiteSpace(line));
+ if (firstContentLineIndex >= 0 && alertType == "IMPORTANT")
+ {
+ var exceptionMatch = Regex.Match(alertLines[firstContentLineIndex], @"^(Exceptions?):\s*(.*)$");
+ if (exceptionMatch.Success)
+ {
+ title = exceptionMatch.Groups[1].Value;
+ alertLines[firstContentLineIndex] = exceptionMatch.Groups[2].Value;
+ }
+ }
+
+ if (firstContentLineIndex >= 0)
+ {
+ var firstLine = alertLines[firstContentLineIndex];
+ alertLines[firstContentLineIndex] = string.IsNullOrWhiteSpace(firstLine)
+ ? $"**{title}:**"
+ : $"**{title}:** {firstLine}";
+ }
+
+ foreach (var alertLine in alertLines)
+ transformed.Add(alertLine.Length == 0 ? ">" : $"> {alertLine}");
+
+ return true;
+ }
+
static void AppendRuleIfInCategory(StringBuilder content, AbsolutePath ruleFile, string category)
{
var rule = ruleFile.ReadAllText();
@@ -372,4 +447,4 @@ static string ExtractFrontmatterField(string content, string fieldName)
var match = Regex.Match(content, $@"---(.|\n)*?{Regex.Escape(fieldName)}\:\s*([^\r\n]+)");
return match.Success ? match.Groups[2].Value.Trim() : string.Empty;
}
-}
\ No newline at end of file
+}
diff --git a/_includes/footer/custom.html b/_includes/footer/custom.html
index d512599d..ab4d5b6a 100644
--- a/_includes/footer/custom.html
+++ b/_includes/footer/custom.html
@@ -1,3 +1,53 @@
-
\ No newline at end of file
+
+
+
diff --git a/_rules/0100.md b/_rules/0100.md
index 58d7c7d2..8972e9ea 100644
--- a/_rules/0100.md
+++ b/_rules/0100.md
@@ -11,4 +11,5 @@ Understanding these boundaries matters for several reasons:
- It guides when to introduce an abstraction (across a boundary) versus when to skip it (within a boundary).
- It helps decide when to duplicate small pieces of logic instead of pulling in a shared dependency that would increase coupling.
-**Tip:** When in doubt whether something belongs inside or outside a boundary, ask yourself: "If this boundary were a separate deployable unit, would this dependency still make sense?"
+> [!TIP]
+> When in doubt whether something belongs inside or outside a boundary, ask yourself: "If this boundary were a separate deployable unit, would this dependency still make sense?"
diff --git a/_rules/0110.md b/_rules/0110.md
index c897423b..0bd98e39 100644
--- a/_rules/0110.md
+++ b/_rules/0110.md
@@ -10,4 +10,5 @@ Prefer composition when:
- You want to reuse behavior without exposing or depending on the internals of another class.
- You need to vary behavior at runtime (e.g. through the [Strategy pattern](https://en.wikipedia.org/wiki/Strategy_pattern)).
-**Exception:** Inheritance is appropriate when a true "is-a" relationship exists and when derived classes genuinely extend (rather than replace) the behavior of their base class. Always follow the [Liskov Substitution Principle](https://en.wikipedia.org/wiki/Liskov_substitution_principle) when using inheritance.
+> [!IMPORTANT]
+> Exception: Inheritance is appropriate when a true "is-a" relationship exists and when derived classes genuinely extend (rather than replace) the behavior of their base class. Always follow the [Liskov Substitution Principle](https://en.wikipedia.org/wiki/Liskov_substitution_principle) when using inheritance.
diff --git a/_rules/0125.md b/_rules/0125.md
index cd345c55..177a63e9 100644
--- a/_rules/0125.md
+++ b/_rules/0125.md
@@ -31,5 +31,7 @@ This applies primarily to:
For complex or domain-critical logic that must be consistent everywhere, a shared library is still the right choice. But always consider the [Rule of Three](https://en.wikipedia.org/wiki/Rule_of_three_(computer_programming)) as a practical guide: refactor duplication after the third occurrence and you've identified a real pattern. Also consider a source-only package as it avoids the binary dependencies normal packages have. Check out [Reflectify](https://github.com/dennisdoomen/reflectify?tab=readme-ov-file#readme) or [Pathy](https://github.com/dennisdoomen/pathy?tab=readme-ov-file#readme) for practical examples of that.
-**Exception:**
-Duplication in tests is often beneficial as it will make the tests easier to understand without the need to dig into all kinds of shared helper methods.
+> [!IMPORTANT]
+> Exception:
+>
+> Duplication in tests is often beneficial as it will make the tests easier to understand without the need to dig into all kinds of shared helper methods.
diff --git a/_rules/1000.md b/_rules/1000.md
index f3028347..cc39d1c2 100644
--- a/_rules/1000.md
+++ b/_rules/1000.md
@@ -5,12 +5,17 @@ title: A class or interface should have a single purpose
---
A class or interface should have a single purpose within the system it functions in. In general, a class either represents a primitive type like an email address or ISBN number, an abstraction of some business concept, a plain data structure, or is responsible for orchestrating the interaction between other classes. It is never a combination of those. This rule is widely known as the [Single Responsibility Principle](https://en.wikipedia.org/wiki/Single-responsibility_principle), one of the S.O.L.I.D. principles.
-**Tip:** A class with the word `And` in it is an obvious violation of this rule.
+> [!TIP]
+> A class with the word `And` in it is an obvious violation of this rule.
-**Tip:** Use [Design Patterns](http://en.wikipedia.org/wiki/Design_pattern_(computer_science)) to communicate the intent of a class. If you can't assign a single design pattern to a class, chances are that it is doing more than one thing.
+> [!TIP]
+> Use [Design Patterns](http://en.wikipedia.org/wiki/Design_pattern_(computer_science)) to communicate the intent of a class. If you can't assign a single design pattern to a class, chances are that it is doing more than one thing.
-**Tip:** If you can't find a good name for a class, or struggle to document what it does, it is probably doing too much.
+> [!TIP]
+> If you can't find a good name for a class, or struggle to document what it does, it is probably doing too much.
-**Tip:** If you describe what a class does to an AI assistant and it identifies multiple responsibilities, that's a strong signal to split it up.
+> [!TIP]
+> If you describe what a class does to an AI assistant and it identifies multiple responsibilities, that's a strong signal to split it up.
-**Note** If you create a class representing a primitive type you can greatly simplify its use by making it immutable. Consider using an immutable record type for such cases.
+> [!NOTE]
+> If you create a class representing a primitive type you can greatly simplify its use by making it immutable. Consider using an immutable record type for such cases.
diff --git a/_rules/1002.md b/_rules/1002.md
index b9600c9d..73d269ec 100644
--- a/_rules/1002.md
+++ b/_rules/1002.md
@@ -9,4 +9,5 @@ For `internal` types, this is straightforward to apply: since callers are within
For `public` types, be more conservative. Removing a constructor parameter is a breaking API change, so consider whether the dependency is likely to be needed by future members before deciding to keep it out of the constructor.
-**Exception:** Cross-cutting concerns such as logging or a clock abstraction (`TimeProvider`) are often needed broadly and may reasonably be injected through the constructor even if not every member uses them directly.
+> [!IMPORTANT]
+> Exception: Cross-cutting concerns such as logging or a clock abstraction (`TimeProvider`) are often needed broadly and may reasonably be injected through the constructor even if not every member uses them directly.
diff --git a/_rules/1003.md b/_rules/1003.md
index fae9d282..ad2f13b1 100644
--- a/_rules/1003.md
+++ b/_rules/1003.md
@@ -5,4 +5,5 @@ title: An interface should be small and focused
---
Interfaces should have a name that clearly explains their purpose or role in the system. Do not combine many vaguely related members on the same interface just because they were all on the same class. Separate the members based on the responsibility of those members, so that callers only need to call or implement the interface related to a particular task. This rule is more commonly known as the [Interface Segregation Principle](https://en.wikipedia.org/wiki/Interface_segregation_principle).
-**Tip:** Avoid taking the name of the class and slapping an `I` in front of it. Instead, consider using role-based names like `IFetchSomething` or `IProvideClusterwideLock` that describe what the interface does rather than what class implements it.
+> [!TIP]
+> Avoid taking the name of the class and slapping an `I` in front of it. Instead, consider using role-based names like `IFetchSomething` or `IProvideClusterwideLock` that describe what the interface does rather than what class implements it.
diff --git a/_rules/1008.md b/_rules/1008.md
index 043fae3e..bc44bccb 100644
--- a/_rules/1008.md
+++ b/_rules/1008.md
@@ -5,4 +5,5 @@ title: Avoid static classes
---
With the exception of extension method containers, static classes very often lead to badly designed code. They are also very difficult, if not impossible, to test in isolation, unless you're willing to use some very hacky tools.
-**Note:** If you really need that static class, mark it as static so that the compiler can prevent instance members and instantiating your class. This relieves you of creating an explicit private constructor.
+> [!NOTE]
+> If you really need that static class, mark it as static so that the compiler can prevent instance members and instantiating your class. This relieves you of creating an explicit private constructor.
diff --git a/_rules/1011.md b/_rules/1011.md
index 1dfe61b0..fe797c8a 100644
--- a/_rules/1011.md
+++ b/_rules/1011.md
@@ -57,4 +57,5 @@ public class Square : Shape
}
```
-**Note:** This rule is also known as the Liskov Substitution Principle, one of the [S.O.L.I.D.](http://www.lostechies.com/blogs/chad_myers/archive/2008/03/07/pablo-s-topic-of-the-month-march-solid-principles.aspx) principles.
+> [!NOTE]
+> This rule is also known as the Liskov Substitution Principle, one of the [S.O.L.I.D.](http://www.lostechies.com/blogs/chad_myers/archive/2008/03/07/pablo-s-topic-of-the-month-march-solid-principles.aspx) principles.
diff --git a/_rules/1014.md b/_rules/1014.md
index 380b19ce..9fe92735 100644
--- a/_rules/1014.md
+++ b/_rules/1014.md
@@ -9,6 +9,8 @@ If you find yourself writing code like this then you might be violating the [Law
An object should not expose any other classes it depends on because callers may misuse that exposed property or method to access the object behind it. By doing so, you allow calling code to become coupled to the class you are using, and thereby limiting the chance that you can easily replace it in a future stage.
-**Note:** Using a class that is designed using the [Fluent Interface](http://en.wikipedia.org/wiki/Fluent_interface) pattern seems to violate this rule, but it is simply returning itself so that method chaining is allowed.
+> [!NOTE]
+> Using a class that is designed using the [Fluent Interface](http://en.wikipedia.org/wiki/Fluent_interface) pattern seems to violate this rule, but it is simply returning itself so that method chaining is allowed.
-**Exception:** Inversion of Control or Dependency Injection frameworks often require you to expose a dependency as a public property. As long as this property is not used for anything other than dependency injection I would not consider it a violation.
+> [!IMPORTANT]
+> Exception: Inversion of Control or Dependency Injection frameworks often require you to expose a dependency as a public property. As long as this property is not used for anything other than dependency injection I would not consider it a violation.
diff --git a/_rules/1020.md b/_rules/1020.md
index 4a99ec26..156c1d11 100644
--- a/_rules/1020.md
+++ b/_rules/1020.md
@@ -5,4 +5,5 @@ title: Avoid bidirectional dependencies
---
This means that two classes know about each other's public members or rely on each other's internal behavior. Refactoring or replacing one of those classes requires changes on both parties and may involve a lot of unexpected work. The most obvious way of breaking that dependency is to introduce an interface for one of the classes and using Dependency Injection.
-**Exception:** Domain models such as defined in [Domain-Driven Design](https://en.wikipedia.org/wiki/Domain-driven_design) tend to occasionally involve bidirectional associations that model real-life associations. In those cases, make sure they are really necessary, and if they are, keep them in.
+> [!IMPORTANT]
+> Exception: Domain models such as defined in [Domain-Driven Design](https://en.wikipedia.org/wiki/Domain-driven_design) tend to occasionally involve bidirectional associations that model real-life associations. In those cases, make sure they are really necessary, and if they are, keep them in.
diff --git a/_rules/1025.md b/_rules/1025.md
index d47f50d7..7733d39a 100644
--- a/_rules/1025.md
+++ b/_rules/1025.md
@@ -5,4 +5,5 @@ title: Classes should have state and behavior
---
In general, if you find a lot of data-only classes in your code base, you probably also have a few (static) classes with a lot of behavior (see [{{ site.default_rule_prefix }}1008](#{{ site.default_rule_prefix }}1008)). Use the principles of object-orientation explained in this section and move the logic close to the data it applies to.
-**Exception:** The only exceptions to this rule are classes that are used to transfer data over a communication channel, also called [Data Transfer Objects](http://martinfowler.com/eaaCatalog/dataTransferObject.html), or a class that wraps several parameters of a method. For DTOs, consider using an immutable `record` type instead of a class to make the intent explicit.
+> [!IMPORTANT]
+> Exception: The only exceptions to this rule are classes that are used to transfer data over a communication channel, also called [Data Transfer Objects](http://martinfowler.com/eaaCatalog/dataTransferObject.html), or a class that wraps several parameters of a method. For DTOs, consider using an immutable `record` type instead of a class to make the intent explicit.
diff --git a/_rules/1030.md b/_rules/1030.md
index c81d4abf..cb71b285 100644
--- a/_rules/1030.md
+++ b/_rules/1030.md
@@ -14,7 +14,8 @@ Use a **record** when:
public record OrderSummary(Guid OrderId, decimal TotalAmount, DateTimeOffset CreatedAt);
```
-**Note:** Record equality is shallow. If a record property is a collection (e.g. `List` or an array), `Equals` and `GetHashCode` will not compare the contents, which can lead to subtle bugs.
+> [!NOTE]
+> Record equality is shallow. If a record property is a collection (e.g. `List` or an array), `Equals` and `GetHashCode` will not compare the contents, which can lead to subtle bugs.
Use a **record struct** when the same criteria apply, but you also want value-type semantics: stack allocation, no null, and copy-on-assignment. This is appropriate for small, frequently passed immutable data such as coordinates, colors, or date ranges. Avoid mutable `record struct` — mutations on a copy don't affect the original, which leads to confusing bugs.
diff --git a/_rules/1032.md b/_rules/1032.md
index 7ec9c718..9fe44cee 100644
--- a/_rules/1032.md
+++ b/_rules/1032.md
@@ -34,5 +34,6 @@ Prefer a single-method interface when:
- You want to use Default Interface Methods
- The interface is expected to gain additional members in the near future
-**Note:** A simple lambda is technically compatible with a named delegate, but a named delegate offers better discoverability: find-usages, go-to-definition, and DI registration all work the same as with an interface.
+> [!NOTE]
+> A simple lambda is technically compatible with a named delegate, but a named delegate offers better discoverability: find-usages, go-to-definition, and DI registration all work the same as with an interface.
diff --git a/_rules/1105.md b/_rules/1105.md
index e357ff3a..5e03ad25 100644
--- a/_rules/1105.md
+++ b/_rules/1105.md
@@ -8,4 +8,5 @@ title: Use a method instead of a property
- If it returns a different result each time it is called, even if the arguments didn't change. For example, the `NewGuid` method returns a different value each time it is called.
- If the operation causes a side effect such as changing some internal state not directly related to the property (which violates the [Command Query Separation](http://martinfowler.com/bliki/CommandQuerySeparation.html) principle).
-**Exception:** Populating an internal cache or implementing [lazy-loading](http://www.martinfowler.com/eaaCatalog/lazyLoad.html) is a good exception.
+> [!IMPORTANT]
+> Exception: Populating an internal cache or implementing [lazy-loading](http://www.martinfowler.com/eaaCatalog/lazyLoad.html) is a good exception.
diff --git a/_rules/1130.md b/_rules/1130.md
index d711b78f..80e98e8c 100644
--- a/_rules/1130.md
+++ b/_rules/1130.md
@@ -7,4 +7,5 @@ You generally don't want callers to be able to change an internal collection, so
Be aware that `IEnumerable` is often perceived as lazy-evaluated. If your collection is already materialized, consider returning `IReadOnlyCollection` or `IReadOnlyList` to make the intent clear.
-**Exception:** Immutable collections such as `ImmutableArray`, `ImmutableList` and `ImmutableDictionary`, as well as `FrozenSet` and `FrozenDictionary` prevent modifications from the outside and are thus allowed.
+> [!IMPORTANT]
+> Exception: Immutable collections such as `ImmutableArray`, `ImmutableList` and `ImmutableDictionary`, as well as `FrozenSet` and `FrozenDictionary` prevent modifications from the outside and are thus allowed.
diff --git a/_rules/1137.md b/_rules/1137.md
index c6459da4..ec06fc45 100644
--- a/_rules/1137.md
+++ b/_rules/1137.md
@@ -5,4 +5,5 @@ title: Define parameters as specific and narrow as possible
---
If your method or local function needs a specific piece of data, define parameters as specific as that and don't take a container object instead. For instance, consider a method that needs a connection string that is exposed through a central `IConfiguration` interface. Rather than taking a dependency on the entire configuration, just define a parameter for the connection string. This not only prevents unnecessary coupling, it also improves maintainability in the long run.
-**Note:** An easy trick to remember this guideline is the *Don't ship the truck if you only need a package*.
+> [!NOTE]
+> An easy trick to remember this guideline is the *Don't ship the truck if you only need a package*.
diff --git a/_rules/1225.md b/_rules/1225.md
index b69ea2f2..84ae8c73 100644
--- a/_rules/1225.md
+++ b/_rules/1225.md
@@ -5,4 +5,5 @@ title: Use a protected virtual method to raise each event
---
Complying with this guideline allows derived classes to handle a base class event by overriding the protected method. The name of the protected virtual method should be the same as the event name prefixed with `On`. For example, the protected virtual method for an event named `TimeChanged` is named `OnTimeChanged`.
-**Note:** Derived classes that override the protected virtual method are not required to call the base class implementation. The base class must continue to work correctly even if its implementation is not called.
+> [!NOTE]
+> Derived classes that override the protected virtual method are not required to call the base class implementation. The base class must continue to work correctly even if its implementation is not called.
diff --git a/_rules/1235.md b/_rules/1235.md
index 7cfc8d59..35235e30 100644
--- a/_rules/1235.md
+++ b/_rules/1235.md
@@ -5,4 +5,5 @@ title: Don't pass `null` as the `sender` argument when raising an event
---
Often an event handler is used to handle similar events from multiple senders. The sender argument is then used to get to the source of the event. Always pass a reference to the source (typically `this`) when raising the event. Furthermore don't pass `null` as the event data parameter when raising an event. If there is no event data, pass `EventArgs.Empty` instead of `null`.
-**Exception:** On static events, the sender argument should be `null`.
+> [!IMPORTANT]
+> Exception: On static events, the sender argument should be `null`.
diff --git a/_rules/1505.md b/_rules/1505.md
index 6933ee0a..bfe273c1 100644
--- a/_rules/1505.md
+++ b/_rules/1505.md
@@ -7,4 +7,5 @@ All DLLs should be named according to the pattern *Company*.*Component*.dll wher
As an example, consider a group of classes organized under the namespace `AvivaSolutions.Web.Binding` exposed by a certain assembly. According to this guideline, that assembly should be called `AvivaSolutions.Web.Binding.dll`.
-**Exception:** If you decide to combine classes from multiple unrelated namespaces into one assembly, consider suffixing the assembly name with `Core`, but do not use that suffix in the namespaces. For instance, `AvivaSolutions.Consulting.Core.dll`.
+> [!IMPORTANT]
+> Exception: If you decide to combine classes from multiple unrelated namespaces into one assembly, consider suffixing the assembly name with `Core`, but do not use that suffix in the namespaces. For instance, `AvivaSolutions.Consulting.Core.dll`.
diff --git a/_rules/1507.md b/_rules/1507.md
index 611f96e6..047caa07 100644
--- a/_rules/1507.md
+++ b/_rules/1507.md
@@ -3,6 +3,8 @@ rule_id: 1507
rule_category: maintainability
title: Limit the contents of a source code file to one type
---
-**Exception:** Nested types should be part of the same file.
+> [!IMPORTANT]
+> Exception: Nested types should be part of the same file.
-**Exception:** Types that only differ by their number of generic type parameters should be part of the same file.
+> [!IMPORTANT]
+> Exception: Types that only differ by their number of generic type parameters should be part of the same file.
diff --git a/_rules/1515.md b/_rules/1515.md
index e59f64c6..afcb3866 100644
--- a/_rules/1515.md
+++ b/_rules/1515.md
@@ -25,4 +25,5 @@ If the value of one constant depends on the value of another, attempt to make th
public const int HighWaterMark = 3 * MaxItems / 4; // at 75%
}
-**Note:** An enumeration can often be used for certain types of symbolic constants.
+> [!NOTE]
+> An enumeration can often be used for certain types of symbolic constants.
diff --git a/_rules/1522.md b/_rules/1522.md
index b80b0282..381d5833 100644
--- a/_rules/1522.md
+++ b/_rules/1522.md
@@ -7,12 +7,15 @@ Don't use confusing constructs like the one below:
var result = someField = GetSomeMethod();
-**Exception:** Multiple assignments per statement are allowed by using out variables, is-patterns or deconstruction into tuples. Examples:
-
- bool success = int.TryParse(text, out int result);
-
- if ((items[0] is string text) || (items[1] is Action action))
- {
- }
-
- (string name, string value) = SplitNameValuePair(text);
+> [!IMPORTANT]
+> Exception: Multiple assignments per statement are allowed by using out variables, is-patterns or deconstruction into tuples. Examples:
+>
+> ```csharp
+> bool success = int.TryParse(text, out int result);
+>
+> if ((items[0] is string text) || (items[1] is Action action))
+> {
+> }
+>
+> (string name, string value) = SplitNameValuePair(text);
+> ```
diff --git a/_rules/1551.md b/_rules/1551.md
index d247ffca..475afe47 100644
--- a/_rules/1551.md
+++ b/_rules/1551.md
@@ -27,4 +27,5 @@ This guideline only applies to overloads that are intended to provide optional a
The class `MyString` provides three overloads for the `IndexOf` method, but two of them simply call the one with one more parameter. Notice that the same rule applies to class constructors; implement the most complete overload and call that one from the other overloads using the `this()` operator. Also notice that the parameters with the same name should appear in the same position in all overloads.
-**Important:** If you also want to allow derived classes to override these methods, define the most complete overload as a non-private `virtual` method that is called by all overloads.
+> [!IMPORTANT]
+> If you also want to allow derived classes to override these methods, define the most complete overload as a non-private `virtual` method that is called by all overloads.
diff --git a/_rules/1555.md b/_rules/1555.md
index b1ae2215..f14acdc7 100644
--- a/_rules/1555.md
+++ b/_rules/1555.md
@@ -5,6 +5,9 @@ title: Avoid using named arguments
---
C# 4.0's named arguments have been introduced to make it easier to call COM components that are known for offering many optional parameters. If you need named arguments to improve the readability of the call to a method, that method is probably doing too much and should be refactored.
-**Exception:** The only exception where named arguments improve readability is when calling a method of some code base you don't control that has a `bool` parameter, like this:
-
- object[] myAttributes = type.GetCustomAttributes(typeof(MyAttribute), inherit: false);
+> [!IMPORTANT]
+> Exception: The only exception where named arguments improve readability is when calling a method of some code base you don't control that has a `bool` parameter, like this:
+>
+> ```csharp
+> object[] myAttributes = type.GetCustomAttributes(typeof(MyAttribute), inherit: false);
+> ```
diff --git a/_rules/1561.md b/_rules/1561.md
index bb23af2c..5020dc6c 100644
--- a/_rules/1561.md
+++ b/_rules/1561.md
@@ -8,4 +8,5 @@ To keep constructors, methods, delegates and local functions small and focused,
If you want to use more parameters, use a structure or class to pass multiple arguments, as explained in the [Specification design pattern](http://en.wikipedia.org/wiki/Specification_pattern).
In general, the fewer the parameters, the easier it is to understand the method. Additionally, unit testing a method with many parameters requires many scenarios to test.
-**Exception:** A parameter that is a collection of tuples is allowed.
+> [!IMPORTANT]
+> Exception: A parameter that is a collection of tuples is allowed.
diff --git a/_rules/1562.md b/_rules/1562.md
index 387802b6..fe21bd2b 100644
--- a/_rules/1562.md
+++ b/_rules/1562.md
@@ -5,6 +5,9 @@ title: Don't use `ref` or `out` parameters
---
They make code less understandable and might cause people to introduce bugs. Instead, return compound objects or tuples.
-**Exception:** Calling and declaring members that implement the [TryParse](https://learn.microsoft.com/en-us/dotnet/api/system.int32.tryparse) pattern is allowed. For example:
-
- bool success = int.TryParse(text, out int number);
+> [!IMPORTANT]
+> Exception: Calling and declaring members that implement the [TryParse](https://learn.microsoft.com/en-us/dotnet/api/system.int32.tryparse) pattern is allowed. For example:
+>
+> ```csharp
+> bool success = int.TryParse(text, out int number);
+> ```
diff --git a/_rules/1578.md b/_rules/1578.md
index e250d583..4f7b3d07 100644
--- a/_rules/1578.md
+++ b/_rules/1578.md
@@ -30,4 +30,5 @@ This approach:
- Allows using projects or folders to represent functional boundaries
-**Note:** A thin host project (`MyApp.Web`, `MyApp.Api`) that composes all contexts is still appropriate, and shared infrastructure utilities can live in a `MyApp.Infrastructure.Shared` project when genuinely reused.
+> [!NOTE]
+> A thin host project (`MyApp.Web`, `MyApp.Api`) that composes all contexts is still appropriate, and shared infrastructure utilities can live in a `MyApp.Infrastructure.Shared` project when genuinely reused.
diff --git a/_rules/1585.md b/_rules/1585.md
index 6b7c0647..6155e2c3 100644
--- a/_rules/1585.md
+++ b/_rules/1585.md
@@ -29,4 +29,5 @@ Use `required` when:
- A property must always be set to a meaningful value for the object to be valid.
- The type is a DTO or a record-like class used with object initializers.
-**Note:** `required` and `init`-only properties are complementary. Combine them (`public required string Name { get; init; }`) to enforce both initialization and immutability.
+> [!NOTE]
+> `required` and `init`-only properties are complementary. Combine them (`public required string Name { get; init; }`) to enforce both initialization and immutability.
diff --git a/_rules/1702.md b/_rules/1702.md
index db12c1d5..135e17df 100644
--- a/_rules/1702.md
+++ b/_rules/1702.md
@@ -25,4 +25,5 @@ title: Use proper casing for language elements
| Variables declared using tuple syntax | Camel | `(string first, string last) = ("John", "Doe");`
`var (first, last) = ("John", "Doe");`
|
| Local variable | Camel | `listOfValues` |
-**Note:** in case of ambiguity, the rule higher in the table wins.
+> [!NOTE]
+> in case of ambiguity, the rule higher in the table wins.
diff --git a/_rules/1706.md b/_rules/1706.md
index 4e69b89c..3c36ddab 100644
--- a/_rules/1706.md
+++ b/_rules/1706.md
@@ -5,4 +5,5 @@ title: Don't use abbreviations
---
For example, use `ChangePassword` rather than `ChangePwd`. Avoid single-character variable names, such as `i` or `q`. Use `index` or `query` instead.
-**Exceptions:** Use well-known acronyms and abbreviations that are widely accepted or well-known in your work domain. For instance, use acronym `UI` instead of `UserInterface` and abbreviation `Id` instead of `Identity`. For abbreviations of two letters, use all capitals (e.g. `IO`). For abbreviations longer than two letters, only capitalize the first letter (e.g. `Http`, `Xml`, `Json`).
+> [!IMPORTANT]
+> Exceptions: Use well-known acronyms and abbreviations that are widely accepted or well-known in your work domain. For instance, use acronym `UI` instead of `UserInterface` and abbreviation `Id` instead of `Identity`. For abbreviations of two letters, use all capitals (e.g. `IO`). For abbreviations longer than two letters, only capitalize the first letter (e.g. `Http`, `Xml`, `Json`).
diff --git a/_rules/1725.md b/_rules/1725.md
index b6666ab5..f5da6bed 100644
--- a/_rules/1725.md
+++ b/_rules/1725.md
@@ -12,4 +12,5 @@ For instance, the following namespaces are good examples of that guideline.
FluentAssertion.Primitives
CaliburnMicro.Extensions
-**Note:** Never allow namespaces to contain the name of a type, but a noun in its plural form (e.g. `Collections`) is usually OK.
+> [!NOTE]
+> Never allow namespaces to contain the name of a type, but a noun in its plural form (e.g. `Collections`) is usually OK.
diff --git a/_rules/1739.md b/_rules/1739.md
index f811155d..1ff2fee4 100644
--- a/_rules/1739.md
+++ b/_rules/1739.md
@@ -7,4 +7,5 @@ If you use a lambda expression (for instance, to subscribe to an event) and the
button.Click += (_, __) => HandleClick();
-**Note** If using C# 9 or higher, use a single underscore (discard) for all unused lambda parameters and variables.
+> [!NOTE]
+> If using C# 9 or higher, use a single underscore (discard) for all unused lambda parameters and variables.
diff --git a/_rules/1820.md b/_rules/1820.md
index d2af5e8e..9c960d73 100644
--- a/_rules/1820.md
+++ b/_rules/1820.md
@@ -5,4 +5,5 @@ title: Only use `async`/`await` for I/O-bound or long-running activities
---
The use of `async`/`await` won't automagically run something on a worker thread as `Task.Run` does. It just suspends execution at the await point and resumes execution after the task has completed. In other words, use `async`/`await` only for I/O-bound operations.
-**Exception:** Tasks returned from `Task.Run` (which starts a background operation in parallel) can eventually be awaited to obtain their results, or passed to a method like `Task.WhenAll` that is awaited.
+> [!IMPORTANT]
+> Exception: Tasks returned from `Task.Run` (which starts a background operation in parallel) can eventually be awaited to obtain their results, or passed to a method like `Task.WhenAll` that is awaited.
diff --git a/_rules/2225.md b/_rules/2225.md
index 81d369a1..81c4aa8b 100644
--- a/_rules/2225.md
+++ b/_rules/2225.md
@@ -30,11 +30,12 @@ if (items is [int first, int second, ..])
}
```
-**Tip:** Deconstruction also works in `foreach` loops:
-
-```csharp
-foreach ((int key, int value) in dictionary)
-{
- Console.WriteLine($"{key}: {value}");
-}
-```
+> [!TIP]
+> Deconstruction also works in `foreach` loops:
+>
+> ```csharp
+> foreach ((int key, int value) in dictionary)
+> {
+> Console.WriteLine($"{key}: {value}");
+> }
+> ```
diff --git a/_rules/2305.md b/_rules/2305.md
index be923fe8..3abb149e 100644
--- a/_rules/2305.md
+++ b/_rules/2305.md
@@ -7,6 +7,8 @@ Good functional documentation allows Visual Studio, [Visual Studio Code](https:/
See also [{{ site.default_rule_prefix }}2306](/documentation-guidelines#{{ site.default_rule_prefix }}2306)
-**Exception:** Sometimes the purpose is so obvious that the documentation would become repetitive. Don't do that.
+> [!IMPORTANT]
+> Exception: Sometimes the purpose is so obvious that the documentation would become repetitive. Don't do that.
-**Note:** You don't need to use `/// ` on overriding or implementing members. Visual Studio and Rider will automatically inherit documentation from the base type or interface.
+> [!NOTE]
+> You don't need to use `/// ` on overriding or implementing members. Visual Studio and Rider will automatically inherit documentation from the base type or interface.
diff --git a/_sass/custom/_generic.scss b/_sass/custom/_generic.scss
index 86be819b..809d690f 100644
--- a/_sass/custom/_generic.scss
+++ b/_sass/custom/_generic.scss
@@ -49,4 +49,52 @@ li {
color: $blue;
}
}
-}
\ No newline at end of file
+}
+
+.page__content blockquote.callout {
+ margin: 2rem 0;
+ padding: 1rem 1.25rem;
+ border-left-width: 0.35rem;
+ border-radius: 0.25rem;
+ color: $black;
+ background: mix($white, $blue-light, 55%);
+
+ p,
+ li {
+ line-height: 28px !important;
+ }
+
+ > :last-child {
+ margin-bottom: 0;
+ }
+}
+
+.callout__title {
+ margin-bottom: 0.5rem !important;
+ font-size: 0.9rem !important;
+ font-weight: 900;
+ line-height: 1.4 !important;
+ text-transform: uppercase;
+ letter-spacing: 0.04em;
+}
+
+.callout--note {
+ border-left-color: $blue;
+}
+
+.callout--tip {
+ border-left-color: #2f855a;
+ background: #eefaf3 !important;
+}
+
+.callout--important,
+.callout--exception {
+ border-left-color: #c05621;
+ background: #fff4eb !important;
+}
+
+.callout--warning,
+.callout--caution {
+ border-left-color: #b7791f;
+ background: #fff9e6 !important;
+}
From f08bcb6626135cd2661f18669b4f17c23b518aa8 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 16 May 2026 19:47:19 +0000
Subject: [PATCH 3/4] docs: finalize callout migration
Agent-Logs-Url: https://github.com/dennisdoomen/CSharpGuidelines/sessions/2204c2c3-0c9b-4950-bc91-79931ab96c96
Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com>
---
Build/obj/_build.csproj.nuget.dgspec.json | 101 +
Build/obj/_build.csproj.nuget.g.props | 18 +
Build/obj/_build.csproj.nuget.g.targets | 7 +
Build/obj/project.assets.json | 5754 +++++++++++++++++++++
Build/obj/project.nuget.cache | 128 +
5 files changed, 6008 insertions(+)
create mode 100644 Build/obj/_build.csproj.nuget.dgspec.json
create mode 100644 Build/obj/_build.csproj.nuget.g.props
create mode 100644 Build/obj/_build.csproj.nuget.g.targets
create mode 100644 Build/obj/project.assets.json
create mode 100644 Build/obj/project.nuget.cache
diff --git a/Build/obj/_build.csproj.nuget.dgspec.json b/Build/obj/_build.csproj.nuget.dgspec.json
new file mode 100644
index 00000000..9f67fff6
--- /dev/null
+++ b/Build/obj/_build.csproj.nuget.dgspec.json
@@ -0,0 +1,101 @@
+{
+ "format": 1,
+ "restore": {
+ "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj": {}
+ },
+ "projects": {
+ "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
+ "projectName": "_build",
+ "projectPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
+ "packagesPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages",
+ "outputPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/runner/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.300"
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "dependencies": {
+ "NuGet.Packaging": {
+ "target": "Package",
+ "version": "[7.6.0, )"
+ },
+ "Nuke.Common": {
+ "target": "Package",
+ "version": "[10.*, )"
+ },
+ "System.Security.Cryptography.Xml": {
+ "target": "Package",
+ "version": "[9.0.15, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "GitVersion.Tool",
+ "version": "[6.7.0, 6.7.0]"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[10.0.8, 10.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Host.linux-x64",
+ "version": "[10.0.8, 10.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[10.0.8, 10.0.8]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/.dotnet/sdk/10.0.300/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Build/obj/_build.csproj.nuget.g.props b/Build/obj/_build.csproj.nuget.g.props
new file mode 100644
index 00000000..0e1f7263
--- /dev/null
+++ b/Build/obj/_build.csproj.nuget.g.props
@@ -0,0 +1,18 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages
+ /tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages
+ PackageReference
+ 7.0.0
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Build/obj/_build.csproj.nuget.g.targets b/Build/obj/_build.csproj.nuget.g.targets
new file mode 100644
index 00000000..d4c0fa32
--- /dev/null
+++ b/Build/obj/_build.csproj.nuget.g.targets
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Build/obj/project.assets.json b/Build/obj/project.assets.json
new file mode 100644
index 00000000..68d2a2fa
--- /dev/null
+++ b/Build/obj/project.assets.json
@@ -0,0 +1,5754 @@
+{
+ "version": 4,
+ "targets": {
+ "net10.0": {
+ "Azure.Core/1.50.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
+ "System.ClientModel": "1.8.0",
+ "System.Memory.Data": "8.0.1"
+ },
+ "compile": {
+ "lib/net8.0/Azure.Core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Azure.Core.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Azure.Identity/1.17.1": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.50.0",
+ "Microsoft.Identity.Client": "4.78.0",
+ "Microsoft.Identity.Client.Extensions.Msal": "4.78.0"
+ },
+ "compile": {
+ "lib/net8.0/Azure.Identity.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Azure.Identity.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Azure.Security.KeyVault.Certificates/4.8.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.46.2"
+ },
+ "compile": {
+ "lib/net8.0/Azure.Security.KeyVault.Certificates.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Azure.Security.KeyVault.Certificates.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Azure.Security.KeyVault.Keys/4.8.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.46.2"
+ },
+ "compile": {
+ "lib/net8.0/Azure.Security.KeyVault.Keys.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Azure.Security.KeyVault.Keys.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Azure.Security.KeyVault.Secrets/4.8.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Core": "1.46.2"
+ },
+ "compile": {
+ "lib/net8.0/Azure.Security.KeyVault.Secrets.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Azure.Security.KeyVault.Secrets.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Glob/1.1.9": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Glob.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Glob.dll": {}
+ }
+ },
+ "JetBrains.Annotations/2025.2.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "related": ".deps.json;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/JetBrains.Annotations.dll": {
+ "related": ".deps.json;.xml"
+ }
+ }
+ },
+ "matkoch.Microsoft.VisualStudio.SolutionPersistence/1.0.61": {
+ "type": "package",
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Threading.Tasks.Extensions": "4.5.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.ApplicationInsights/2.23.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.DiagnosticSource": "5.0.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Build/18.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Build.Framework": "18.0.2",
+ "Microsoft.NET.StringTools": "18.0.2",
+ "System.Configuration.ConfigurationManager": "9.0.0",
+ "System.Diagnostics.EventLog": "9.0.0",
+ "System.Reflection.MetadataLoadContext": "9.0.0",
+ "System.Security.Cryptography.ProtectedData": "9.0.6"
+ },
+ "compile": {
+ "ref/net10.0/Microsoft.Build.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/_._": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Microsoft.Build.Framework/18.0.2": {
+ "type": "package",
+ "compile": {
+ "ref/net10.0/Microsoft.Build.Framework.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/_._": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Microsoft.Build.Locator/1.7.8": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Microsoft.Build.Locator.dll": {}
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.Build.Locator.dll": {}
+ },
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "Microsoft.Build.Tasks.Core/18.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Build.Framework": "18.0.2",
+ "Microsoft.Build.Utilities.Core": "18.0.2",
+ "Microsoft.NET.StringTools": "18.0.2",
+ "System.CodeDom": "9.0.0",
+ "System.Configuration.ConfigurationManager": "9.0.0",
+ "System.Diagnostics.EventLog": "9.0.0",
+ "System.Formats.Nrbf": "9.0.0",
+ "System.Resources.Extensions": "9.0.0",
+ "System.Security.Cryptography.Pkcs": "9.0.6",
+ "System.Security.Cryptography.ProtectedData": "9.0.6",
+ "System.Security.Cryptography.Xml": "9.0.0"
+ },
+ "compile": {
+ "ref/net10.0/Microsoft.Build.Tasks.Core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/_._": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Microsoft.Build.Utilities.Core/18.0.2": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Build.Framework": "18.0.2",
+ "Microsoft.NET.StringTools": "18.0.2",
+ "System.Configuration.ConfigurationManager": "9.0.0",
+ "System.Diagnostics.EventLog": "9.0.0",
+ "System.Security.Cryptography.ProtectedData": "9.0.6"
+ },
+ "compile": {
+ "ref/net10.0/Microsoft.Build.Utilities.Core.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/_._": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/10.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.3": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
+ }
+ },
+ "Microsoft.Identity.Client/4.78.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "8.14.0",
+ "System.Diagnostics.DiagnosticSource": "6.0.1"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Identity.Client.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Identity.Client.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.78.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Identity.Client": "4.78.0",
+ "System.Security.Cryptography.ProtectedData": "4.5.0"
+ },
+ "compile": {
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/8.14.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.NET.StringTools/18.0.2": {
+ "type": "package",
+ "compile": {
+ "ref/net10.0/Microsoft.NET.StringTools.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/_._": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/1.1.1": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "Namotion.Reflection/3.4.3": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Namotion.Reflection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Namotion.Reflection.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Newtonsoft.Json/13.0.4": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Newtonsoft.Json.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NJsonSchema/11.5.2": {
+ "type": "package",
+ "dependencies": {
+ "NJsonSchema.Annotations": "11.5.2",
+ "Namotion.Reflection": "3.4.3",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "compile": {
+ "lib/net8.0/NJsonSchema.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/NJsonSchema.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NJsonSchema.Annotations/11.5.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/NJsonSchema.Annotations.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/NJsonSchema.Annotations.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NJsonSchema.NewtonsoftJson/11.5.2": {
+ "type": "package",
+ "dependencies": {
+ "NJsonSchema": "11.5.2",
+ "Newtonsoft.Json": "13.0.3"
+ },
+ "compile": {
+ "lib/net8.0/NJsonSchema.NewtonsoftJson.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/NJsonSchema.NewtonsoftJson.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Common/7.6.0": {
+ "type": "package",
+ "dependencies": {
+ "NuGet.Frameworks": "7.6.0"
+ },
+ "compile": {
+ "lib/net8.0/NuGet.Common.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/NuGet.Common.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Configuration/7.6.0": {
+ "type": "package",
+ "dependencies": {
+ "NuGet.Common": "7.6.0",
+ "System.Security.Cryptography.ProtectedData": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/NuGet.Configuration.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/NuGet.Configuration.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Frameworks/7.6.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/NuGet.Frameworks.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/NuGet.Frameworks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Packaging/7.6.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.3",
+ "NuGet.Configuration": "7.6.0",
+ "NuGet.Versioning": "7.6.0",
+ "System.Security.Cryptography.Pkcs": "8.0.1"
+ },
+ "compile": {
+ "lib/net8.0/NuGet.Packaging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/NuGet.Packaging.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "NuGet.Versioning/7.6.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/NuGet.Versioning.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/NuGet.Versioning.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Build/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.ApplicationInsights": "2.23.0",
+ "Microsoft.Extensions.DependencyModel": "10.0.0",
+ "NJsonSchema": "11.5.2",
+ "NJsonSchema.NewtonsoftJson": "11.5.2",
+ "Nuke.Build.Shared": "10.1.0",
+ "Nuke.ProjectModel": "10.1.0",
+ "Nuke.SolutionModel": "10.1.0",
+ "Nuke.Tooling": "10.1.0",
+ "Nuke.Utilities": "10.1.0",
+ "Nuke.Utilities.IO.Globbing": "10.1.0",
+ "Nuke.Utilities.Net": "10.1.0",
+ "Nuke.Utilities.Text.Json": "10.1.0",
+ "Nuke.Utilities.Text.Yaml": "10.1.0",
+ "Serilog.Formatting.Compact": "3.0.0",
+ "Serilog.Formatting.Compact.Reader": "4.0.0",
+ "Serilog.Sinks.Console": "6.1.1",
+ "Serilog.Sinks.File": "7.0.0"
+ },
+ "compile": {
+ "lib/net10.0/Nuke.Build.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Nuke.Build.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Build.Shared/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Nuke.Utilities": "10.1.0"
+ },
+ "compile": {
+ "lib/net10.0/Nuke.Build.Shared.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Nuke.Build.Shared.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Common/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Azure.Identity": "1.17.1",
+ "Azure.Security.KeyVault.Certificates": "4.8.0",
+ "Azure.Security.KeyVault.Keys": "4.8.0",
+ "Azure.Security.KeyVault.Secrets": "4.8.0",
+ "Nuke.Build": "10.1.0",
+ "Nuke.Build.Shared": "10.1.0",
+ "Nuke.ProjectModel": "10.1.0",
+ "Nuke.SolutionModel": "10.1.0",
+ "Nuke.Tooling": "10.1.0",
+ "Nuke.Utilities": "10.1.0",
+ "Nuke.Utilities.IO.Compression": "10.1.0",
+ "Nuke.Utilities.IO.Globbing": "10.1.0",
+ "Nuke.Utilities.Net": "10.1.0",
+ "Nuke.Utilities.Text.Json": "10.1.0",
+ "Octokit": "14.0.0"
+ },
+ "compile": {
+ "lib/net10.0/Nuke.Common.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Nuke.Common.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "build/Nuke.Common.props": {},
+ "build/Nuke.Common.targets": {}
+ }
+ },
+ "Nuke.ProjectModel/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Build": "18.0.2",
+ "Microsoft.Build.Framework": "18.0.2",
+ "Microsoft.Build.Locator": "1.7.8",
+ "Microsoft.Build.Tasks.Core": "18.0.2",
+ "Microsoft.Build.Utilities.Core": "18.0.2",
+ "Nuke.SolutionModel": "10.1.0",
+ "Nuke.Tooling": "10.1.0",
+ "Nuke.Utilities": "10.1.0"
+ },
+ "compile": {
+ "lib/net10.0/Nuke.ProjectModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Nuke.ProjectModel.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.SolutionModel/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Nuke.Utilities": "10.1.0",
+ "matkoch.Microsoft.VisualStudio.SolutionPersistence": "1.0.61"
+ },
+ "compile": {
+ "lib/net10.0/Nuke.SolutionModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Nuke.SolutionModel.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Tooling/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.4",
+ "NuGet.Packaging": "6.12.1",
+ "Nuke.Utilities": "10.1.0",
+ "Nuke.Utilities.Text.Json": "10.1.0",
+ "Serilog": "4.3.0"
+ },
+ "compile": {
+ "lib/net10.0/Nuke.Tooling.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Nuke.Tooling.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Utilities/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "JetBrains.Annotations": "2025.2.2"
+ },
+ "compile": {
+ "lib/net10.0/Nuke.Utilities.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net10.0/Nuke.Utilities.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Utilities.IO.Compression/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Nuke.Utilities": "10.1.0",
+ "SharpZipLib": "1.4.2"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nuke.Utilities.IO.Compression.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nuke.Utilities.IO.Compression.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Utilities.IO.Globbing/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Glob": "1.1.9",
+ "Nuke.Utilities": "10.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Utilities.Net/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.4",
+ "Nuke.Utilities": "10.1.0",
+ "System.Net.Http": "4.3.4"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nuke.Utilities.Net.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nuke.Utilities.Net.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Utilities.Text.Json/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.4",
+ "Nuke.Utilities": "10.1.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nuke.Utilities.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nuke.Utilities.Text.Json.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Nuke.Utilities.Text.Yaml/10.1.0": {
+ "type": "package",
+ "dependencies": {
+ "Nuke.Utilities": "10.1.0",
+ "YamlDotNet": "16.3.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Octokit/14.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/Octokit.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/Octokit.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "debian.8-x64"
+ }
+ }
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.23-x64"
+ }
+ }
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "fedora.24-x64"
+ }
+ }
+ },
+ "runtime.native.System/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "dependencies": {
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
+ },
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ }
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.13.2-x64"
+ }
+ }
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "opensuse.42.1-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
+ "assetType": "native",
+ "rid": "osx.10.10-x64"
+ }
+ }
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "rhel.7-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.14.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.04-x64"
+ }
+ }
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "type": "package",
+ "runtimeTargets": {
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
+ "assetType": "native",
+ "rid": "ubuntu.16.10-x64"
+ }
+ }
+ },
+ "Serilog/4.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/Serilog.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Serilog.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "build/_._": {}
+ }
+ },
+ "Serilog.Formatting.Compact/3.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Serilog": "4.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Serilog.Formatting.Compact.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Serilog.Formatting.Compact.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Serilog.Formatting.Compact.Reader/4.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Newtonsoft.Json": "13.0.3",
+ "Serilog": "4.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Serilog.Formatting.Compact.Reader.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Serilog.Formatting.Compact.Reader.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Serilog.Sinks.Console/6.1.1": {
+ "type": "package",
+ "dependencies": {
+ "Serilog": "4.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Serilog.Sinks.Console.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Serilog.Sinks.Console.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Serilog.Sinks.File/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Serilog": "4.2.0"
+ },
+ "compile": {
+ "lib/net9.0/Serilog.Sinks.File.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/Serilog.Sinks.File.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SharpZipLib/1.4.2": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "System.ClientModel/1.8.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.3",
+ "System.Memory.Data": "8.0.1"
+ },
+ "compile": {
+ "lib/net9.0/System.ClientModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/System.ClientModel.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.CodeDom/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/System.CodeDom.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "System.Collections/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
+ }
+ },
+ "System.Configuration.ConfigurationManager/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.EventLog": "9.0.0",
+ "System.Security.Cryptography.ProtectedData": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/System.Configuration.ConfigurationManager.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Diagnostics.EventLog/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/System.Diagnostics.EventLog.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net9.0/_._": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Formats.Nrbf/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/System.Formats.Nrbf.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "System.Globalization/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.IO/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.IO.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
+ }
+ },
+ "System.Linq/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Linq.dll": {}
+ }
+ },
+ "System.Memory/4.5.5": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "System.Memory.Data/8.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/System.Memory.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/System.Memory.Data.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Net.Http/4.3.4": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.1",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Diagnostics.DiagnosticSource": "4.3.0",
+ "System.Diagnostics.Tracing": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Extensions": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.Net.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Security.Cryptography.X509Certificates": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Net.Http.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Net.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Net.Primitives.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Reflection.MetadataLoadContext/9.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/System.Reflection.MetadataLoadContext.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Resources.Extensions/9.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Formats.Nrbf": "9.0.0"
+ },
+ "compile": {
+ "lib/net9.0/System.Resources.Extensions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Globalization": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.0/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/System.Runtime.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.5/_._": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Runtime.Handles.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Reflection": "4.3.0",
+ "System.Reflection.Primitives": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Handles": "4.3.0"
+ },
+ "compile": {
+ "ref/netcoreapp1.1/_._": {}
+ }
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Globalization": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.1/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
+ }
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "osx"
+ },
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.IO": "4.3.0",
+ "System.Reflection": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Collections.Concurrent": "4.3.0",
+ "System.Linq": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Collections": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.6/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ }
+ }
+ },
+ "System.Security.Cryptography.Pkcs/9.0.15": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Threading": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
+ }
+ },
+ "System.Security.Cryptography.ProtectedData/9.0.6": {
+ "type": "package",
+ "compile": {
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "System.Collections": "4.3.0",
+ "System.Diagnostics.Debug": "4.3.0",
+ "System.Globalization": "4.3.0",
+ "System.Globalization.Calendars": "4.3.0",
+ "System.IO": "4.3.0",
+ "System.IO.FileSystem": "4.3.0",
+ "System.IO.FileSystem.Primitives": "4.3.0",
+ "System.Resources.ResourceManager": "4.3.0",
+ "System.Runtime": "4.3.0",
+ "System.Runtime.Extensions": "4.3.0",
+ "System.Runtime.Handles": "4.3.0",
+ "System.Runtime.InteropServices": "4.3.0",
+ "System.Runtime.Numerics": "4.3.0",
+ "System.Security.Cryptography.Algorithms": "4.3.0",
+ "System.Security.Cryptography.Cng": "4.3.0",
+ "System.Security.Cryptography.Csp": "4.3.0",
+ "System.Security.Cryptography.Encoding": "4.3.0",
+ "System.Security.Cryptography.OpenSsl": "4.3.0",
+ "System.Security.Cryptography.Primitives": "4.3.0",
+ "System.Text.Encoding": "4.3.0",
+ "System.Threading": "4.3.0",
+ "runtime.native.System": "4.3.0",
+ "runtime.native.System.Net.Http": "4.3.0",
+ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
+ "assetType": "runtime",
+ "rid": "unix"
+ },
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
+ "assetType": "runtime",
+ "rid": "win"
+ }
+ }
+ },
+ "System.Security.Cryptography.Xml/9.0.15": {
+ "type": "package",
+ "dependencies": {
+ "System.Security.Cryptography.Pkcs": "9.0.15"
+ },
+ "compile": {
+ "lib/net9.0/System.Security.Cryptography.Xml.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net9.0/System.Security.Cryptography.Xml.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net8.0/_._": {}
+ }
+ },
+ "System.Text.Encoding/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Text.Encoding.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Threading/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Runtime": "4.3.0",
+ "System.Threading.Tasks": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard1.3/System.Threading.dll": {}
+ }
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "1.1.0",
+ "Microsoft.NETCore.Targets": "1.1.0",
+ "System.Runtime": "4.3.0"
+ },
+ "compile": {
+ "ref/netstandard1.3/System.Threading.Tasks.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "type": "package",
+ "compile": {
+ "ref/netcoreapp2.1/_._": {}
+ },
+ "runtime": {
+ "lib/netcoreapp2.1/_._": {}
+ }
+ },
+ "YamlDotNet/16.3.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/YamlDotNet.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/YamlDotNet.dll": {
+ "related": ".xml"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Azure.Core/1.50.0": {
+ "sha512": "GBNKZEhdIbTXxedvD3R7I/yDVFX9jJJEz02kCziFSJxspSQ5RMHc3GktulJ1s7+ffXaXD7kMgrtdQTaggyInLw==",
+ "type": "package",
+ "path": "azure.core/1.50.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.core.1.50.0.nupkg.sha512",
+ "azure.core.nuspec",
+ "azureicon.png",
+ "lib/net462/Azure.Core.dll",
+ "lib/net462/Azure.Core.xml",
+ "lib/net472/Azure.Core.dll",
+ "lib/net472/Azure.Core.xml",
+ "lib/net8.0/Azure.Core.dll",
+ "lib/net8.0/Azure.Core.xml",
+ "lib/netstandard2.0/Azure.Core.dll",
+ "lib/netstandard2.0/Azure.Core.xml"
+ ]
+ },
+ "Azure.Identity/1.17.1": {
+ "sha512": "MSZkBrctcpiGxs9Cvr2VKKoN6qFLZlP3I6xuCWJ9iTgitI5Rgxtk5gfOSpXPZE3+CJmZ/mnqpQyGyjawFn5Vvg==",
+ "type": "package",
+ "path": "azure.identity/1.17.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.identity.1.17.1.nupkg.sha512",
+ "azure.identity.nuspec",
+ "azureicon.png",
+ "lib/net8.0/Azure.Identity.dll",
+ "lib/net8.0/Azure.Identity.xml",
+ "lib/netstandard2.0/Azure.Identity.dll",
+ "lib/netstandard2.0/Azure.Identity.xml"
+ ]
+ },
+ "Azure.Security.KeyVault.Certificates/4.8.0": {
+ "sha512": "48EHvsZM0hQow0PP4PAkWZYcE/tmjfx7az07GrqU2Q/0p3O3Vm/F+bEu1iVREBYzSV7uHHPikyJyBnXClfKuJA==",
+ "type": "package",
+ "path": "azure.security.keyvault.certificates/4.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.security.keyvault.certificates.4.8.0.nupkg.sha512",
+ "azure.security.keyvault.certificates.nuspec",
+ "azureicon.png",
+ "lib/net8.0/Azure.Security.KeyVault.Certificates.dll",
+ "lib/net8.0/Azure.Security.KeyVault.Certificates.xml",
+ "lib/netstandard2.0/Azure.Security.KeyVault.Certificates.dll",
+ "lib/netstandard2.0/Azure.Security.KeyVault.Certificates.xml"
+ ]
+ },
+ "Azure.Security.KeyVault.Keys/4.8.0": {
+ "sha512": "3rueqKRzNZdW+gEWox07Hpxq3n+0AZdRw3QI4GC3GBzLCw9n00LXgy4upow00bAuQJ9QGX2xwzJPg2/wALPYDA==",
+ "type": "package",
+ "path": "azure.security.keyvault.keys/4.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.security.keyvault.keys.4.8.0.nupkg.sha512",
+ "azure.security.keyvault.keys.nuspec",
+ "azureicon.png",
+ "lib/net8.0/Azure.Security.KeyVault.Keys.dll",
+ "lib/net8.0/Azure.Security.KeyVault.Keys.xml",
+ "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll",
+ "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml"
+ ]
+ },
+ "Azure.Security.KeyVault.Secrets/4.8.0": {
+ "sha512": "tmcIgo+de2K5+PTBRNlnFLQFbmSoyuT9RpDr5MwKS6mIfNxLPQpARkRAP91r3tmeiJ9j/UCO0F+hTlk1Bk7HNQ==",
+ "type": "package",
+ "path": "azure.security.keyvault.secrets/4.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "README.md",
+ "azure.security.keyvault.secrets.4.8.0.nupkg.sha512",
+ "azure.security.keyvault.secrets.nuspec",
+ "azureicon.png",
+ "lib/net8.0/Azure.Security.KeyVault.Secrets.dll",
+ "lib/net8.0/Azure.Security.KeyVault.Secrets.xml",
+ "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll",
+ "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.xml"
+ ]
+ },
+ "Glob/1.1.9": {
+ "sha512": "AfK5+ECWYTP7G3AAdnU8IfVj+QpGjrh9GC2mpdcJzCvtQ4pnerAGwHsxJ9D4/RnhDUz2DSzd951O/lQjQby2Sw==",
+ "type": "package",
+ "path": "glob/1.1.9",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "glob.1.1.9.nupkg.sha512",
+ "glob.nuspec",
+ "lib/net40/Glob.dll",
+ "lib/net45/Glob.dll",
+ "lib/net46/Glob.dll",
+ "lib/netstandard1.3/Glob.dll",
+ "lib/netstandard2.0/Glob.dll"
+ ]
+ },
+ "JetBrains.Annotations/2025.2.2": {
+ "sha512": "0X56ZRizuHdrnPpgXjWV7f2tQO1FlQg5O1967OGKnI/4ZRNOK642J8L7brM1nYvrxTTU5TP1yRyXLRLaXLPQ8A==",
+ "type": "package",
+ "path": "jetbrains.annotations/2025.2.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "jetbrains.annotations.2025.2.2.nupkg.sha512",
+ "jetbrains.annotations.nuspec",
+ "lib/net20/JetBrains.Annotations.dll",
+ "lib/net20/JetBrains.Annotations.xml",
+ "lib/netstandard1.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard1.0/JetBrains.Annotations.dll",
+ "lib/netstandard1.0/JetBrains.Annotations.xml",
+ "lib/netstandard2.0/JetBrains.Annotations.deps.json",
+ "lib/netstandard2.0/JetBrains.Annotations.dll",
+ "lib/netstandard2.0/JetBrains.Annotations.xml",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
+ "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml",
+ "readme.md"
+ ]
+ },
+ "matkoch.Microsoft.VisualStudio.SolutionPersistence/1.0.61": {
+ "sha512": "EfEzClmsFSy1ukbJ9MeDB0zdAZ2k9HLxd6I3Hiv9Gz14Ql26XQ0GVXJESjTda0T78K/7UiraDx3w5AwRkxb5lg==",
+ "type": "package",
+ "path": "matkoch.microsoft.visualstudio.solutionpersistence/1.0.61",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.dll",
+ "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.xml",
+ "matkoch.microsoft.visualstudio.solutionpersistence.1.0.61.nupkg.sha512",
+ "matkoch.microsoft.visualstudio.solutionpersistence.nuspec"
+ ]
+ },
+ "Microsoft.ApplicationInsights/2.23.0": {
+ "sha512": "nWArUZTdU7iqZLycLKWe0TDms48KKGE6pONH2terYNa8REXiqixrMOkf1sk5DHGMaUTqONU2YkS4SAXBhLStgw==",
+ "type": "package",
+ "path": "microsoft.applicationinsights/2.23.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "icon.png",
+ "lib/net452/Microsoft.ApplicationInsights.dll",
+ "lib/net452/Microsoft.ApplicationInsights.pdb",
+ "lib/net452/Microsoft.ApplicationInsights.xml",
+ "lib/net46/Microsoft.ApplicationInsights.dll",
+ "lib/net46/Microsoft.ApplicationInsights.pdb",
+ "lib/net46/Microsoft.ApplicationInsights.xml",
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.dll",
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb",
+ "lib/netstandard2.0/Microsoft.ApplicationInsights.xml",
+ "microsoft.applicationinsights.2.23.0.nupkg.sha512",
+ "microsoft.applicationinsights.nuspec"
+ ]
+ },
+ "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
+ "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
+ "type": "package",
+ "path": "microsoft.bcl.asyncinterfaces/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
+ "buildTransitive/net462/_._",
+ "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
+ "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
+ "microsoft.bcl.asyncinterfaces.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Build/18.0.2": {
+ "sha512": "MlcYsFVJbA7S1ByOf9DbuPMQ08nlF88VkqkIjmBkIiasA/M0Zo87H6Vk44e/SuLffomGGYSr2Hh5El6UEDDgKw==",
+ "type": "package",
+ "path": "microsoft.build/18.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "MSBuild-NuGet-Icon.png",
+ "README.md",
+ "lib/net10.0/Microsoft.Build.dll",
+ "lib/net10.0/Microsoft.Build.pdb",
+ "lib/net10.0/Microsoft.Build.xml",
+ "lib/net472/Microsoft.Build.dll",
+ "lib/net472/Microsoft.Build.pdb",
+ "lib/net472/Microsoft.Build.xml",
+ "microsoft.build.18.0.2.nupkg.sha512",
+ "microsoft.build.nuspec",
+ "notices/THIRDPARTYNOTICES.txt",
+ "ref/net10.0/Microsoft.Build.dll",
+ "ref/net10.0/Microsoft.Build.xml",
+ "ref/net472/Microsoft.Build.dll",
+ "ref/net472/Microsoft.Build.xml"
+ ]
+ },
+ "Microsoft.Build.Framework/18.0.2": {
+ "sha512": "sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==",
+ "type": "package",
+ "path": "microsoft.build.framework/18.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "MSBuild-NuGet-Icon.png",
+ "README.md",
+ "lib/net10.0/Microsoft.Build.Framework.dll",
+ "lib/net10.0/Microsoft.Build.Framework.pdb",
+ "lib/net10.0/Microsoft.Build.Framework.xml",
+ "lib/net472/Microsoft.Build.Framework.dll",
+ "lib/net472/Microsoft.Build.Framework.pdb",
+ "lib/net472/Microsoft.Build.Framework.xml",
+ "microsoft.build.framework.18.0.2.nupkg.sha512",
+ "microsoft.build.framework.nuspec",
+ "notices/THIRDPARTYNOTICES.txt",
+ "ref/net10.0/Microsoft.Build.Framework.dll",
+ "ref/net10.0/Microsoft.Build.Framework.xml",
+ "ref/net472/Microsoft.Build.Framework.dll",
+ "ref/net472/Microsoft.Build.Framework.xml",
+ "ref/netstandard2.0/Microsoft.Build.Framework.dll",
+ "ref/netstandard2.0/Microsoft.Build.Framework.xml"
+ ]
+ },
+ "Microsoft.Build.Locator/1.7.8": {
+ "sha512": "sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==",
+ "type": "package",
+ "path": "microsoft.build.locator/1.7.8",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "MSBuild-NuGet-Icon.png",
+ "build/Microsoft.Build.Locator.props",
+ "build/Microsoft.Build.Locator.targets",
+ "lib/net46/Microsoft.Build.Locator.dll",
+ "lib/net6.0/Microsoft.Build.Locator.dll",
+ "microsoft.build.locator.1.7.8.nupkg.sha512",
+ "microsoft.build.locator.nuspec"
+ ]
+ },
+ "Microsoft.Build.Tasks.Core/18.0.2": {
+ "sha512": "ff9DeP4WUVxk6Ojm7qcK4HC+zXaKl0IJYXhS+lC51Sx76QtaQfPGZDJz9Go5ERQecmPV/HZ5brZAa9U36l2laA==",
+ "type": "package",
+ "path": "microsoft.build.tasks.core/18.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "MSBuild-NuGet-Icon.png",
+ "README.md",
+ "lib/net10.0/Microsoft.Build.Tasks.Core.dll",
+ "lib/net10.0/Microsoft.Build.Tasks.Core.pdb",
+ "lib/net10.0/Microsoft.Build.Tasks.Core.xml",
+ "lib/net472/Microsoft.Build.Tasks.Core.dll",
+ "lib/net472/Microsoft.Build.Tasks.Core.pdb",
+ "lib/net472/Microsoft.Build.Tasks.Core.xml",
+ "microsoft.build.tasks.core.18.0.2.nupkg.sha512",
+ "microsoft.build.tasks.core.nuspec",
+ "notices/THIRDPARTYNOTICES.txt",
+ "ref/net10.0/Microsoft.Build.Tasks.Core.dll",
+ "ref/net10.0/Microsoft.Build.Tasks.Core.xml",
+ "ref/net472/Microsoft.Build.Tasks.Core.dll",
+ "ref/net472/Microsoft.Build.Tasks.Core.xml",
+ "ref/netstandard2.0/Microsoft.Build.Tasks.Core.dll",
+ "ref/netstandard2.0/Microsoft.Build.Tasks.Core.xml"
+ ]
+ },
+ "Microsoft.Build.Utilities.Core/18.0.2": {
+ "sha512": "qsI2Mc8tbJEyg5m4oTvxlu5wY8te0TIVxObxILvrrPdeFUwH5V5UXUT2RV054b3S9msIR+7zViTWp4nRp0YGbQ==",
+ "type": "package",
+ "path": "microsoft.build.utilities.core/18.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "MSBuild-NuGet-Icon.png",
+ "README.md",
+ "lib/net10.0/Microsoft.Build.Utilities.Core.dll",
+ "lib/net10.0/Microsoft.Build.Utilities.Core.pdb",
+ "lib/net10.0/Microsoft.Build.Utilities.Core.xml",
+ "lib/net472/Microsoft.Build.Utilities.Core.dll",
+ "lib/net472/Microsoft.Build.Utilities.Core.pdb",
+ "lib/net472/Microsoft.Build.Utilities.Core.xml",
+ "microsoft.build.utilities.core.18.0.2.nupkg.sha512",
+ "microsoft.build.utilities.core.nuspec",
+ "notices/THIRDPARTYNOTICES.txt",
+ "ref/net10.0/Microsoft.Build.Utilities.Core.dll",
+ "ref/net10.0/Microsoft.Build.Utilities.Core.xml",
+ "ref/net472/Microsoft.Build.Utilities.Core.dll",
+ "ref/net472/Microsoft.Build.Utilities.Core.xml",
+ "ref/netstandard2.0/Microsoft.Build.Utilities.Core.dll",
+ "ref/netstandard2.0/Microsoft.Build.Utilities.Core.xml"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
+ "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyModel/10.0.0": {
+ "sha512": "RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencymodel/10.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net10.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net462/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net462/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net9.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net9.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
+ "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencymodel.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.3": {
+ "sha512": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/8.0.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.8.0.3.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Identity.Client/4.78.0": {
+ "sha512": "vZ50HE9INSN+Ew8pCgTm0t7wzxQTqozF9L4MAsl64etXz0Teo0dbUvjpVzqDHRs6m1Vn8mHF04fGaxXrIvGpsg==",
+ "type": "package",
+ "path": "microsoft.identity.client/4.78.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net462/Microsoft.Identity.Client.dll",
+ "lib/net462/Microsoft.Identity.Client.xml",
+ "lib/net472/Microsoft.Identity.Client.dll",
+ "lib/net472/Microsoft.Identity.Client.xml",
+ "lib/net8.0-android34.0/Microsoft.Identity.Client.aar",
+ "lib/net8.0-android34.0/Microsoft.Identity.Client.dll",
+ "lib/net8.0-android34.0/Microsoft.Identity.Client.xml",
+ "lib/net8.0-ios18.0/Microsoft.Identity.Client.dll",
+ "lib/net8.0-ios18.0/Microsoft.Identity.Client.xml",
+ "lib/net8.0/Microsoft.Identity.Client.dll",
+ "lib/net8.0/Microsoft.Identity.Client.xml",
+ "lib/netstandard2.0/Microsoft.Identity.Client.dll",
+ "lib/netstandard2.0/Microsoft.Identity.Client.xml",
+ "microsoft.identity.client.4.78.0.nupkg.sha512",
+ "microsoft.identity.client.nuspec"
+ ]
+ },
+ "Microsoft.Identity.Client.Extensions.Msal/4.78.0": {
+ "sha512": "DYU9o+DrDQuyZxeq91GBA9eNqBvA3ZMkLzQpF7L9dTk6FcIBM1y1IHXWqiKXTvptPF7CZE59upbyUoa+FJ5eiA==",
+ "type": "package",
+ "path": "microsoft.identity.client.extensions.msal/4.78.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll",
+ "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.xml",
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
+ "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
+ "microsoft.identity.client.extensions.msal.4.78.0.nupkg.sha512",
+ "microsoft.identity.client.extensions.msal.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Abstractions/8.14.0": {
+ "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==",
+ "type": "package",
+ "path": "microsoft.identitymodel.abstractions/8.14.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
+ "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512",
+ "microsoft.identitymodel.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.NET.StringTools/18.0.2": {
+ "sha512": "cTZw3GHkAlqZACYGeQT3niS3UfVQ8CH0O5+zUdhxstrg1Z8Q2ViXYFKjSxHmEXTX85mrOT/QnHZOeQhhSsIrkQ==",
+ "type": "package",
+ "path": "microsoft.net.stringtools/18.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "MSBuild-NuGet-Icon.png",
+ "README.md",
+ "lib/net10.0/Microsoft.NET.StringTools.dll",
+ "lib/net10.0/Microsoft.NET.StringTools.pdb",
+ "lib/net10.0/Microsoft.NET.StringTools.xml",
+ "lib/net472/Microsoft.NET.StringTools.dll",
+ "lib/net472/Microsoft.NET.StringTools.pdb",
+ "lib/net472/Microsoft.NET.StringTools.xml",
+ "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
+ "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
+ "lib/netstandard2.0/Microsoft.NET.StringTools.xml",
+ "microsoft.net.stringtools.18.0.2.nupkg.sha512",
+ "microsoft.net.stringtools.nuspec",
+ "notices/THIRDPARTYNOTICES.txt",
+ "ref/net10.0/Microsoft.NET.StringTools.dll",
+ "ref/net10.0/Microsoft.NET.StringTools.xml",
+ "ref/net472/Microsoft.NET.StringTools.dll",
+ "ref/net472/Microsoft.NET.StringTools.xml",
+ "ref/netstandard2.0/Microsoft.NET.StringTools.dll",
+ "ref/netstandard2.0/Microsoft.NET.StringTools.xml"
+ ]
+ },
+ "Microsoft.NETCore.Platforms/1.1.1": {
+ "sha512": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
+ "type": "package",
+ "path": "microsoft.netcore.platforms/1.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.platforms.1.1.1.nupkg.sha512",
+ "microsoft.netcore.platforms.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Microsoft.NETCore.Targets/1.1.0": {
+ "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
+ "type": "package",
+ "path": "microsoft.netcore.targets/1.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "microsoft.netcore.targets.nuspec",
+ "runtime.json"
+ ]
+ },
+ "Namotion.Reflection/3.4.3": {
+ "sha512": "KLk2gLR9f8scM82EiL+p9TONXXPy9+IAZVMzJOA/Wsa7soZD7UJGG6j0fq0D9ZoVnBRRnSeEC7kShhRo3Olgaw==",
+ "type": "package",
+ "path": "namotion.reflection/3.4.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net462/Namotion.Reflection.dll",
+ "lib/net462/Namotion.Reflection.xml",
+ "lib/net8.0/Namotion.Reflection.dll",
+ "lib/net8.0/Namotion.Reflection.xml",
+ "lib/netstandard2.0/Namotion.Reflection.dll",
+ "lib/netstandard2.0/Namotion.Reflection.xml",
+ "namotion.reflection.3.4.3.nupkg.sha512",
+ "namotion.reflection.nuspec"
+ ]
+ },
+ "Newtonsoft.Json/13.0.4": {
+ "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==",
+ "type": "package",
+ "path": "newtonsoft.json/13.0.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.md",
+ "README.md",
+ "lib/net20/Newtonsoft.Json.dll",
+ "lib/net20/Newtonsoft.Json.xml",
+ "lib/net35/Newtonsoft.Json.dll",
+ "lib/net35/Newtonsoft.Json.xml",
+ "lib/net40/Newtonsoft.Json.dll",
+ "lib/net40/Newtonsoft.Json.xml",
+ "lib/net45/Newtonsoft.Json.dll",
+ "lib/net45/Newtonsoft.Json.xml",
+ "lib/net6.0/Newtonsoft.Json.dll",
+ "lib/net6.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.0/Newtonsoft.Json.dll",
+ "lib/netstandard1.0/Newtonsoft.Json.xml",
+ "lib/netstandard1.3/Newtonsoft.Json.dll",
+ "lib/netstandard1.3/Newtonsoft.Json.xml",
+ "lib/netstandard2.0/Newtonsoft.Json.dll",
+ "lib/netstandard2.0/Newtonsoft.Json.xml",
+ "newtonsoft.json.13.0.4.nupkg.sha512",
+ "newtonsoft.json.nuspec",
+ "packageIcon.png"
+ ]
+ },
+ "NJsonSchema/11.5.2": {
+ "sha512": "CAmnt4tnylb82Ro6f2EFIGz8rmThuCsITECUNqGhVEQ5VvxV+XwsTPz6LF58MbvUEV1jVcH+uxxljgM/etgK7A==",
+ "type": "package",
+ "path": "njsonschema/11.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "NuGetIcon.png",
+ "lib/net462/NJsonSchema.dll",
+ "lib/net462/NJsonSchema.xml",
+ "lib/net8.0/NJsonSchema.dll",
+ "lib/net8.0/NJsonSchema.xml",
+ "lib/netstandard2.0/NJsonSchema.dll",
+ "lib/netstandard2.0/NJsonSchema.xml",
+ "njsonschema.11.5.2.nupkg.sha512",
+ "njsonschema.nuspec"
+ ]
+ },
+ "NJsonSchema.Annotations/11.5.2": {
+ "sha512": "OfYQgNzJZb1r/gR5vza0DbBLxnmcITDhA5CXFuX1qxuP3rRdQMjbIz5VyDVHCU1QxyrfAymzajbh7iszEvyFGQ==",
+ "type": "package",
+ "path": "njsonschema.annotations/11.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "NuGetIcon.png",
+ "lib/net462/NJsonSchema.Annotations.dll",
+ "lib/net462/NJsonSchema.Annotations.xml",
+ "lib/netstandard2.0/NJsonSchema.Annotations.dll",
+ "lib/netstandard2.0/NJsonSchema.Annotations.xml",
+ "njsonschema.annotations.11.5.2.nupkg.sha512",
+ "njsonschema.annotations.nuspec"
+ ]
+ },
+ "NJsonSchema.NewtonsoftJson/11.5.2": {
+ "sha512": "2KuhjeP/E/hqixoKRjKUXD56V8gBkEB51gdbTU2gN2AeabCG4gW5YsAUl+ZumFgj0cbEJ7GKdl9IBdeZaLxiTA==",
+ "type": "package",
+ "path": "njsonschema.newtonsoftjson/11.5.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "NuGetIcon.png",
+ "lib/net462/NJsonSchema.NewtonsoftJson.dll",
+ "lib/net462/NJsonSchema.NewtonsoftJson.xml",
+ "lib/net8.0/NJsonSchema.NewtonsoftJson.dll",
+ "lib/net8.0/NJsonSchema.NewtonsoftJson.xml",
+ "lib/netstandard2.0/NJsonSchema.NewtonsoftJson.dll",
+ "lib/netstandard2.0/NJsonSchema.NewtonsoftJson.xml",
+ "njsonschema.newtonsoftjson.11.5.2.nupkg.sha512",
+ "njsonschema.newtonsoftjson.nuspec"
+ ]
+ },
+ "NuGet.Common/7.6.0": {
+ "sha512": "uyXLqkbbZmkMvdHOR23l1EHW2hRmULtzoG3Ocj84VpGptnNfkODVboHGJfDfcn9Gi9oUNDs8/VjL4FZcST6zVg==",
+ "type": "package",
+ "path": "nuget.common/7.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Common.dll",
+ "lib/net472/NuGet.Common.xml",
+ "lib/net8.0/NuGet.Common.dll",
+ "lib/net8.0/NuGet.Common.xml",
+ "nuget.common.7.6.0.nupkg.sha512",
+ "nuget.common.nuspec"
+ ]
+ },
+ "NuGet.Configuration/7.6.0": {
+ "sha512": "+bNj+YneC5CNg1vR+WZjLAakscJlsi0KhADZUgIJPn4pwh8/jeCUMC5ik5cpET/i+QOplDy7aJVTGkpdfrlPww==",
+ "type": "package",
+ "path": "nuget.configuration/7.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Configuration.dll",
+ "lib/net472/NuGet.Configuration.xml",
+ "lib/net8.0/NuGet.Configuration.dll",
+ "lib/net8.0/NuGet.Configuration.xml",
+ "nuget.configuration.7.6.0.nupkg.sha512",
+ "nuget.configuration.nuspec"
+ ]
+ },
+ "NuGet.Frameworks/7.6.0": {
+ "sha512": "rJ7QtKN45XzLXCrMATve6eFLiUyUGEkA1rFSb6U6Fw6laM4hEAcKOrcdbgWlcFUlCK2158qP1LF00hg/ivF3nw==",
+ "type": "package",
+ "path": "nuget.frameworks/7.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Frameworks.dll",
+ "lib/net472/NuGet.Frameworks.xml",
+ "lib/net8.0/NuGet.Frameworks.dll",
+ "lib/net8.0/NuGet.Frameworks.xml",
+ "nuget.frameworks.7.6.0.nupkg.sha512",
+ "nuget.frameworks.nuspec"
+ ]
+ },
+ "NuGet.Packaging/7.6.0": {
+ "sha512": "TDp+qHzRBy1zjwiJGCbfpdO0jMG5hH/bk7p1EABLKv9p5SIykDPGnbuYXm2iZO0QJ/H+hOI/vo5LfqM17Q+G0w==",
+ "type": "package",
+ "path": "nuget.packaging/7.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Packaging.dll",
+ "lib/net472/NuGet.Packaging.xml",
+ "lib/net8.0/NuGet.Packaging.dll",
+ "lib/net8.0/NuGet.Packaging.xml",
+ "nuget.packaging.7.6.0.nupkg.sha512",
+ "nuget.packaging.nuspec"
+ ]
+ },
+ "NuGet.Versioning/7.6.0": {
+ "sha512": "TpZxfOoQBQk/0r/2uc1A1qNYIKHkJGgOrWP+ax3nsNAUN/1BOQMDrgmGADogSA4hOXH1ZJiyeYg4Ca+vUW0sEg==",
+ "type": "package",
+ "path": "nuget.versioning/7.6.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net472/NuGet.Versioning.dll",
+ "lib/net472/NuGet.Versioning.xml",
+ "lib/net8.0/NuGet.Versioning.dll",
+ "lib/net8.0/NuGet.Versioning.xml",
+ "nuget.versioning.7.6.0.nupkg.sha512",
+ "nuget.versioning.nuspec"
+ ]
+ },
+ "Nuke.Build/10.1.0": {
+ "sha512": "6fW17c3K1M4jw4acp7sujpqSiN8UbZPudBvS9+LEpmH2iwf8uZ0rue1G1D+WNurAMK1p3kOH5qo1M99rwFtSrQ==",
+ "type": "package",
+ "path": "nuke.build/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/net10.0/Nuke.Build.dll",
+ "lib/net10.0/Nuke.Build.xml",
+ "nuke.build.10.1.0.nupkg.sha512",
+ "nuke.build.nuspec"
+ ]
+ },
+ "Nuke.Build.Shared/10.1.0": {
+ "sha512": "4uwzKj5IbjOeKbVtCScPuFlBAPQvG9z/K9I7zvR7tUFFtXNqBfIZmy+lbOdgxy7YsKWO7xgvAtIC4VCem7AKLA==",
+ "type": "package",
+ "path": "nuke.build.shared/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/net10.0/Nuke.Build.Shared.dll",
+ "lib/net10.0/Nuke.Build.Shared.xml",
+ "lib/netstandard2.0/Nuke.Build.Shared.dll",
+ "lib/netstandard2.0/Nuke.Build.Shared.xml",
+ "nuke.build.shared.10.1.0.nupkg.sha512",
+ "nuke.build.shared.nuspec"
+ ]
+ },
+ "Nuke.Common/10.1.0": {
+ "sha512": "bymYGBes5vZUEu4eMkp1zDAbXcEpJQgRo6UcIGIWqsCUpSZIwfozuyRKVpk6lWP5KX6ep8x/XC08KLXlC6D6yg==",
+ "type": "package",
+ "path": "nuke.common/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "analyzers/dotnet/cs/Microsoft.VisualStudio.SolutionPersistence.dll",
+ "analyzers/dotnet/cs/Newtonsoft.Json.dll",
+ "analyzers/dotnet/cs/Nuke.Build.Shared.dll",
+ "analyzers/dotnet/cs/Nuke.SolutionModel.dll",
+ "analyzers/dotnet/cs/Nuke.SourceGenerators.dll",
+ "analyzers/dotnet/cs/Nuke.Utilities.IO.Globbing.dll",
+ "analyzers/dotnet/cs/Nuke.Utilities.dll",
+ "analyzers/dotnet/cs/Scriban.dll",
+ "build/Nuke.Common.props",
+ "build/Nuke.Common.targets",
+ "build/netcore/HtmlAgilityPack.dll",
+ "build/netcore/Humanizer.dll",
+ "build/netcore/JetBrains.Annotations.dll",
+ "build/netcore/Newtonsoft.Json.dll",
+ "build/netcore/NuGet.Common.dll",
+ "build/netcore/NuGet.Configuration.dll",
+ "build/netcore/NuGet.Frameworks.dll",
+ "build/netcore/NuGet.Packaging.dll",
+ "build/netcore/NuGet.Versioning.dll",
+ "build/netcore/Nuke.MSBuildTasks.deps.json",
+ "build/netcore/Nuke.MSBuildTasks.dll",
+ "build/netcore/Nuke.MSBuildTasks.targets",
+ "build/netcore/Nuke.MSBuildTasks.xml",
+ "build/netcore/Nuke.Tooling.Generator.dll",
+ "build/netcore/Nuke.Tooling.Generator.dll.config",
+ "build/netcore/Nuke.Tooling.Generator.xml",
+ "build/netcore/Nuke.Tooling.dll",
+ "build/netcore/Nuke.Tooling.xml",
+ "build/netcore/Nuke.Utilities.Net.dll",
+ "build/netcore/Nuke.Utilities.Net.xml",
+ "build/netcore/Nuke.Utilities.Text.Json.dll",
+ "build/netcore/Nuke.Utilities.Text.Json.xml",
+ "build/netcore/Nuke.Utilities.dll",
+ "build/netcore/Nuke.Utilities.xml",
+ "build/netcore/Serilog.dll",
+ "build/netcore/System.Security.Cryptography.Pkcs.dll",
+ "build/netcore/System.Security.Cryptography.ProtectedData.dll",
+ "build/netcore/af/Humanizer.resources.dll",
+ "build/netcore/ar/Humanizer.resources.dll",
+ "build/netcore/az/Humanizer.resources.dll",
+ "build/netcore/bg/Humanizer.resources.dll",
+ "build/netcore/bn/Humanizer.resources.dll",
+ "build/netcore/ca/Humanizer.resources.dll",
+ "build/netcore/cs/Humanizer.resources.dll",
+ "build/netcore/da/Humanizer.resources.dll",
+ "build/netcore/de/Humanizer.resources.dll",
+ "build/netcore/el/Humanizer.resources.dll",
+ "build/netcore/es/Humanizer.resources.dll",
+ "build/netcore/fa/Humanizer.resources.dll",
+ "build/netcore/fi/Humanizer.resources.dll",
+ "build/netcore/fil/Humanizer.resources.dll",
+ "build/netcore/fr/Humanizer.resources.dll",
+ "build/netcore/he/Humanizer.resources.dll",
+ "build/netcore/hr/Humanizer.resources.dll",
+ "build/netcore/hu/Humanizer.resources.dll",
+ "build/netcore/hy/Humanizer.resources.dll",
+ "build/netcore/id/Humanizer.resources.dll",
+ "build/netcore/is/Humanizer.resources.dll",
+ "build/netcore/it/Humanizer.resources.dll",
+ "build/netcore/ja/Humanizer.resources.dll",
+ "build/netcore/ko/Humanizer.resources.dll",
+ "build/netcore/ku/Humanizer.resources.dll",
+ "build/netcore/lb/Humanizer.resources.dll",
+ "build/netcore/lt/Humanizer.resources.dll",
+ "build/netcore/lv/Humanizer.resources.dll",
+ "build/netcore/ms/Humanizer.resources.dll",
+ "build/netcore/mt/Humanizer.resources.dll",
+ "build/netcore/nb/Humanizer.resources.dll",
+ "build/netcore/nl/Humanizer.resources.dll",
+ "build/netcore/pl/Humanizer.resources.dll",
+ "build/netcore/pt-BR/Humanizer.resources.dll",
+ "build/netcore/pt/Humanizer.resources.dll",
+ "build/netcore/ro/Humanizer.resources.dll",
+ "build/netcore/ru/Humanizer.resources.dll",
+ "build/netcore/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
+ "build/netcore/sk/Humanizer.resources.dll",
+ "build/netcore/sl/Humanizer.resources.dll",
+ "build/netcore/sr-Latn/Humanizer.resources.dll",
+ "build/netcore/sr/Humanizer.resources.dll",
+ "build/netcore/sv/Humanizer.resources.dll",
+ "build/netcore/th/Humanizer.resources.dll",
+ "build/netcore/tr/Humanizer.resources.dll",
+ "build/netcore/uk/Humanizer.resources.dll",
+ "build/netcore/uz-Cyrl-UZ/Humanizer.resources.dll",
+ "build/netcore/uz-Latn-UZ/Humanizer.resources.dll",
+ "build/netcore/vi/Humanizer.resources.dll",
+ "build/netcore/zh-CN/Humanizer.resources.dll",
+ "build/netcore/zh-Hans/Humanizer.resources.dll",
+ "build/netcore/zh-Hant/Humanizer.resources.dll",
+ "build/netfx/HtmlAgilityPack.dll",
+ "build/netfx/Humanizer.dll",
+ "build/netfx/JetBrains.Annotations.dll",
+ "build/netfx/Newtonsoft.Json.dll",
+ "build/netfx/NuGet.Common.dll",
+ "build/netfx/NuGet.Configuration.dll",
+ "build/netfx/NuGet.Frameworks.dll",
+ "build/netfx/NuGet.Packaging.dll",
+ "build/netfx/NuGet.Versioning.dll",
+ "build/netfx/Nuke.MSBuildTasks.dll",
+ "build/netfx/Nuke.MSBuildTasks.targets",
+ "build/netfx/Nuke.MSBuildTasks.xml",
+ "build/netfx/Nuke.Tooling.Generator.dll",
+ "build/netfx/Nuke.Tooling.Generator.dll.config",
+ "build/netfx/Nuke.Tooling.Generator.xml",
+ "build/netfx/Nuke.Tooling.dll",
+ "build/netfx/Nuke.Tooling.xml",
+ "build/netfx/Nuke.Utilities.Net.dll",
+ "build/netfx/Nuke.Utilities.Net.xml",
+ "build/netfx/Nuke.Utilities.Text.Json.dll",
+ "build/netfx/Nuke.Utilities.Text.Json.xml",
+ "build/netfx/Nuke.Utilities.dll",
+ "build/netfx/Nuke.Utilities.xml",
+ "build/netfx/Serilog.dll",
+ "build/netfx/System.Buffers.dll",
+ "build/netfx/System.Collections.Immutable.dll",
+ "build/netfx/System.ComponentModel.Annotations.dll",
+ "build/netfx/System.Diagnostics.DiagnosticSource.dll",
+ "build/netfx/System.Memory.dll",
+ "build/netfx/System.Numerics.Vectors.dll",
+ "build/netfx/System.Runtime.CompilerServices.Unsafe.dll",
+ "build/netfx/System.Threading.Channels.dll",
+ "build/netfx/System.Threading.Tasks.Extensions.dll",
+ "build/netfx/af/Humanizer.resources.dll",
+ "build/netfx/ar/Humanizer.resources.dll",
+ "build/netfx/az/Humanizer.resources.dll",
+ "build/netfx/bg/Humanizer.resources.dll",
+ "build/netfx/bn/Humanizer.resources.dll",
+ "build/netfx/ca/Humanizer.resources.dll",
+ "build/netfx/cs/Humanizer.resources.dll",
+ "build/netfx/da/Humanizer.resources.dll",
+ "build/netfx/de/Humanizer.resources.dll",
+ "build/netfx/el/Humanizer.resources.dll",
+ "build/netfx/es/Humanizer.resources.dll",
+ "build/netfx/fa/Humanizer.resources.dll",
+ "build/netfx/fi/Humanizer.resources.dll",
+ "build/netfx/fil/Humanizer.resources.dll",
+ "build/netfx/fr/Humanizer.resources.dll",
+ "build/netfx/he/Humanizer.resources.dll",
+ "build/netfx/hr/Humanizer.resources.dll",
+ "build/netfx/hu/Humanizer.resources.dll",
+ "build/netfx/hy/Humanizer.resources.dll",
+ "build/netfx/id/Humanizer.resources.dll",
+ "build/netfx/is/Humanizer.resources.dll",
+ "build/netfx/it/Humanizer.resources.dll",
+ "build/netfx/ja/Humanizer.resources.dll",
+ "build/netfx/ko/Humanizer.resources.dll",
+ "build/netfx/ku/Humanizer.resources.dll",
+ "build/netfx/lb/Humanizer.resources.dll",
+ "build/netfx/lt/Humanizer.resources.dll",
+ "build/netfx/lv/Humanizer.resources.dll",
+ "build/netfx/ms/Humanizer.resources.dll",
+ "build/netfx/mt/Humanizer.resources.dll",
+ "build/netfx/nb/Humanizer.resources.dll",
+ "build/netfx/nl/Humanizer.resources.dll",
+ "build/netfx/pl/Humanizer.resources.dll",
+ "build/netfx/pt-BR/Humanizer.resources.dll",
+ "build/netfx/pt/Humanizer.resources.dll",
+ "build/netfx/ro/Humanizer.resources.dll",
+ "build/netfx/ru/Humanizer.resources.dll",
+ "build/netfx/sk/Humanizer.resources.dll",
+ "build/netfx/sl/Humanizer.resources.dll",
+ "build/netfx/sr-Latn/Humanizer.resources.dll",
+ "build/netfx/sr/Humanizer.resources.dll",
+ "build/netfx/sv/Humanizer.resources.dll",
+ "build/netfx/th/Humanizer.resources.dll",
+ "build/netfx/tr/Humanizer.resources.dll",
+ "build/netfx/uk/Humanizer.resources.dll",
+ "build/netfx/uz-Cyrl-UZ/Humanizer.resources.dll",
+ "build/netfx/uz-Latn-UZ/Humanizer.resources.dll",
+ "build/netfx/vi/Humanizer.resources.dll",
+ "build/netfx/zh-CN/Humanizer.resources.dll",
+ "build/netfx/zh-Hans/Humanizer.resources.dll",
+ "build/netfx/zh-Hant/Humanizer.resources.dll",
+ "icon.png",
+ "lib/net10.0/Nuke.Common.dll",
+ "lib/net10.0/Nuke.Common.xml",
+ "nuke.common.10.1.0.nupkg.sha512",
+ "nuke.common.nuspec"
+ ]
+ },
+ "Nuke.ProjectModel/10.1.0": {
+ "sha512": "qOd7BAH/dnfJPxPipjB/slQK6K9FJOPzzj/Kbq4INJtfJod6dRm6Zu9yTk/l1CLRC68CQIVM3OLb1v3NxXgejw==",
+ "type": "package",
+ "path": "nuke.projectmodel/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/net10.0/Nuke.ProjectModel.dll",
+ "lib/net10.0/Nuke.ProjectModel.xml",
+ "lib/net8.0/Nuke.ProjectModel.dll",
+ "lib/net8.0/Nuke.ProjectModel.xml",
+ "lib/net9.0/Nuke.ProjectModel.dll",
+ "lib/net9.0/Nuke.ProjectModel.xml",
+ "nuke.projectmodel.10.1.0.nupkg.sha512",
+ "nuke.projectmodel.nuspec"
+ ]
+ },
+ "Nuke.SolutionModel/10.1.0": {
+ "sha512": "A/jWyMVrwbT8Oh/X658/MjKLIr8BXWU9gL46FhWGRebgxiwlcuesV7AO5EXiaDH2MaR8RC6Bm0PIw+4OP7PBkQ==",
+ "type": "package",
+ "path": "nuke.solutionmodel/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/net10.0/Nuke.SolutionModel.dll",
+ "lib/net10.0/Nuke.SolutionModel.xml",
+ "lib/netstandard2.0/Nuke.SolutionModel.dll",
+ "lib/netstandard2.0/Nuke.SolutionModel.xml",
+ "nuke.solutionmodel.10.1.0.nupkg.sha512",
+ "nuke.solutionmodel.nuspec"
+ ]
+ },
+ "Nuke.Tooling/10.1.0": {
+ "sha512": "Ilne9MWjyKV99zdlg1Fw2vylWGqCPjGxzbcpW9mdxVZhpNSgA4lSGvaoUBVAd2FjG6ynNmLCZY3Nz+g8QmuHMw==",
+ "type": "package",
+ "path": "nuke.tooling/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/net10.0/Nuke.Tooling.dll",
+ "lib/net10.0/Nuke.Tooling.xml",
+ "lib/netstandard2.0/Nuke.Tooling.dll",
+ "lib/netstandard2.0/Nuke.Tooling.xml",
+ "nuke.tooling.10.1.0.nupkg.sha512",
+ "nuke.tooling.nuspec"
+ ]
+ },
+ "Nuke.Utilities/10.1.0": {
+ "sha512": "jLjpdbP751BNiMllC4wreUtGuo436YsntNttPWV9qfthVx11gJJvxR5ASHFiI7mD1+NOXbgP8zFNH+QXxqSM+Q==",
+ "type": "package",
+ "path": "nuke.utilities/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/net10.0/Nuke.Utilities.dll",
+ "lib/net10.0/Nuke.Utilities.xml",
+ "lib/netstandard2.0/Nuke.Utilities.dll",
+ "lib/netstandard2.0/Nuke.Utilities.xml",
+ "nuke.utilities.10.1.0.nupkg.sha512",
+ "nuke.utilities.nuspec"
+ ]
+ },
+ "Nuke.Utilities.IO.Compression/10.1.0": {
+ "sha512": "6aJuGPmh34XjqGIzCWPEGlyk/7q5oH1BwvHIoc+TqeP/pgHUPHBs1EeXIcIyzTzfsOhQ5l4AYTRNwo0PBX8I7w==",
+ "type": "package",
+ "path": "nuke.utilities.io.compression/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/netstandard2.0/Nuke.Utilities.IO.Compression.dll",
+ "lib/netstandard2.0/Nuke.Utilities.IO.Compression.xml",
+ "nuke.utilities.io.compression.10.1.0.nupkg.sha512",
+ "nuke.utilities.io.compression.nuspec"
+ ]
+ },
+ "Nuke.Utilities.IO.Globbing/10.1.0": {
+ "sha512": "BDUEnifcXnpdZYOesxMdniLBxqVYXPwlH1WsKlmSEIhZ8JetII4LZcLO1sjEgMays6LmakH/SaH3p3ELEV5Fyw==",
+ "type": "package",
+ "path": "nuke.utilities.io.globbing/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.dll",
+ "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.xml",
+ "nuke.utilities.io.globbing.10.1.0.nupkg.sha512",
+ "nuke.utilities.io.globbing.nuspec"
+ ]
+ },
+ "Nuke.Utilities.Net/10.1.0": {
+ "sha512": "UcdmLosYd5PcFjTqaEnSC5UOmukXp1VXtOroDnQshPJR2Bn2SUuse38eOkvjCN7IemQIN2Q+fYceJAeuQyJ7pQ==",
+ "type": "package",
+ "path": "nuke.utilities.net/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/netstandard2.0/Nuke.Utilities.Net.dll",
+ "lib/netstandard2.0/Nuke.Utilities.Net.xml",
+ "nuke.utilities.net.10.1.0.nupkg.sha512",
+ "nuke.utilities.net.nuspec"
+ ]
+ },
+ "Nuke.Utilities.Text.Json/10.1.0": {
+ "sha512": "MEqDU6eeum4uzLz+jgMFuFcaZy/bpbWtz8rLl9i7T4wW8Q+YMgPXZ7RHhzPhcwEG3n8TvV4jnDImfPcqNx065Q==",
+ "type": "package",
+ "path": "nuke.utilities.text.json/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/netstandard2.0/Nuke.Utilities.Text.Json.dll",
+ "lib/netstandard2.0/Nuke.Utilities.Text.Json.xml",
+ "nuke.utilities.text.json.10.1.0.nupkg.sha512",
+ "nuke.utilities.text.json.nuspec"
+ ]
+ },
+ "Nuke.Utilities.Text.Yaml/10.1.0": {
+ "sha512": "bO3dEpQcDk5He851rQzyrPyuLI3vL0q8EGZG7qFP4soMYHIPjSP68A/BQdWJOCmv4/zpMMYuKUBnhSeTD2BJAQ==",
+ "type": "package",
+ "path": "nuke.utilities.text.yaml/10.1.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "AppVeyorSettings.json",
+ "icon.png",
+ "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.dll",
+ "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.xml",
+ "nuke.utilities.text.yaml.10.1.0.nupkg.sha512",
+ "nuke.utilities.text.yaml.nuspec"
+ ]
+ },
+ "Octokit/14.0.0": {
+ "sha512": "jGOuTH1l+TCpJH+fwYOp7USzHDuGfN1jKbLz3J2COwyn+wL08eynvpnM6rY2qkzIEXum3PN2p2QkP3BW/p9Qcw==",
+ "type": "package",
+ "path": "octokit/14.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/netstandard2.0/Octokit.dll",
+ "lib/netstandard2.0/Octokit.xml",
+ "octokit.14.0.0.nupkg.sha512",
+ "octokit.nuspec",
+ "octokit.png"
+ ]
+ },
+ "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
+ "type": "package",
+ "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
+ "type": "package",
+ "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
+ "type": "package",
+ "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.native.System/4.3.0": {
+ "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
+ "type": "package",
+ "path": "runtime.native.system/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.4.3.0.nupkg.sha512",
+ "runtime.native.system.nuspec"
+ ]
+ },
+ "runtime.native.System.Net.Http/4.3.0": {
+ "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
+ "type": "package",
+ "path": "runtime.native.system.net.http/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.net.http.4.3.0.nupkg.sha512",
+ "runtime.native.system.net.http.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
+ "type": "package",
+ "path": "runtime.native.system.security.cryptography.apple/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "runtime.native.system.security.cryptography.apple.nuspec"
+ ]
+ },
+ "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
+ "type": "package",
+ "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.0/_._",
+ "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.native.system.security.cryptography.openssl.nuspec"
+ ]
+ },
+ "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
+ "type": "package",
+ "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
+ "type": "package",
+ "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
+ "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
+ ]
+ },
+ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
+ "type": "package",
+ "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
+ ]
+ },
+ "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
+ "type": "package",
+ "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
+ "type": "package",
+ "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
+ "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
+ "type": "package",
+ "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
+ "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
+ ]
+ },
+ "Serilog/4.3.0": {
+ "sha512": "+cDryFR0GRhsGOnZSKwaDzRRl4MupvJ42FhCE4zhQRVanX0Jpg6WuCBk59OVhVDPmab1bB+nRykAnykYELA9qQ==",
+ "type": "package",
+ "path": "serilog/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "build/Serilog.targets",
+ "icon.png",
+ "lib/net462/Serilog.dll",
+ "lib/net462/Serilog.xml",
+ "lib/net471/Serilog.dll",
+ "lib/net471/Serilog.xml",
+ "lib/net6.0/Serilog.dll",
+ "lib/net6.0/Serilog.xml",
+ "lib/net8.0/Serilog.dll",
+ "lib/net8.0/Serilog.xml",
+ "lib/net9.0/Serilog.dll",
+ "lib/net9.0/Serilog.xml",
+ "lib/netstandard2.0/Serilog.dll",
+ "lib/netstandard2.0/Serilog.xml",
+ "serilog.4.3.0.nupkg.sha512",
+ "serilog.nuspec"
+ ]
+ },
+ "Serilog.Formatting.Compact/3.0.0": {
+ "sha512": "wQsv14w9cqlfB5FX2MZpNsTawckN4a8dryuNGbebB/3Nh1pXnROHZov3swtu3Nj5oNG7Ba+xdu7Et/ulAUPanQ==",
+ "type": "package",
+ "path": "serilog.formatting.compact/3.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net462/Serilog.Formatting.Compact.dll",
+ "lib/net462/Serilog.Formatting.Compact.xml",
+ "lib/net471/Serilog.Formatting.Compact.dll",
+ "lib/net471/Serilog.Formatting.Compact.xml",
+ "lib/net6.0/Serilog.Formatting.Compact.dll",
+ "lib/net6.0/Serilog.Formatting.Compact.xml",
+ "lib/net8.0/Serilog.Formatting.Compact.dll",
+ "lib/net8.0/Serilog.Formatting.Compact.xml",
+ "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
+ "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
+ "serilog-extension-nuget.png",
+ "serilog.formatting.compact.3.0.0.nupkg.sha512",
+ "serilog.formatting.compact.nuspec"
+ ]
+ },
+ "Serilog.Formatting.Compact.Reader/4.0.0": {
+ "sha512": "E1gvPAx0AsQhlyzGwgcVnGe5QrdkSugwKh+6V/FUSdTMVKKPSiO6Ff5iosjBMNBvq244Zys7BhTfFmgCE0KUyQ==",
+ "type": "package",
+ "path": "serilog.formatting.compact.reader/4.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net462/Serilog.Formatting.Compact.Reader.dll",
+ "lib/net462/Serilog.Formatting.Compact.Reader.xml",
+ "lib/net471/Serilog.Formatting.Compact.Reader.dll",
+ "lib/net471/Serilog.Formatting.Compact.Reader.xml",
+ "lib/net6.0/Serilog.Formatting.Compact.Reader.dll",
+ "lib/net6.0/Serilog.Formatting.Compact.Reader.xml",
+ "lib/net8.0/Serilog.Formatting.Compact.Reader.dll",
+ "lib/net8.0/Serilog.Formatting.Compact.Reader.xml",
+ "lib/netstandard2.0/Serilog.Formatting.Compact.Reader.dll",
+ "lib/netstandard2.0/Serilog.Formatting.Compact.Reader.xml",
+ "serilog.formatting.compact.reader.4.0.0.nupkg.sha512",
+ "serilog.formatting.compact.reader.nuspec"
+ ]
+ },
+ "Serilog.Sinks.Console/6.1.1": {
+ "sha512": "8jbqgjUyZlfCuSTaJk6lOca465OndqOz3KZP6Cryt/IqZYybyBu7GP0fE/AXBzrrQB3EBmQntBFAvMVz1COvAA==",
+ "type": "package",
+ "path": "serilog.sinks.console/6.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "icon.png",
+ "lib/net462/Serilog.Sinks.Console.dll",
+ "lib/net462/Serilog.Sinks.Console.xml",
+ "lib/net471/Serilog.Sinks.Console.dll",
+ "lib/net471/Serilog.Sinks.Console.xml",
+ "lib/net6.0/Serilog.Sinks.Console.dll",
+ "lib/net6.0/Serilog.Sinks.Console.xml",
+ "lib/net8.0/Serilog.Sinks.Console.dll",
+ "lib/net8.0/Serilog.Sinks.Console.xml",
+ "lib/netstandard2.0/Serilog.Sinks.Console.dll",
+ "lib/netstandard2.0/Serilog.Sinks.Console.xml",
+ "serilog.sinks.console.6.1.1.nupkg.sha512",
+ "serilog.sinks.console.nuspec"
+ ]
+ },
+ "Serilog.Sinks.File/7.0.0": {
+ "sha512": "fKL7mXv7qaiNBUC71ssvn/dU0k9t0o45+qm2XgKAlSt19xF+ijjxyA3R6HmCgfKEKwfcfkwWjayuQtRueZFkYw==",
+ "type": "package",
+ "path": "serilog.sinks.file/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net462/Serilog.Sinks.File.dll",
+ "lib/net462/Serilog.Sinks.File.xml",
+ "lib/net471/Serilog.Sinks.File.dll",
+ "lib/net471/Serilog.Sinks.File.xml",
+ "lib/net6.0/Serilog.Sinks.File.dll",
+ "lib/net6.0/Serilog.Sinks.File.xml",
+ "lib/net8.0/Serilog.Sinks.File.dll",
+ "lib/net8.0/Serilog.Sinks.File.xml",
+ "lib/net9.0/Serilog.Sinks.File.dll",
+ "lib/net9.0/Serilog.Sinks.File.xml",
+ "lib/netstandard2.0/Serilog.Sinks.File.dll",
+ "lib/netstandard2.0/Serilog.Sinks.File.xml",
+ "serilog-sink-nuget.png",
+ "serilog.sinks.file.7.0.0.nupkg.sha512",
+ "serilog.sinks.file.nuspec"
+ ]
+ },
+ "SharpZipLib/1.4.2": {
+ "sha512": "yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
+ "type": "package",
+ "path": "sharpziplib/1.4.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "images/sharpziplib-nuget-256x256.png",
+ "lib/net6.0/ICSharpCode.SharpZipLib.dll",
+ "lib/net6.0/ICSharpCode.SharpZipLib.pdb",
+ "lib/net6.0/ICSharpCode.SharpZipLib.xml",
+ "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
+ "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
+ "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
+ "sharpziplib.1.4.2.nupkg.sha512",
+ "sharpziplib.nuspec"
+ ]
+ },
+ "System.ClientModel/1.8.0": {
+ "sha512": "AqRzhn0v29GGGLj/Z6gKq4lGNtvPHT4nHdG5PDJh9IfVjv/nYUVmX11hwwws1vDFeIAzrvmn0dPu8IjLtu6fAw==",
+ "type": "package",
+ "path": "system.clientmodel/1.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CHANGELOG.md",
+ "DotNetPackageIcon.png",
+ "README.md",
+ "analyzers/dotnet/cs/System.ClientModel.SourceGeneration.dll",
+ "lib/net8.0/System.ClientModel.dll",
+ "lib/net8.0/System.ClientModel.xml",
+ "lib/net9.0/System.ClientModel.dll",
+ "lib/net9.0/System.ClientModel.xml",
+ "lib/netstandard2.0/System.ClientModel.dll",
+ "lib/netstandard2.0/System.ClientModel.xml",
+ "system.clientmodel.1.8.0.nupkg.sha512",
+ "system.clientmodel.nuspec"
+ ]
+ },
+ "System.CodeDom/9.0.0": {
+ "sha512": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
+ "type": "package",
+ "path": "system.codedom/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.CodeDom.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
+ "lib/net462/System.CodeDom.dll",
+ "lib/net462/System.CodeDom.xml",
+ "lib/net8.0/System.CodeDom.dll",
+ "lib/net8.0/System.CodeDom.xml",
+ "lib/net9.0/System.CodeDom.dll",
+ "lib/net9.0/System.CodeDom.xml",
+ "lib/netstandard2.0/System.CodeDom.dll",
+ "lib/netstandard2.0/System.CodeDom.xml",
+ "system.codedom.9.0.0.nupkg.sha512",
+ "system.codedom.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Collections/4.3.0": {
+ "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
+ "type": "package",
+ "path": "system.collections/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.dll",
+ "ref/netcore50/System.Collections.xml",
+ "ref/netcore50/de/System.Collections.xml",
+ "ref/netcore50/es/System.Collections.xml",
+ "ref/netcore50/fr/System.Collections.xml",
+ "ref/netcore50/it/System.Collections.xml",
+ "ref/netcore50/ja/System.Collections.xml",
+ "ref/netcore50/ko/System.Collections.xml",
+ "ref/netcore50/ru/System.Collections.xml",
+ "ref/netcore50/zh-hans/System.Collections.xml",
+ "ref/netcore50/zh-hant/System.Collections.xml",
+ "ref/netstandard1.0/System.Collections.dll",
+ "ref/netstandard1.0/System.Collections.xml",
+ "ref/netstandard1.0/de/System.Collections.xml",
+ "ref/netstandard1.0/es/System.Collections.xml",
+ "ref/netstandard1.0/fr/System.Collections.xml",
+ "ref/netstandard1.0/it/System.Collections.xml",
+ "ref/netstandard1.0/ja/System.Collections.xml",
+ "ref/netstandard1.0/ko/System.Collections.xml",
+ "ref/netstandard1.0/ru/System.Collections.xml",
+ "ref/netstandard1.0/zh-hans/System.Collections.xml",
+ "ref/netstandard1.0/zh-hant/System.Collections.xml",
+ "ref/netstandard1.3/System.Collections.dll",
+ "ref/netstandard1.3/System.Collections.xml",
+ "ref/netstandard1.3/de/System.Collections.xml",
+ "ref/netstandard1.3/es/System.Collections.xml",
+ "ref/netstandard1.3/fr/System.Collections.xml",
+ "ref/netstandard1.3/it/System.Collections.xml",
+ "ref/netstandard1.3/ja/System.Collections.xml",
+ "ref/netstandard1.3/ko/System.Collections.xml",
+ "ref/netstandard1.3/ru/System.Collections.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.4.3.0.nupkg.sha512",
+ "system.collections.nuspec"
+ ]
+ },
+ "System.Collections.Concurrent/4.3.0": {
+ "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
+ "type": "package",
+ "path": "system.collections.concurrent/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Collections.Concurrent.dll",
+ "lib/netstandard1.3/System.Collections.Concurrent.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Collections.Concurrent.dll",
+ "ref/netcore50/System.Collections.Concurrent.xml",
+ "ref/netcore50/de/System.Collections.Concurrent.xml",
+ "ref/netcore50/es/System.Collections.Concurrent.xml",
+ "ref/netcore50/fr/System.Collections.Concurrent.xml",
+ "ref/netcore50/it/System.Collections.Concurrent.xml",
+ "ref/netcore50/ja/System.Collections.Concurrent.xml",
+ "ref/netcore50/ko/System.Collections.Concurrent.xml",
+ "ref/netcore50/ru/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/System.Collections.Concurrent.dll",
+ "ref/netstandard1.1/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/System.Collections.Concurrent.dll",
+ "ref/netstandard1.3/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
+ "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.collections.concurrent.4.3.0.nupkg.sha512",
+ "system.collections.concurrent.nuspec"
+ ]
+ },
+ "System.Configuration.ConfigurationManager/9.0.0": {
+ "sha512": "PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
+ "type": "package",
+ "path": "system.configuration.configurationmanager/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
+ "lib/net462/System.Configuration.ConfigurationManager.dll",
+ "lib/net462/System.Configuration.ConfigurationManager.xml",
+ "lib/net8.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net8.0/System.Configuration.ConfigurationManager.xml",
+ "lib/net9.0/System.Configuration.ConfigurationManager.dll",
+ "lib/net9.0/System.Configuration.ConfigurationManager.xml",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
+ "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
+ "system.configuration.configurationmanager.9.0.0.nupkg.sha512",
+ "system.configuration.configurationmanager.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.Debug/4.3.0": {
+ "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
+ "type": "package",
+ "path": "system.diagnostics.debug/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Diagnostics.Debug.dll",
+ "ref/netcore50/System.Diagnostics.Debug.xml",
+ "ref/netcore50/de/System.Diagnostics.Debug.xml",
+ "ref/netcore50/es/System.Diagnostics.Debug.xml",
+ "ref/netcore50/fr/System.Diagnostics.Debug.xml",
+ "ref/netcore50/it/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ja/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ko/System.Diagnostics.Debug.xml",
+ "ref/netcore50/ru/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.0/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/System.Diagnostics.Debug.dll",
+ "ref/netstandard1.3/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "system.diagnostics.debug.nuspec"
+ ]
+ },
+ "System.Diagnostics.DiagnosticSource/6.0.1": {
+ "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
+ "type": "package",
+ "path": "system.diagnostics.diagnosticsource/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net461/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
+ "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
+ "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
+ "system.diagnostics.diagnosticsource.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.EventLog/9.0.0": {
+ "sha512": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
+ "type": "package",
+ "path": "system.diagnostics.eventlog/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Diagnostics.EventLog.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
+ "lib/net462/System.Diagnostics.EventLog.dll",
+ "lib/net462/System.Diagnostics.EventLog.xml",
+ "lib/net8.0/System.Diagnostics.EventLog.dll",
+ "lib/net8.0/System.Diagnostics.EventLog.xml",
+ "lib/net9.0/System.Diagnostics.EventLog.dll",
+ "lib/net9.0/System.Diagnostics.EventLog.xml",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
+ "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
+ "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
+ "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
+ "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
+ "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll",
+ "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll",
+ "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml",
+ "system.diagnostics.eventlog.9.0.0.nupkg.sha512",
+ "system.diagnostics.eventlog.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Diagnostics.Tracing/4.3.0": {
+ "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
+ "type": "package",
+ "path": "system.diagnostics.tracing/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Diagnostics.Tracing.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Diagnostics.Tracing.dll",
+ "ref/netcore50/System.Diagnostics.Tracing.dll",
+ "ref/netcore50/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/de/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/es/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/it/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
+ "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
+ "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.diagnostics.tracing.4.3.0.nupkg.sha512",
+ "system.diagnostics.tracing.nuspec"
+ ]
+ },
+ "System.Formats.Nrbf/9.0.0": {
+ "sha512": "F/6tNE+ckmdFeSQAyQo26bQOqfPFKEfZcuqnp4kBE6/7jP26diP+QTHCJJ6vpEfaY6bLy+hBLiIQUSxSmNwLkA==",
+ "type": "package",
+ "path": "system.formats.nrbf/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Formats.Nrbf.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Formats.Nrbf.targets",
+ "lib/net462/System.Formats.Nrbf.dll",
+ "lib/net462/System.Formats.Nrbf.xml",
+ "lib/net8.0/System.Formats.Nrbf.dll",
+ "lib/net8.0/System.Formats.Nrbf.xml",
+ "lib/net9.0/System.Formats.Nrbf.dll",
+ "lib/net9.0/System.Formats.Nrbf.xml",
+ "lib/netstandard2.0/System.Formats.Nrbf.dll",
+ "lib/netstandard2.0/System.Formats.Nrbf.xml",
+ "system.formats.nrbf.9.0.0.nupkg.sha512",
+ "system.formats.nrbf.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Globalization/4.3.0": {
+ "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
+ "type": "package",
+ "path": "system.globalization/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Globalization.dll",
+ "ref/netcore50/System.Globalization.xml",
+ "ref/netcore50/de/System.Globalization.xml",
+ "ref/netcore50/es/System.Globalization.xml",
+ "ref/netcore50/fr/System.Globalization.xml",
+ "ref/netcore50/it/System.Globalization.xml",
+ "ref/netcore50/ja/System.Globalization.xml",
+ "ref/netcore50/ko/System.Globalization.xml",
+ "ref/netcore50/ru/System.Globalization.xml",
+ "ref/netcore50/zh-hans/System.Globalization.xml",
+ "ref/netcore50/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.0/System.Globalization.dll",
+ "ref/netstandard1.0/System.Globalization.xml",
+ "ref/netstandard1.0/de/System.Globalization.xml",
+ "ref/netstandard1.0/es/System.Globalization.xml",
+ "ref/netstandard1.0/fr/System.Globalization.xml",
+ "ref/netstandard1.0/it/System.Globalization.xml",
+ "ref/netstandard1.0/ja/System.Globalization.xml",
+ "ref/netstandard1.0/ko/System.Globalization.xml",
+ "ref/netstandard1.0/ru/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.0/zh-hant/System.Globalization.xml",
+ "ref/netstandard1.3/System.Globalization.dll",
+ "ref/netstandard1.3/System.Globalization.xml",
+ "ref/netstandard1.3/de/System.Globalization.xml",
+ "ref/netstandard1.3/es/System.Globalization.xml",
+ "ref/netstandard1.3/fr/System.Globalization.xml",
+ "ref/netstandard1.3/it/System.Globalization.xml",
+ "ref/netstandard1.3/ja/System.Globalization.xml",
+ "ref/netstandard1.3/ko/System.Globalization.xml",
+ "ref/netstandard1.3/ru/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.4.3.0.nupkg.sha512",
+ "system.globalization.nuspec"
+ ]
+ },
+ "System.Globalization.Calendars/4.3.0": {
+ "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
+ "type": "package",
+ "path": "system.globalization.calendars/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Globalization.Calendars.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Globalization.Calendars.dll",
+ "ref/netstandard1.3/System.Globalization.Calendars.dll",
+ "ref/netstandard1.3/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.globalization.calendars.4.3.0.nupkg.sha512",
+ "system.globalization.calendars.nuspec"
+ ]
+ },
+ "System.Globalization.Extensions/4.3.0": {
+ "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
+ "type": "package",
+ "path": "system.globalization.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Globalization.Extensions.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.dll",
+ "ref/netstandard1.3/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
+ "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
+ "system.globalization.extensions.4.3.0.nupkg.sha512",
+ "system.globalization.extensions.nuspec"
+ ]
+ },
+ "System.IO/4.3.0": {
+ "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
+ "type": "package",
+ "path": "system.io/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.IO.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.IO.dll",
+ "ref/netcore50/System.IO.dll",
+ "ref/netcore50/System.IO.xml",
+ "ref/netcore50/de/System.IO.xml",
+ "ref/netcore50/es/System.IO.xml",
+ "ref/netcore50/fr/System.IO.xml",
+ "ref/netcore50/it/System.IO.xml",
+ "ref/netcore50/ja/System.IO.xml",
+ "ref/netcore50/ko/System.IO.xml",
+ "ref/netcore50/ru/System.IO.xml",
+ "ref/netcore50/zh-hans/System.IO.xml",
+ "ref/netcore50/zh-hant/System.IO.xml",
+ "ref/netstandard1.0/System.IO.dll",
+ "ref/netstandard1.0/System.IO.xml",
+ "ref/netstandard1.0/de/System.IO.xml",
+ "ref/netstandard1.0/es/System.IO.xml",
+ "ref/netstandard1.0/fr/System.IO.xml",
+ "ref/netstandard1.0/it/System.IO.xml",
+ "ref/netstandard1.0/ja/System.IO.xml",
+ "ref/netstandard1.0/ko/System.IO.xml",
+ "ref/netstandard1.0/ru/System.IO.xml",
+ "ref/netstandard1.0/zh-hans/System.IO.xml",
+ "ref/netstandard1.0/zh-hant/System.IO.xml",
+ "ref/netstandard1.3/System.IO.dll",
+ "ref/netstandard1.3/System.IO.xml",
+ "ref/netstandard1.3/de/System.IO.xml",
+ "ref/netstandard1.3/es/System.IO.xml",
+ "ref/netstandard1.3/fr/System.IO.xml",
+ "ref/netstandard1.3/it/System.IO.xml",
+ "ref/netstandard1.3/ja/System.IO.xml",
+ "ref/netstandard1.3/ko/System.IO.xml",
+ "ref/netstandard1.3/ru/System.IO.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.xml",
+ "ref/netstandard1.5/System.IO.dll",
+ "ref/netstandard1.5/System.IO.xml",
+ "ref/netstandard1.5/de/System.IO.xml",
+ "ref/netstandard1.5/es/System.IO.xml",
+ "ref/netstandard1.5/fr/System.IO.xml",
+ "ref/netstandard1.5/it/System.IO.xml",
+ "ref/netstandard1.5/ja/System.IO.xml",
+ "ref/netstandard1.5/ko/System.IO.xml",
+ "ref/netstandard1.5/ru/System.IO.xml",
+ "ref/netstandard1.5/zh-hans/System.IO.xml",
+ "ref/netstandard1.5/zh-hant/System.IO.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.4.3.0.nupkg.sha512",
+ "system.io.nuspec"
+ ]
+ },
+ "System.IO.FileSystem/4.3.0": {
+ "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
+ "type": "package",
+ "path": "system.io.filesystem/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.4.3.0.nupkg.sha512",
+ "system.io.filesystem.nuspec"
+ ]
+ },
+ "System.IO.FileSystem.Primitives/4.3.0": {
+ "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
+ "type": "package",
+ "path": "system.io.filesystem.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.IO.FileSystem.Primitives.dll",
+ "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
+ "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "system.io.filesystem.primitives.nuspec"
+ ]
+ },
+ "System.Linq/4.3.0": {
+ "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
+ "type": "package",
+ "path": "system.linq/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net463/System.Linq.dll",
+ "lib/netcore50/System.Linq.dll",
+ "lib/netstandard1.6/System.Linq.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net463/System.Linq.dll",
+ "ref/netcore50/System.Linq.dll",
+ "ref/netcore50/System.Linq.xml",
+ "ref/netcore50/de/System.Linq.xml",
+ "ref/netcore50/es/System.Linq.xml",
+ "ref/netcore50/fr/System.Linq.xml",
+ "ref/netcore50/it/System.Linq.xml",
+ "ref/netcore50/ja/System.Linq.xml",
+ "ref/netcore50/ko/System.Linq.xml",
+ "ref/netcore50/ru/System.Linq.xml",
+ "ref/netcore50/zh-hans/System.Linq.xml",
+ "ref/netcore50/zh-hant/System.Linq.xml",
+ "ref/netstandard1.0/System.Linq.dll",
+ "ref/netstandard1.0/System.Linq.xml",
+ "ref/netstandard1.0/de/System.Linq.xml",
+ "ref/netstandard1.0/es/System.Linq.xml",
+ "ref/netstandard1.0/fr/System.Linq.xml",
+ "ref/netstandard1.0/it/System.Linq.xml",
+ "ref/netstandard1.0/ja/System.Linq.xml",
+ "ref/netstandard1.0/ko/System.Linq.xml",
+ "ref/netstandard1.0/ru/System.Linq.xml",
+ "ref/netstandard1.0/zh-hans/System.Linq.xml",
+ "ref/netstandard1.0/zh-hant/System.Linq.xml",
+ "ref/netstandard1.6/System.Linq.dll",
+ "ref/netstandard1.6/System.Linq.xml",
+ "ref/netstandard1.6/de/System.Linq.xml",
+ "ref/netstandard1.6/es/System.Linq.xml",
+ "ref/netstandard1.6/fr/System.Linq.xml",
+ "ref/netstandard1.6/it/System.Linq.xml",
+ "ref/netstandard1.6/ja/System.Linq.xml",
+ "ref/netstandard1.6/ko/System.Linq.xml",
+ "ref/netstandard1.6/ru/System.Linq.xml",
+ "ref/netstandard1.6/zh-hans/System.Linq.xml",
+ "ref/netstandard1.6/zh-hant/System.Linq.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.linq.4.3.0.nupkg.sha512",
+ "system.linq.nuspec"
+ ]
+ },
+ "System.Memory/4.5.5": {
+ "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
+ "type": "package",
+ "path": "system.memory/4.5.5",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.Memory.dll",
+ "lib/net461/System.Memory.xml",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.1/System.Memory.dll",
+ "lib/netstandard1.1/System.Memory.xml",
+ "lib/netstandard2.0/System.Memory.dll",
+ "lib/netstandard2.0/System.Memory.xml",
+ "ref/netcoreapp2.1/_._",
+ "system.memory.4.5.5.nupkg.sha512",
+ "system.memory.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Memory.Data/8.0.1": {
+ "sha512": "BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==",
+ "type": "package",
+ "path": "system.memory.data/8.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Memory.Data.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Memory.Data.targets",
+ "lib/net462/System.Memory.Data.dll",
+ "lib/net462/System.Memory.Data.xml",
+ "lib/net6.0/System.Memory.Data.dll",
+ "lib/net6.0/System.Memory.Data.xml",
+ "lib/net7.0/System.Memory.Data.dll",
+ "lib/net7.0/System.Memory.Data.xml",
+ "lib/net8.0/System.Memory.Data.dll",
+ "lib/net8.0/System.Memory.Data.xml",
+ "lib/netstandard2.0/System.Memory.Data.dll",
+ "lib/netstandard2.0/System.Memory.Data.xml",
+ "system.memory.data.8.0.1.nupkg.sha512",
+ "system.memory.data.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Net.Http/4.3.4": {
+ "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
+ "type": "package",
+ "path": "system.net.http/4.3.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/Xamarinmac20/_._",
+ "lib/monoandroid10/_._",
+ "lib/monotouch10/_._",
+ "lib/net45/_._",
+ "lib/net46/System.Net.Http.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/Xamarinmac20/_._",
+ "ref/monoandroid10/_._",
+ "ref/monotouch10/_._",
+ "ref/net45/_._",
+ "ref/net46/System.Net.Http.dll",
+ "ref/netcore50/System.Net.Http.dll",
+ "ref/netstandard1.1/System.Net.Http.dll",
+ "ref/netstandard1.3/System.Net.Http.dll",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
+ "runtimes/win/lib/net46/System.Net.Http.dll",
+ "runtimes/win/lib/netcore50/System.Net.Http.dll",
+ "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
+ "system.net.http.4.3.4.nupkg.sha512",
+ "system.net.http.nuspec"
+ ]
+ },
+ "System.Net.Primitives/4.3.0": {
+ "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
+ "type": "package",
+ "path": "system.net.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Net.Primitives.dll",
+ "ref/netcore50/System.Net.Primitives.xml",
+ "ref/netcore50/de/System.Net.Primitives.xml",
+ "ref/netcore50/es/System.Net.Primitives.xml",
+ "ref/netcore50/fr/System.Net.Primitives.xml",
+ "ref/netcore50/it/System.Net.Primitives.xml",
+ "ref/netcore50/ja/System.Net.Primitives.xml",
+ "ref/netcore50/ko/System.Net.Primitives.xml",
+ "ref/netcore50/ru/System.Net.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Net.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.0/System.Net.Primitives.dll",
+ "ref/netstandard1.0/System.Net.Primitives.xml",
+ "ref/netstandard1.0/de/System.Net.Primitives.xml",
+ "ref/netstandard1.0/es/System.Net.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.0/it/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.1/System.Net.Primitives.dll",
+ "ref/netstandard1.1/System.Net.Primitives.xml",
+ "ref/netstandard1.1/de/System.Net.Primitives.xml",
+ "ref/netstandard1.1/es/System.Net.Primitives.xml",
+ "ref/netstandard1.1/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.1/it/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.1/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
+ "ref/netstandard1.3/System.Net.Primitives.dll",
+ "ref/netstandard1.3/System.Net.Primitives.xml",
+ "ref/netstandard1.3/de/System.Net.Primitives.xml",
+ "ref/netstandard1.3/es/System.Net.Primitives.xml",
+ "ref/netstandard1.3/fr/System.Net.Primitives.xml",
+ "ref/netstandard1.3/it/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ja/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ko/System.Net.Primitives.xml",
+ "ref/netstandard1.3/ru/System.Net.Primitives.xml",
+ "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
+ "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.net.primitives.4.3.0.nupkg.sha512",
+ "system.net.primitives.nuspec"
+ ]
+ },
+ "System.Reflection/4.3.0": {
+ "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
+ "type": "package",
+ "path": "system.reflection/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Reflection.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.dll",
+ "ref/netcore50/System.Reflection.xml",
+ "ref/netcore50/de/System.Reflection.xml",
+ "ref/netcore50/es/System.Reflection.xml",
+ "ref/netcore50/fr/System.Reflection.xml",
+ "ref/netcore50/it/System.Reflection.xml",
+ "ref/netcore50/ja/System.Reflection.xml",
+ "ref/netcore50/ko/System.Reflection.xml",
+ "ref/netcore50/ru/System.Reflection.xml",
+ "ref/netcore50/zh-hans/System.Reflection.xml",
+ "ref/netcore50/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.0/System.Reflection.dll",
+ "ref/netstandard1.0/System.Reflection.xml",
+ "ref/netstandard1.0/de/System.Reflection.xml",
+ "ref/netstandard1.0/es/System.Reflection.xml",
+ "ref/netstandard1.0/fr/System.Reflection.xml",
+ "ref/netstandard1.0/it/System.Reflection.xml",
+ "ref/netstandard1.0/ja/System.Reflection.xml",
+ "ref/netstandard1.0/ko/System.Reflection.xml",
+ "ref/netstandard1.0/ru/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.3/System.Reflection.dll",
+ "ref/netstandard1.3/System.Reflection.xml",
+ "ref/netstandard1.3/de/System.Reflection.xml",
+ "ref/netstandard1.3/es/System.Reflection.xml",
+ "ref/netstandard1.3/fr/System.Reflection.xml",
+ "ref/netstandard1.3/it/System.Reflection.xml",
+ "ref/netstandard1.3/ja/System.Reflection.xml",
+ "ref/netstandard1.3/ko/System.Reflection.xml",
+ "ref/netstandard1.3/ru/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.3/zh-hant/System.Reflection.xml",
+ "ref/netstandard1.5/System.Reflection.dll",
+ "ref/netstandard1.5/System.Reflection.xml",
+ "ref/netstandard1.5/de/System.Reflection.xml",
+ "ref/netstandard1.5/es/System.Reflection.xml",
+ "ref/netstandard1.5/fr/System.Reflection.xml",
+ "ref/netstandard1.5/it/System.Reflection.xml",
+ "ref/netstandard1.5/ja/System.Reflection.xml",
+ "ref/netstandard1.5/ko/System.Reflection.xml",
+ "ref/netstandard1.5/ru/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hans/System.Reflection.xml",
+ "ref/netstandard1.5/zh-hant/System.Reflection.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.4.3.0.nupkg.sha512",
+ "system.reflection.nuspec"
+ ]
+ },
+ "System.Reflection.MetadataLoadContext/9.0.0": {
+ "sha512": "nGdCUVhEQ9/CWYqgaibYEDwIJjokgIinQhCnpmtZfSXdMS6ysLZ8p9xvcJ8VPx6Xpv5OsLIUrho4B9FN+VV/tw==",
+ "type": "package",
+ "path": "system.reflection.metadataloadcontext/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Reflection.MetadataLoadContext.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets",
+ "lib/net462/System.Reflection.MetadataLoadContext.dll",
+ "lib/net462/System.Reflection.MetadataLoadContext.xml",
+ "lib/net8.0/System.Reflection.MetadataLoadContext.dll",
+ "lib/net8.0/System.Reflection.MetadataLoadContext.xml",
+ "lib/net9.0/System.Reflection.MetadataLoadContext.dll",
+ "lib/net9.0/System.Reflection.MetadataLoadContext.xml",
+ "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll",
+ "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml",
+ "system.reflection.metadataloadcontext.9.0.0.nupkg.sha512",
+ "system.reflection.metadataloadcontext.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Reflection.Primitives/4.3.0": {
+ "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
+ "type": "package",
+ "path": "system.reflection.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Reflection.Primitives.dll",
+ "ref/netcore50/System.Reflection.Primitives.xml",
+ "ref/netcore50/de/System.Reflection.Primitives.xml",
+ "ref/netcore50/es/System.Reflection.Primitives.xml",
+ "ref/netcore50/fr/System.Reflection.Primitives.xml",
+ "ref/netcore50/it/System.Reflection.Primitives.xml",
+ "ref/netcore50/ja/System.Reflection.Primitives.xml",
+ "ref/netcore50/ko/System.Reflection.Primitives.xml",
+ "ref/netcore50/ru/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/System.Reflection.Primitives.dll",
+ "ref/netstandard1.0/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
+ "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.reflection.primitives.4.3.0.nupkg.sha512",
+ "system.reflection.primitives.nuspec"
+ ]
+ },
+ "System.Resources.Extensions/9.0.0": {
+ "sha512": "tvhuT1D2OwPROdL1kRWtaTJliQo0WdyhvwDpd8RM997G7m3Hya5nhbYhNTS75x6Vu+ypSOgL5qxDCn8IROtCxw==",
+ "type": "package",
+ "path": "system.resources.extensions/9.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Resources.Extensions.targets",
+ "buildTransitive/net462/System.Resources.Extensions.targets",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Resources.Extensions.targets",
+ "lib/net462/System.Resources.Extensions.dll",
+ "lib/net462/System.Resources.Extensions.xml",
+ "lib/net8.0/System.Resources.Extensions.dll",
+ "lib/net8.0/System.Resources.Extensions.xml",
+ "lib/net9.0/System.Resources.Extensions.dll",
+ "lib/net9.0/System.Resources.Extensions.xml",
+ "lib/netstandard2.0/System.Resources.Extensions.dll",
+ "lib/netstandard2.0/System.Resources.Extensions.xml",
+ "system.resources.extensions.9.0.0.nupkg.sha512",
+ "system.resources.extensions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Resources.ResourceManager/4.3.0": {
+ "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
+ "type": "package",
+ "path": "system.resources.resourcemanager/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Resources.ResourceManager.dll",
+ "ref/netcore50/System.Resources.ResourceManager.xml",
+ "ref/netcore50/de/System.Resources.ResourceManager.xml",
+ "ref/netcore50/es/System.Resources.ResourceManager.xml",
+ "ref/netcore50/fr/System.Resources.ResourceManager.xml",
+ "ref/netcore50/it/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ja/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ko/System.Resources.ResourceManager.xml",
+ "ref/netcore50/ru/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/System.Resources.ResourceManager.dll",
+ "ref/netstandard1.0/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
+ "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "system.resources.resourcemanager.nuspec"
+ ]
+ },
+ "System.Runtime/4.3.0": {
+ "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
+ "type": "package",
+ "path": "system.runtime/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.dll",
+ "lib/portable-net45+win8+wp80+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.dll",
+ "ref/netcore50/System.Runtime.xml",
+ "ref/netcore50/de/System.Runtime.xml",
+ "ref/netcore50/es/System.Runtime.xml",
+ "ref/netcore50/fr/System.Runtime.xml",
+ "ref/netcore50/it/System.Runtime.xml",
+ "ref/netcore50/ja/System.Runtime.xml",
+ "ref/netcore50/ko/System.Runtime.xml",
+ "ref/netcore50/ru/System.Runtime.xml",
+ "ref/netcore50/zh-hans/System.Runtime.xml",
+ "ref/netcore50/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.0/System.Runtime.dll",
+ "ref/netstandard1.0/System.Runtime.xml",
+ "ref/netstandard1.0/de/System.Runtime.xml",
+ "ref/netstandard1.0/es/System.Runtime.xml",
+ "ref/netstandard1.0/fr/System.Runtime.xml",
+ "ref/netstandard1.0/it/System.Runtime.xml",
+ "ref/netstandard1.0/ja/System.Runtime.xml",
+ "ref/netstandard1.0/ko/System.Runtime.xml",
+ "ref/netstandard1.0/ru/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.2/System.Runtime.dll",
+ "ref/netstandard1.2/System.Runtime.xml",
+ "ref/netstandard1.2/de/System.Runtime.xml",
+ "ref/netstandard1.2/es/System.Runtime.xml",
+ "ref/netstandard1.2/fr/System.Runtime.xml",
+ "ref/netstandard1.2/it/System.Runtime.xml",
+ "ref/netstandard1.2/ja/System.Runtime.xml",
+ "ref/netstandard1.2/ko/System.Runtime.xml",
+ "ref/netstandard1.2/ru/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.3/System.Runtime.dll",
+ "ref/netstandard1.3/System.Runtime.xml",
+ "ref/netstandard1.3/de/System.Runtime.xml",
+ "ref/netstandard1.3/es/System.Runtime.xml",
+ "ref/netstandard1.3/fr/System.Runtime.xml",
+ "ref/netstandard1.3/it/System.Runtime.xml",
+ "ref/netstandard1.3/ja/System.Runtime.xml",
+ "ref/netstandard1.3/ko/System.Runtime.xml",
+ "ref/netstandard1.3/ru/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.xml",
+ "ref/netstandard1.5/System.Runtime.dll",
+ "ref/netstandard1.5/System.Runtime.xml",
+ "ref/netstandard1.5/de/System.Runtime.xml",
+ "ref/netstandard1.5/es/System.Runtime.xml",
+ "ref/netstandard1.5/fr/System.Runtime.xml",
+ "ref/netstandard1.5/it/System.Runtime.xml",
+ "ref/netstandard1.5/ja/System.Runtime.xml",
+ "ref/netstandard1.5/ko/System.Runtime.xml",
+ "ref/netstandard1.5/ru/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.xml",
+ "ref/portable-net45+win8+wp80+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.4.3.0.nupkg.sha512",
+ "system.runtime.nuspec"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Runtime.Extensions/4.3.0": {
+ "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
+ "type": "package",
+ "path": "system.runtime.extensions/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.dll",
+ "ref/netcore50/System.Runtime.Extensions.xml",
+ "ref/netcore50/de/System.Runtime.Extensions.xml",
+ "ref/netcore50/es/System.Runtime.Extensions.xml",
+ "ref/netcore50/fr/System.Runtime.Extensions.xml",
+ "ref/netcore50/it/System.Runtime.Extensions.xml",
+ "ref/netcore50/ja/System.Runtime.Extensions.xml",
+ "ref/netcore50/ko/System.Runtime.Extensions.xml",
+ "ref/netcore50/ru/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/System.Runtime.Extensions.dll",
+ "ref/netstandard1.0/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/System.Runtime.Extensions.dll",
+ "ref/netstandard1.3/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/System.Runtime.Extensions.dll",
+ "ref/netstandard1.5/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.extensions.4.3.0.nupkg.sha512",
+ "system.runtime.extensions.nuspec"
+ ]
+ },
+ "System.Runtime.Handles/4.3.0": {
+ "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
+ "type": "package",
+ "path": "system.runtime.handles/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/_._",
+ "ref/netstandard1.3/System.Runtime.Handles.dll",
+ "ref/netstandard1.3/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/de/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/es/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/it/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.handles.4.3.0.nupkg.sha512",
+ "system.runtime.handles.nuspec"
+ ]
+ },
+ "System.Runtime.InteropServices/4.3.0": {
+ "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
+ "type": "package",
+ "path": "system.runtime.interopservices/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net462/System.Runtime.InteropServices.dll",
+ "lib/net463/System.Runtime.InteropServices.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net462/System.Runtime.InteropServices.dll",
+ "ref/net463/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.dll",
+ "ref/netcore50/System.Runtime.InteropServices.xml",
+ "ref/netcore50/de/System.Runtime.InteropServices.xml",
+ "ref/netcore50/es/System.Runtime.InteropServices.xml",
+ "ref/netcore50/fr/System.Runtime.InteropServices.xml",
+ "ref/netcore50/it/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ja/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ko/System.Runtime.InteropServices.xml",
+ "ref/netcore50/ru/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.1/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.2/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.3/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/System.Runtime.InteropServices.dll",
+ "ref/netstandard1.5/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
+ "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "system.runtime.interopservices.nuspec"
+ ]
+ },
+ "System.Runtime.Numerics/4.3.0": {
+ "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
+ "type": "package",
+ "path": "system.runtime.numerics/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Runtime.Numerics.dll",
+ "lib/netstandard1.3/System.Runtime.Numerics.dll",
+ "lib/portable-net45+win8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Runtime.Numerics.dll",
+ "ref/netcore50/System.Runtime.Numerics.xml",
+ "ref/netcore50/de/System.Runtime.Numerics.xml",
+ "ref/netcore50/es/System.Runtime.Numerics.xml",
+ "ref/netcore50/fr/System.Runtime.Numerics.xml",
+ "ref/netcore50/it/System.Runtime.Numerics.xml",
+ "ref/netcore50/ja/System.Runtime.Numerics.xml",
+ "ref/netcore50/ko/System.Runtime.Numerics.xml",
+ "ref/netcore50/ru/System.Runtime.Numerics.xml",
+ "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
+ "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/System.Runtime.Numerics.dll",
+ "ref/netstandard1.1/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
+ "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
+ "ref/portable-net45+win8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.runtime.numerics.4.3.0.nupkg.sha512",
+ "system.runtime.numerics.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Algorithms/4.3.0": {
+ "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
+ "type": "package",
+ "path": "system.security.cryptography.algorithms/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Algorithms.dll",
+ "lib/net461/System.Security.Cryptography.Algorithms.dll",
+ "lib/net463/System.Security.Cryptography.Algorithms.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Algorithms.dll",
+ "ref/net461/System.Security.Cryptography.Algorithms.dll",
+ "ref/net463/System.Security.Cryptography.Algorithms.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
+ "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
+ "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
+ "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
+ "system.security.cryptography.algorithms.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Cng/4.3.0": {
+ "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
+ "type": "package",
+ "path": "system.security.cryptography.cng/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/net46/System.Security.Cryptography.Cng.dll",
+ "lib/net461/System.Security.Cryptography.Cng.dll",
+ "lib/net463/System.Security.Cryptography.Cng.dll",
+ "ref/net46/System.Security.Cryptography.Cng.dll",
+ "ref/net461/System.Security.Cryptography.Cng.dll",
+ "ref/net463/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
+ "system.security.cryptography.cng.4.3.0.nupkg.sha512",
+ "system.security.cryptography.cng.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Csp/4.3.0": {
+ "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
+ "type": "package",
+ "path": "system.security.cryptography.csp/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Csp.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Csp.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
+ "runtimes/win/lib/netcore50/_._",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
+ "system.security.cryptography.csp.4.3.0.nupkg.sha512",
+ "system.security.cryptography.csp.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Encoding/4.3.0": {
+ "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
+ "type": "package",
+ "path": "system.security.cryptography.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Encoding.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Encoding.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
+ "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
+ "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
+ "system.security.cryptography.encoding.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.OpenSsl/4.3.0": {
+ "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
+ "type": "package",
+ "path": "system.security.cryptography.openssl/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
+ "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
+ "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "system.security.cryptography.openssl.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Pkcs/9.0.15": {
+ "sha512": "ZqPer8QiXxMHnXbgaJkWlD6kit8biD09lWmYP2NM+pfoaGwLneVCa4WnOVUJnAoZQrNKO/zryC68H2+G8xQbNA==",
+ "type": "package",
+ "path": "system.security.cryptography.pkcs/9.0.15",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
+ "lib/net462/System.Security.Cryptography.Pkcs.dll",
+ "lib/net462/System.Security.Cryptography.Pkcs.xml",
+ "lib/net8.0/System.Security.Cryptography.Pkcs.dll",
+ "lib/net8.0/System.Security.Cryptography.Pkcs.xml",
+ "lib/net9.0/System.Security.Cryptography.Pkcs.dll",
+ "lib/net9.0/System.Security.Cryptography.Pkcs.xml",
+ "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
+ "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
+ "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
+ "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml",
+ "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll",
+ "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.xml",
+ "system.security.cryptography.pkcs.9.0.15.nupkg.sha512",
+ "system.security.cryptography.pkcs.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Security.Cryptography.Primitives/4.3.0": {
+ "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
+ "type": "package",
+ "path": "system.security.cryptography.primitives/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.Primitives.dll",
+ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.Primitives.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
+ "system.security.cryptography.primitives.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.ProtectedData/9.0.6": {
+ "sha512": "yErfw/3pZkJE/VKza/Cm5idTpIKOy/vsmVi59Ta5SruPVtubzxb8CtnE8tyUpzs5pr0Y28GUFfSVzAhCLN3F/Q==",
+ "type": "package",
+ "path": "system.security.cryptography.protecteddata/9.0.6",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "PACKAGE.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net462/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net462/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net8.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/net9.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "system.security.cryptography.protecteddata.9.0.6.nupkg.sha512",
+ "system.security.cryptography.protecteddata.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Security.Cryptography.X509Certificates/4.3.0": {
+ "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
+ "type": "package",
+ "path": "system.security.cryptography.x509certificates/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net46/System.Security.Cryptography.X509Certificates.dll",
+ "lib/net461/System.Security.Cryptography.X509Certificates.dll",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net46/System.Security.Cryptography.X509Certificates.dll",
+ "ref/net461/System.Security.Cryptography.X509Certificates.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
+ "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
+ "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
+ "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
+ "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
+ "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
+ "system.security.cryptography.x509certificates.nuspec"
+ ]
+ },
+ "System.Security.Cryptography.Xml/9.0.15": {
+ "sha512": "/DqMTgJ0lcxaLGNc5pHls1dCqQVbPRQwweTp79bwqw8T8+2V1NodLfAr8RlS8Q4W0qs5HzA6dcW2jHIQf1n95g==",
+ "type": "package",
+ "path": "system.security.cryptography.xml/9.0.15",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Security.Cryptography.Xml.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net8.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
+ "lib/net462/System.Security.Cryptography.Xml.dll",
+ "lib/net462/System.Security.Cryptography.Xml.xml",
+ "lib/net8.0/System.Security.Cryptography.Xml.dll",
+ "lib/net8.0/System.Security.Cryptography.Xml.xml",
+ "lib/net9.0/System.Security.Cryptography.Xml.dll",
+ "lib/net9.0/System.Security.Cryptography.Xml.xml",
+ "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
+ "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
+ "system.security.cryptography.xml.9.0.15.nupkg.sha512",
+ "system.security.cryptography.xml.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Encoding/4.3.0": {
+ "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
+ "type": "package",
+ "path": "system.text.encoding/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Text.Encoding.dll",
+ "ref/netcore50/System.Text.Encoding.xml",
+ "ref/netcore50/de/System.Text.Encoding.xml",
+ "ref/netcore50/es/System.Text.Encoding.xml",
+ "ref/netcore50/fr/System.Text.Encoding.xml",
+ "ref/netcore50/it/System.Text.Encoding.xml",
+ "ref/netcore50/ja/System.Text.Encoding.xml",
+ "ref/netcore50/ko/System.Text.Encoding.xml",
+ "ref/netcore50/ru/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hans/System.Text.Encoding.xml",
+ "ref/netcore50/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.0/System.Text.Encoding.dll",
+ "ref/netstandard1.0/System.Text.Encoding.xml",
+ "ref/netstandard1.0/de/System.Text.Encoding.xml",
+ "ref/netstandard1.0/es/System.Text.Encoding.xml",
+ "ref/netstandard1.0/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.0/it/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.0/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
+ "ref/netstandard1.3/System.Text.Encoding.dll",
+ "ref/netstandard1.3/System.Text.Encoding.xml",
+ "ref/netstandard1.3/de/System.Text.Encoding.xml",
+ "ref/netstandard1.3/es/System.Text.Encoding.xml",
+ "ref/netstandard1.3/fr/System.Text.Encoding.xml",
+ "ref/netstandard1.3/it/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ja/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ko/System.Text.Encoding.xml",
+ "ref/netstandard1.3/ru/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
+ "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.text.encoding.4.3.0.nupkg.sha512",
+ "system.text.encoding.nuspec"
+ ]
+ },
+ "System.Threading/4.3.0": {
+ "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
+ "type": "package",
+ "path": "system.threading/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/netcore50/System.Threading.dll",
+ "lib/netstandard1.3/System.Threading.dll",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.dll",
+ "ref/netcore50/System.Threading.xml",
+ "ref/netcore50/de/System.Threading.xml",
+ "ref/netcore50/es/System.Threading.xml",
+ "ref/netcore50/fr/System.Threading.xml",
+ "ref/netcore50/it/System.Threading.xml",
+ "ref/netcore50/ja/System.Threading.xml",
+ "ref/netcore50/ko/System.Threading.xml",
+ "ref/netcore50/ru/System.Threading.xml",
+ "ref/netcore50/zh-hans/System.Threading.xml",
+ "ref/netcore50/zh-hant/System.Threading.xml",
+ "ref/netstandard1.0/System.Threading.dll",
+ "ref/netstandard1.0/System.Threading.xml",
+ "ref/netstandard1.0/de/System.Threading.xml",
+ "ref/netstandard1.0/es/System.Threading.xml",
+ "ref/netstandard1.0/fr/System.Threading.xml",
+ "ref/netstandard1.0/it/System.Threading.xml",
+ "ref/netstandard1.0/ja/System.Threading.xml",
+ "ref/netstandard1.0/ko/System.Threading.xml",
+ "ref/netstandard1.0/ru/System.Threading.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.xml",
+ "ref/netstandard1.3/System.Threading.dll",
+ "ref/netstandard1.3/System.Threading.xml",
+ "ref/netstandard1.3/de/System.Threading.xml",
+ "ref/netstandard1.3/es/System.Threading.xml",
+ "ref/netstandard1.3/fr/System.Threading.xml",
+ "ref/netstandard1.3/it/System.Threading.xml",
+ "ref/netstandard1.3/ja/System.Threading.xml",
+ "ref/netstandard1.3/ko/System.Threading.xml",
+ "ref/netstandard1.3/ru/System.Threading.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "runtimes/aot/lib/netcore50/System.Threading.dll",
+ "system.threading.4.3.0.nupkg.sha512",
+ "system.threading.nuspec"
+ ]
+ },
+ "System.Threading.Tasks/4.3.0": {
+ "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
+ "type": "package",
+ "path": "system.threading.tasks/4.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "ThirdPartyNotices.txt",
+ "dotnet_library_license.txt",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/portable-net45+win8+wp8+wpa81/_._",
+ "lib/win8/_._",
+ "lib/wp80/_._",
+ "lib/wpa81/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/netcore50/System.Threading.Tasks.dll",
+ "ref/netcore50/System.Threading.Tasks.xml",
+ "ref/netcore50/de/System.Threading.Tasks.xml",
+ "ref/netcore50/es/System.Threading.Tasks.xml",
+ "ref/netcore50/fr/System.Threading.Tasks.xml",
+ "ref/netcore50/it/System.Threading.Tasks.xml",
+ "ref/netcore50/ja/System.Threading.Tasks.xml",
+ "ref/netcore50/ko/System.Threading.Tasks.xml",
+ "ref/netcore50/ru/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
+ "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/System.Threading.Tasks.dll",
+ "ref/netstandard1.0/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/System.Threading.Tasks.dll",
+ "ref/netstandard1.3/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/de/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/es/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/it/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
+ "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
+ "ref/portable-net45+win8+wp8+wpa81/_._",
+ "ref/win8/_._",
+ "ref/wp80/_._",
+ "ref/wpa81/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.4.3.0.nupkg.sha512",
+ "system.threading.tasks.nuspec"
+ ]
+ },
+ "System.Threading.Tasks.Extensions/4.5.4": {
+ "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
+ "type": "package",
+ "path": "system.threading.tasks.extensions/4.5.4",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net461/System.Threading.Tasks.Extensions.dll",
+ "lib/net461/System.Threading.Tasks.Extensions.xml",
+ "lib/netcoreapp2.1/_._",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
+ "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
+ "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/netcoreapp2.1/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "system.threading.tasks.extensions.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "YamlDotNet/16.3.0": {
+ "sha512": "SgMOdxbz8X65z8hraIs6hOEdnkH6hESTAIUa7viEngHOYaH+6q5XJmwr1+yb9vJpNQ19hCQY69xbFsLtXpobQA==",
+ "type": "package",
+ "path": "yamldotnet/16.3.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "images/yamldotnet.png",
+ "lib/net47/YamlDotNet.dll",
+ "lib/net47/YamlDotNet.xml",
+ "lib/net6.0/YamlDotNet.dll",
+ "lib/net6.0/YamlDotNet.xml",
+ "lib/net8.0/YamlDotNet.dll",
+ "lib/net8.0/YamlDotNet.xml",
+ "lib/netstandard2.0/YamlDotNet.dll",
+ "lib/netstandard2.0/YamlDotNet.xml",
+ "lib/netstandard2.1/YamlDotNet.dll",
+ "lib/netstandard2.1/YamlDotNet.xml",
+ "yamldotnet.16.3.0.nupkg.sha512",
+ "yamldotnet.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net10.0": [
+ "NuGet.Packaging >= 7.6.0",
+ "Nuke.Common >= 10.*",
+ "System.Security.Cryptography.Xml >= 9.0.15"
+ ]
+ },
+ "packageFolders": {
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
+ "projectName": "_build",
+ "projectPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
+ "packagesPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages",
+ "outputPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/runner/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net10.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "all"
+ },
+ "SdkAnalysisLevel": "10.0.300"
+ },
+ "frameworks": {
+ "net10.0": {
+ "framework": "net10.0",
+ "targetAlias": "net10.0",
+ "dependencies": {
+ "NuGet.Packaging": {
+ "target": "Package",
+ "version": "[7.6.0, )"
+ },
+ "Nuke.Common": {
+ "target": "Package",
+ "version": "[10.*, )"
+ },
+ "System.Security.Cryptography.Xml": {
+ "target": "Package",
+ "version": "[9.0.15, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "downloadDependencies": [
+ {
+ "name": "GitVersion.Tool",
+ "version": "[6.7.0, 6.7.0]"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App.Ref",
+ "version": "[10.0.8, 10.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Host.linux-x64",
+ "version": "[10.0.8, 10.0.8]"
+ },
+ {
+ "name": "Microsoft.NETCore.App.Ref",
+ "version": "[10.0.8, 10.0.8]"
+ }
+ ],
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/.dotnet/sdk/10.0.300/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Build/obj/project.nuget.cache b/Build/obj/project.nuget.cache
new file mode 100644
index 00000000..00dbcb7b
--- /dev/null
+++ b/Build/obj/project.nuget.cache
@@ -0,0 +1,128 @@
+{
+ "version": 2,
+ "dgSpecHash": "MoCcC9QUCuo=",
+ "success": true,
+ "projectFilePath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
+ "expectedPackageFiles": [
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.core/1.50.0/azure.core.1.50.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.identity/1.17.1/azure.identity.1.17.1.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.security.keyvault.certificates/4.8.0/azure.security.keyvault.certificates.4.8.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.security.keyvault.keys/4.8.0/azure.security.keyvault.keys.4.8.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.security.keyvault.secrets/4.8.0/azure.security.keyvault.secrets.4.8.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/glob/1.1.9/glob.1.1.9.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/jetbrains.annotations/2025.2.2/jetbrains.annotations.2025.2.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/matkoch.microsoft.visualstudio.solutionpersistence/1.0.61/matkoch.microsoft.visualstudio.solutionpersistence.1.0.61.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.applicationinsights/2.23.0/microsoft.applicationinsights.2.23.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.bcl.asyncinterfaces/8.0.0/microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build/18.0.2/microsoft.build.18.0.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.framework/18.0.2/microsoft.build.framework.18.0.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.tasks.core/18.0.2/microsoft.build.tasks.core.18.0.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.utilities.core/18.0.2/microsoft.build.utilities.core.18.0.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.extensions.dependencymodel/10.0.0/microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.extensions.logging.abstractions/8.0.3/microsoft.extensions.logging.abstractions.8.0.3.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.identity.client/4.78.0/microsoft.identity.client.4.78.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.identity.client.extensions.msal/4.78.0/microsoft.identity.client.extensions.msal.4.78.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.identitymodel.abstractions/8.14.0/microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.net.stringtools/18.0.2/microsoft.net.stringtools.18.0.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/namotion.reflection/3.4.3/namotion.reflection.3.4.3.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/newtonsoft.json/13.0.4/newtonsoft.json.13.0.4.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/njsonschema/11.5.2/njsonschema.11.5.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/njsonschema.annotations/11.5.2/njsonschema.annotations.11.5.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/njsonschema.newtonsoftjson/11.5.2/njsonschema.newtonsoftjson.11.5.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.common/7.6.0/nuget.common.7.6.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.configuration/7.6.0/nuget.configuration.7.6.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.frameworks/7.6.0/nuget.frameworks.7.6.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.packaging/7.6.0/nuget.packaging.7.6.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.versioning/7.6.0/nuget.versioning.7.6.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.build/10.1.0/nuke.build.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.build.shared/10.1.0/nuke.build.shared.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.common/10.1.0/nuke.common.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.projectmodel/10.1.0/nuke.projectmodel.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.solutionmodel/10.1.0/nuke.solutionmodel.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.tooling/10.1.0/nuke.tooling.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities/10.1.0/nuke.utilities.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.io.compression/10.1.0/nuke.utilities.io.compression.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.io.globbing/10.1.0/nuke.utilities.io.globbing.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.net/10.1.0/nuke.utilities.net.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.text.json/10.1.0/nuke.utilities.text.json.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.text.yaml/10.1.0/nuke.utilities.text.yaml.10.1.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/octokit/14.0.0/octokit.14.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog/4.3.0/serilog.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.formatting.compact/3.0.0/serilog.formatting.compact.3.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.formatting.compact.reader/4.0.0/serilog.formatting.compact.reader.4.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.sinks.console/6.1.1/serilog.sinks.console.6.1.1.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.sinks.file/7.0.0/serilog.sinks.file.7.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/sharpziplib/1.4.2/sharpziplib.1.4.2.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.clientmodel/1.8.0/system.clientmodel.1.8.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.codedom/9.0.0/system.codedom.9.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.configuration.configurationmanager/9.0.0/system.configuration.configurationmanager.9.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.diagnosticsource/6.0.1/system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.eventlog/9.0.0/system.diagnostics.eventlog.9.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.formats.nrbf/9.0.0/system.formats.nrbf.9.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.memory.data/8.0.1/system.memory.data.8.0.1.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.net.http/4.3.4/system.net.http.4.3.4.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.reflection.metadataloadcontext/9.0.0/system.reflection.metadataloadcontext.9.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.resources.extensions/9.0.0/system.resources.extensions.9.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.pkcs/9.0.15/system.security.cryptography.pkcs.9.0.15.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.protecteddata/9.0.6/system.security.cryptography.protecteddata.9.0.6.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.xml/9.0.15/system.security.cryptography.xml.9.0.15.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/yamldotnet/16.3.0/yamldotnet.16.3.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/gitversion.tool/6.7.0/gitversion.tool.6.7.0.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.app.ref/10.0.8/microsoft.netcore.app.ref.10.0.8.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.aspnetcore.app.ref/10.0.8/microsoft.aspnetcore.app.ref.10.0.8.nupkg.sha512",
+ "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.app.host.linux-x64/10.0.8/microsoft.netcore.app.host.linux-x64.10.0.8.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file
From aa8804141d89951fe523be6c20eef34180ddd707 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 16 May 2026 19:47:33 +0000
Subject: [PATCH 4/4] chore: remove generated build artifacts
Agent-Logs-Url: https://github.com/dennisdoomen/CSharpGuidelines/sessions/2204c2c3-0c9b-4950-bc91-79931ab96c96
Co-authored-by: dennisdoomen <572734+dennisdoomen@users.noreply.github.com>
---
.gitignore | 2 +
Build/obj/_build.csproj.nuget.dgspec.json | 101 -
Build/obj/_build.csproj.nuget.g.props | 18 -
Build/obj/_build.csproj.nuget.g.targets | 7 -
Build/obj/project.assets.json | 5754 ---------------------
Build/obj/project.nuget.cache | 128 -
_sass/custom/_generic.scss | 8 +-
7 files changed, 5 insertions(+), 6013 deletions(-)
delete mode 100644 Build/obj/_build.csproj.nuget.dgspec.json
delete mode 100644 Build/obj/_build.csproj.nuget.g.props
delete mode 100644 Build/obj/_build.csproj.nuget.g.targets
delete mode 100644 Build/obj/project.assets.json
delete mode 100644 Build/obj/project.nuget.cache
diff --git a/.gitignore b/.gitignore
index 1cea65d5..89269cc2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,3 +11,5 @@ _site
/.nuke/temp
/build/bin
/build/obj
+/Build/bin
+/Build/obj
diff --git a/Build/obj/_build.csproj.nuget.dgspec.json b/Build/obj/_build.csproj.nuget.dgspec.json
deleted file mode 100644
index 9f67fff6..00000000
--- a/Build/obj/_build.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,101 +0,0 @@
-{
- "format": 1,
- "restore": {
- "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj": {}
- },
- "projects": {
- "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
- "projectName": "_build",
- "projectPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
- "packagesPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages",
- "outputPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/runner/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net10.0"
- ],
- "sources": {
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net10.0": {
- "framework": "net10.0",
- "targetAlias": "net10.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "all"
- },
- "SdkAnalysisLevel": "10.0.300"
- },
- "frameworks": {
- "net10.0": {
- "framework": "net10.0",
- "targetAlias": "net10.0",
- "dependencies": {
- "NuGet.Packaging": {
- "target": "Package",
- "version": "[7.6.0, )"
- },
- "Nuke.Common": {
- "target": "Package",
- "version": "[10.*, )"
- },
- "System.Security.Cryptography.Xml": {
- "target": "Package",
- "version": "[9.0.15, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "GitVersion.Tool",
- "version": "[6.7.0, 6.7.0]"
- },
- {
- "name": "Microsoft.AspNetCore.App.Ref",
- "version": "[10.0.8, 10.0.8]"
- },
- {
- "name": "Microsoft.NETCore.App.Host.linux-x64",
- "version": "[10.0.8, 10.0.8]"
- },
- {
- "name": "Microsoft.NETCore.App.Ref",
- "version": "[10.0.8, 10.0.8]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/.dotnet/sdk/10.0.300/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Build/obj/_build.csproj.nuget.g.props b/Build/obj/_build.csproj.nuget.g.props
deleted file mode 100644
index 0e1f7263..00000000
--- a/Build/obj/_build.csproj.nuget.g.props
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- /tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages
- /tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages
- PackageReference
- 7.0.0
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Build/obj/_build.csproj.nuget.g.targets b/Build/obj/_build.csproj.nuget.g.targets
deleted file mode 100644
index d4c0fa32..00000000
--- a/Build/obj/_build.csproj.nuget.g.targets
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Build/obj/project.assets.json b/Build/obj/project.assets.json
deleted file mode 100644
index 68d2a2fa..00000000
--- a/Build/obj/project.assets.json
+++ /dev/null
@@ -1,5754 +0,0 @@
-{
- "version": 4,
- "targets": {
- "net10.0": {
- "Azure.Core/1.50.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
- "System.ClientModel": "1.8.0",
- "System.Memory.Data": "8.0.1"
- },
- "compile": {
- "lib/net8.0/Azure.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Azure.Core.dll": {
- "related": ".xml"
- }
- }
- },
- "Azure.Identity/1.17.1": {
- "type": "package",
- "dependencies": {
- "Azure.Core": "1.50.0",
- "Microsoft.Identity.Client": "4.78.0",
- "Microsoft.Identity.Client.Extensions.Msal": "4.78.0"
- },
- "compile": {
- "lib/net8.0/Azure.Identity.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Azure.Identity.dll": {
- "related": ".xml"
- }
- }
- },
- "Azure.Security.KeyVault.Certificates/4.8.0": {
- "type": "package",
- "dependencies": {
- "Azure.Core": "1.46.2"
- },
- "compile": {
- "lib/net8.0/Azure.Security.KeyVault.Certificates.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Azure.Security.KeyVault.Certificates.dll": {
- "related": ".xml"
- }
- }
- },
- "Azure.Security.KeyVault.Keys/4.8.0": {
- "type": "package",
- "dependencies": {
- "Azure.Core": "1.46.2"
- },
- "compile": {
- "lib/net8.0/Azure.Security.KeyVault.Keys.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Azure.Security.KeyVault.Keys.dll": {
- "related": ".xml"
- }
- }
- },
- "Azure.Security.KeyVault.Secrets/4.8.0": {
- "type": "package",
- "dependencies": {
- "Azure.Core": "1.46.2"
- },
- "compile": {
- "lib/net8.0/Azure.Security.KeyVault.Secrets.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Azure.Security.KeyVault.Secrets.dll": {
- "related": ".xml"
- }
- }
- },
- "Glob/1.1.9": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Glob.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/Glob.dll": {}
- }
- },
- "JetBrains.Annotations/2025.2.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/JetBrains.Annotations.dll": {
- "related": ".deps.json;.xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/JetBrains.Annotations.dll": {
- "related": ".deps.json;.xml"
- }
- }
- },
- "matkoch.Microsoft.VisualStudio.SolutionPersistence/1.0.61": {
- "type": "package",
- "dependencies": {
- "System.Memory": "4.5.5",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.ApplicationInsights/2.23.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.DiagnosticSource": "5.0.0"
- },
- "compile": {
- "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Build/18.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Build.Framework": "18.0.2",
- "Microsoft.NET.StringTools": "18.0.2",
- "System.Configuration.ConfigurationManager": "9.0.0",
- "System.Diagnostics.EventLog": "9.0.0",
- "System.Reflection.MetadataLoadContext": "9.0.0",
- "System.Security.Cryptography.ProtectedData": "9.0.6"
- },
- "compile": {
- "ref/net10.0/Microsoft.Build.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/_._": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Build.Framework/18.0.2": {
- "type": "package",
- "compile": {
- "ref/net10.0/Microsoft.Build.Framework.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/_._": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Build.Locator/1.7.8": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.Build.Locator.dll": {}
- },
- "runtime": {
- "lib/net6.0/Microsoft.Build.Locator.dll": {}
- },
- "build": {
- "build/_._": {}
- }
- },
- "Microsoft.Build.Tasks.Core/18.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Build.Framework": "18.0.2",
- "Microsoft.Build.Utilities.Core": "18.0.2",
- "Microsoft.NET.StringTools": "18.0.2",
- "System.CodeDom": "9.0.0",
- "System.Configuration.ConfigurationManager": "9.0.0",
- "System.Diagnostics.EventLog": "9.0.0",
- "System.Formats.Nrbf": "9.0.0",
- "System.Resources.Extensions": "9.0.0",
- "System.Security.Cryptography.Pkcs": "9.0.6",
- "System.Security.Cryptography.ProtectedData": "9.0.6",
- "System.Security.Cryptography.Xml": "9.0.0"
- },
- "compile": {
- "ref/net10.0/Microsoft.Build.Tasks.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/_._": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Build.Utilities.Core/18.0.2": {
- "type": "package",
- "dependencies": {
- "Microsoft.Build.Framework": "18.0.2",
- "Microsoft.NET.StringTools": "18.0.2",
- "System.Configuration.ConfigurationManager": "9.0.0",
- "System.Diagnostics.EventLog": "9.0.0",
- "System.Security.Cryptography.ProtectedData": "9.0.6"
- },
- "compile": {
- "ref/net10.0/Microsoft.Build.Utilities.Core.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/_._": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "type": "package",
- "compile": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "Microsoft.Extensions.DependencyModel/10.0.0": {
- "type": "package",
- "compile": {
- "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.3": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2"
- },
- "compile": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
- }
- },
- "Microsoft.Identity.Client/4.78.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "8.14.0",
- "System.Diagnostics.DiagnosticSource": "6.0.1"
- },
- "compile": {
- "lib/net8.0/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Identity.Client.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.78.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Identity.Client": "4.78.0",
- "System.Security.Cryptography.ProtectedData": "4.5.0"
- },
- "compile": {
- "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.IdentityModel.Abstractions/8.14.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {
- "related": ".xml"
- }
- }
- },
- "Microsoft.NET.StringTools/18.0.2": {
- "type": "package",
- "compile": {
- "ref/net10.0/Microsoft.NET.StringTools.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/_._": {
- "related": ".pdb;.xml"
- }
- }
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Namotion.Reflection/3.4.3": {
- "type": "package",
- "compile": {
- "lib/net8.0/Namotion.Reflection.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Namotion.Reflection.dll": {
- "related": ".xml"
- }
- }
- },
- "Newtonsoft.Json/13.0.4": {
- "type": "package",
- "compile": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Newtonsoft.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "NJsonSchema/11.5.2": {
- "type": "package",
- "dependencies": {
- "NJsonSchema.Annotations": "11.5.2",
- "Namotion.Reflection": "3.4.3",
- "Newtonsoft.Json": "13.0.3"
- },
- "compile": {
- "lib/net8.0/NJsonSchema.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/NJsonSchema.dll": {
- "related": ".xml"
- }
- }
- },
- "NJsonSchema.Annotations/11.5.2": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/NJsonSchema.Annotations.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/NJsonSchema.Annotations.dll": {
- "related": ".xml"
- }
- }
- },
- "NJsonSchema.NewtonsoftJson/11.5.2": {
- "type": "package",
- "dependencies": {
- "NJsonSchema": "11.5.2",
- "Newtonsoft.Json": "13.0.3"
- },
- "compile": {
- "lib/net8.0/NJsonSchema.NewtonsoftJson.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/NJsonSchema.NewtonsoftJson.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Common/7.6.0": {
- "type": "package",
- "dependencies": {
- "NuGet.Frameworks": "7.6.0"
- },
- "compile": {
- "lib/net8.0/NuGet.Common.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/NuGet.Common.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Configuration/7.6.0": {
- "type": "package",
- "dependencies": {
- "NuGet.Common": "7.6.0",
- "System.Security.Cryptography.ProtectedData": "8.0.0"
- },
- "compile": {
- "lib/net8.0/NuGet.Configuration.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/NuGet.Configuration.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Frameworks/7.6.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/NuGet.Frameworks.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/NuGet.Frameworks.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Packaging/7.6.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "NuGet.Configuration": "7.6.0",
- "NuGet.Versioning": "7.6.0",
- "System.Security.Cryptography.Pkcs": "8.0.1"
- },
- "compile": {
- "lib/net8.0/NuGet.Packaging.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/NuGet.Packaging.dll": {
- "related": ".xml"
- }
- }
- },
- "NuGet.Versioning/7.6.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/NuGet.Versioning.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/NuGet.Versioning.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Build/10.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.ApplicationInsights": "2.23.0",
- "Microsoft.Extensions.DependencyModel": "10.0.0",
- "NJsonSchema": "11.5.2",
- "NJsonSchema.NewtonsoftJson": "11.5.2",
- "Nuke.Build.Shared": "10.1.0",
- "Nuke.ProjectModel": "10.1.0",
- "Nuke.SolutionModel": "10.1.0",
- "Nuke.Tooling": "10.1.0",
- "Nuke.Utilities": "10.1.0",
- "Nuke.Utilities.IO.Globbing": "10.1.0",
- "Nuke.Utilities.Net": "10.1.0",
- "Nuke.Utilities.Text.Json": "10.1.0",
- "Nuke.Utilities.Text.Yaml": "10.1.0",
- "Serilog.Formatting.Compact": "3.0.0",
- "Serilog.Formatting.Compact.Reader": "4.0.0",
- "Serilog.Sinks.Console": "6.1.1",
- "Serilog.Sinks.File": "7.0.0"
- },
- "compile": {
- "lib/net10.0/Nuke.Build.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Nuke.Build.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Build.Shared/10.1.0": {
- "type": "package",
- "dependencies": {
- "Nuke.Utilities": "10.1.0"
- },
- "compile": {
- "lib/net10.0/Nuke.Build.Shared.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Nuke.Build.Shared.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Common/10.1.0": {
- "type": "package",
- "dependencies": {
- "Azure.Identity": "1.17.1",
- "Azure.Security.KeyVault.Certificates": "4.8.0",
- "Azure.Security.KeyVault.Keys": "4.8.0",
- "Azure.Security.KeyVault.Secrets": "4.8.0",
- "Nuke.Build": "10.1.0",
- "Nuke.Build.Shared": "10.1.0",
- "Nuke.ProjectModel": "10.1.0",
- "Nuke.SolutionModel": "10.1.0",
- "Nuke.Tooling": "10.1.0",
- "Nuke.Utilities": "10.1.0",
- "Nuke.Utilities.IO.Compression": "10.1.0",
- "Nuke.Utilities.IO.Globbing": "10.1.0",
- "Nuke.Utilities.Net": "10.1.0",
- "Nuke.Utilities.Text.Json": "10.1.0",
- "Octokit": "14.0.0"
- },
- "compile": {
- "lib/net10.0/Nuke.Common.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Nuke.Common.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/Nuke.Common.props": {},
- "build/Nuke.Common.targets": {}
- }
- },
- "Nuke.ProjectModel/10.1.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Build": "18.0.2",
- "Microsoft.Build.Framework": "18.0.2",
- "Microsoft.Build.Locator": "1.7.8",
- "Microsoft.Build.Tasks.Core": "18.0.2",
- "Microsoft.Build.Utilities.Core": "18.0.2",
- "Nuke.SolutionModel": "10.1.0",
- "Nuke.Tooling": "10.1.0",
- "Nuke.Utilities": "10.1.0"
- },
- "compile": {
- "lib/net10.0/Nuke.ProjectModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Nuke.ProjectModel.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.SolutionModel/10.1.0": {
- "type": "package",
- "dependencies": {
- "Nuke.Utilities": "10.1.0",
- "matkoch.Microsoft.VisualStudio.SolutionPersistence": "1.0.61"
- },
- "compile": {
- "lib/net10.0/Nuke.SolutionModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Nuke.SolutionModel.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Tooling/10.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "13.0.4",
- "NuGet.Packaging": "6.12.1",
- "Nuke.Utilities": "10.1.0",
- "Nuke.Utilities.Text.Json": "10.1.0",
- "Serilog": "4.3.0"
- },
- "compile": {
- "lib/net10.0/Nuke.Tooling.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Nuke.Tooling.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Utilities/10.1.0": {
- "type": "package",
- "dependencies": {
- "JetBrains.Annotations": "2025.2.2"
- },
- "compile": {
- "lib/net10.0/Nuke.Utilities.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net10.0/Nuke.Utilities.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Utilities.IO.Compression/10.1.0": {
- "type": "package",
- "dependencies": {
- "Nuke.Utilities": "10.1.0",
- "SharpZipLib": "1.4.2"
- },
- "compile": {
- "lib/netstandard2.0/Nuke.Utilities.IO.Compression.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Nuke.Utilities.IO.Compression.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Utilities.IO.Globbing/10.1.0": {
- "type": "package",
- "dependencies": {
- "Glob": "1.1.9",
- "Nuke.Utilities": "10.1.0"
- },
- "compile": {
- "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Utilities.Net/10.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "13.0.4",
- "Nuke.Utilities": "10.1.0",
- "System.Net.Http": "4.3.4"
- },
- "compile": {
- "lib/netstandard2.0/Nuke.Utilities.Net.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Nuke.Utilities.Net.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Utilities.Text.Json/10.1.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "13.0.4",
- "Nuke.Utilities": "10.1.0"
- },
- "compile": {
- "lib/netstandard2.0/Nuke.Utilities.Text.Json.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Nuke.Utilities.Text.Json.dll": {
- "related": ".xml"
- }
- }
- },
- "Nuke.Utilities.Text.Yaml/10.1.0": {
- "type": "package",
- "dependencies": {
- "Nuke.Utilities": "10.1.0",
- "YamlDotNet": "16.3.0"
- },
- "compile": {
- "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.dll": {
- "related": ".xml"
- }
- }
- },
- "Octokit/14.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/Octokit.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/Octokit.dll": {
- "related": ".xml"
- }
- }
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "debian.8-x64"
- }
- }
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.23-x64"
- }
- }
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "fedora.24-x64"
- }
- }
- },
- "runtime.native.System/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "dependencies": {
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "dependencies": {
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- },
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.13.2-x64"
- }
- }
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "opensuse.42.1-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
- "assetType": "native",
- "rid": "osx.10.10-x64"
- }
- }
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "rhel.7-x64"
- }
- }
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.14.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.04-x64"
- }
- }
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "type": "package",
- "runtimeTargets": {
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
- "assetType": "native",
- "rid": "ubuntu.16.10-x64"
- }
- }
- },
- "Serilog/4.3.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/Serilog.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Serilog.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "build/_._": {}
- }
- },
- "Serilog.Formatting.Compact/3.0.0": {
- "type": "package",
- "dependencies": {
- "Serilog": "4.0.0"
- },
- "compile": {
- "lib/net8.0/Serilog.Formatting.Compact.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Serilog.Formatting.Compact.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Formatting.Compact.Reader/4.0.0": {
- "type": "package",
- "dependencies": {
- "Newtonsoft.Json": "13.0.3",
- "Serilog": "4.0.0"
- },
- "compile": {
- "lib/net8.0/Serilog.Formatting.Compact.Reader.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Serilog.Formatting.Compact.Reader.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Sinks.Console/6.1.1": {
- "type": "package",
- "dependencies": {
- "Serilog": "4.0.0"
- },
- "compile": {
- "lib/net8.0/Serilog.Sinks.Console.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/Serilog.Sinks.Console.dll": {
- "related": ".xml"
- }
- }
- },
- "Serilog.Sinks.File/7.0.0": {
- "type": "package",
- "dependencies": {
- "Serilog": "4.2.0"
- },
- "compile": {
- "lib/net9.0/Serilog.Sinks.File.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/Serilog.Sinks.File.dll": {
- "related": ".xml"
- }
- }
- },
- "SharpZipLib/1.4.2": {
- "type": "package",
- "compile": {
- "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/ICSharpCode.SharpZipLib.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "System.ClientModel/1.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Extensions.Logging.Abstractions": "8.0.3",
- "System.Memory.Data": "8.0.1"
- },
- "compile": {
- "lib/net9.0/System.ClientModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.ClientModel.dll": {
- "related": ".xml"
- }
- }
- },
- "System.CodeDom/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.CodeDom.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/_._": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Collections.Concurrent/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
- }
- },
- "System.Configuration.ConfigurationManager/9.0.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.EventLog": "9.0.0",
- "System.Security.Cryptography.ProtectedData": "9.0.0"
- },
- "compile": {
- "lib/net9.0/System.Configuration.ConfigurationManager.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/_._": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "type": "package",
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Diagnostics.EventLog/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Diagnostics.EventLog.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/_._": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net9.0/_._": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Formats.Nrbf/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Formats.Nrbf.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/_._": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Calendars/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Globalization.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Memory/4.5.5": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Memory.Data/8.0.1": {
- "type": "package",
- "compile": {
- "lib/net8.0/System.Memory.Data.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/System.Memory.Data.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Net.Http/4.3.4": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.1",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Diagnostics.DiagnosticSource": "4.3.0",
- "System.Diagnostics.Tracing": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Extensions": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.Net.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Security.Cryptography.X509Certificates": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Http.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Net.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Net.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.MetadataLoadContext/9.0.0": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Reflection.MetadataLoadContext.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/_._": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Resources.Extensions/9.0.0": {
- "type": "package",
- "dependencies": {
- "System.Formats.Nrbf": "9.0.0"
- },
- "compile": {
- "lib/net9.0/System.Resources.Extensions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/_._": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Runtime.Handles.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/_._": {}
- }
- },
- "System.Runtime.Numerics/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Globalization": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
- }
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
- },
- "runtimeTargets": {
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "osx"
- },
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Collections.Concurrent": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {}
- },
- "runtime": {
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
- "assetType": "runtime",
- "rid": "unix"
- }
- }
- },
- "System.Security.Cryptography.Pkcs/9.0.15": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- },
- "runtime": {
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
- }
- },
- "System.Security.Cryptography.ProtectedData/9.0.6": {
- "type": "package",
- "compile": {
- "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Globalization.Calendars": "4.3.0",
- "System.IO": "4.3.0",
- "System.IO.FileSystem": "4.3.0",
- "System.IO.FileSystem.Primitives": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.Handles": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Runtime.Numerics": "4.3.0",
- "System.Security.Cryptography.Algorithms": "4.3.0",
- "System.Security.Cryptography.Cng": "4.3.0",
- "System.Security.Cryptography.Csp": "4.3.0",
- "System.Security.Cryptography.Encoding": "4.3.0",
- "System.Security.Cryptography.OpenSsl": "4.3.0",
- "System.Security.Cryptography.Primitives": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading": "4.3.0",
- "runtime.native.System": "4.3.0",
- "runtime.native.System.Net.Http": "4.3.0",
- "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Security.Cryptography.Xml/9.0.15": {
- "type": "package",
- "dependencies": {
- "System.Security.Cryptography.Pkcs": "9.0.15"
- },
- "compile": {
- "lib/net9.0/System.Security.Cryptography.Xml.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net9.0/System.Security.Cryptography.Xml.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net8.0/_._": {}
- }
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "YamlDotNet/16.3.0": {
- "type": "package",
- "compile": {
- "lib/net8.0/YamlDotNet.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net8.0/YamlDotNet.dll": {
- "related": ".xml"
- }
- }
- }
- }
- },
- "libraries": {
- "Azure.Core/1.50.0": {
- "sha512": "GBNKZEhdIbTXxedvD3R7I/yDVFX9jJJEz02kCziFSJxspSQ5RMHc3GktulJ1s7+ffXaXD7kMgrtdQTaggyInLw==",
- "type": "package",
- "path": "azure.core/1.50.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.core.1.50.0.nupkg.sha512",
- "azure.core.nuspec",
- "azureicon.png",
- "lib/net462/Azure.Core.dll",
- "lib/net462/Azure.Core.xml",
- "lib/net472/Azure.Core.dll",
- "lib/net472/Azure.Core.xml",
- "lib/net8.0/Azure.Core.dll",
- "lib/net8.0/Azure.Core.xml",
- "lib/netstandard2.0/Azure.Core.dll",
- "lib/netstandard2.0/Azure.Core.xml"
- ]
- },
- "Azure.Identity/1.17.1": {
- "sha512": "MSZkBrctcpiGxs9Cvr2VKKoN6qFLZlP3I6xuCWJ9iTgitI5Rgxtk5gfOSpXPZE3+CJmZ/mnqpQyGyjawFn5Vvg==",
- "type": "package",
- "path": "azure.identity/1.17.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.identity.1.17.1.nupkg.sha512",
- "azure.identity.nuspec",
- "azureicon.png",
- "lib/net8.0/Azure.Identity.dll",
- "lib/net8.0/Azure.Identity.xml",
- "lib/netstandard2.0/Azure.Identity.dll",
- "lib/netstandard2.0/Azure.Identity.xml"
- ]
- },
- "Azure.Security.KeyVault.Certificates/4.8.0": {
- "sha512": "48EHvsZM0hQow0PP4PAkWZYcE/tmjfx7az07GrqU2Q/0p3O3Vm/F+bEu1iVREBYzSV7uHHPikyJyBnXClfKuJA==",
- "type": "package",
- "path": "azure.security.keyvault.certificates/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.security.keyvault.certificates.4.8.0.nupkg.sha512",
- "azure.security.keyvault.certificates.nuspec",
- "azureicon.png",
- "lib/net8.0/Azure.Security.KeyVault.Certificates.dll",
- "lib/net8.0/Azure.Security.KeyVault.Certificates.xml",
- "lib/netstandard2.0/Azure.Security.KeyVault.Certificates.dll",
- "lib/netstandard2.0/Azure.Security.KeyVault.Certificates.xml"
- ]
- },
- "Azure.Security.KeyVault.Keys/4.8.0": {
- "sha512": "3rueqKRzNZdW+gEWox07Hpxq3n+0AZdRw3QI4GC3GBzLCw9n00LXgy4upow00bAuQJ9QGX2xwzJPg2/wALPYDA==",
- "type": "package",
- "path": "azure.security.keyvault.keys/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.security.keyvault.keys.4.8.0.nupkg.sha512",
- "azure.security.keyvault.keys.nuspec",
- "azureicon.png",
- "lib/net8.0/Azure.Security.KeyVault.Keys.dll",
- "lib/net8.0/Azure.Security.KeyVault.Keys.xml",
- "lib/netstandard2.0/Azure.Security.KeyVault.Keys.dll",
- "lib/netstandard2.0/Azure.Security.KeyVault.Keys.xml"
- ]
- },
- "Azure.Security.KeyVault.Secrets/4.8.0": {
- "sha512": "tmcIgo+de2K5+PTBRNlnFLQFbmSoyuT9RpDr5MwKS6mIfNxLPQpARkRAP91r3tmeiJ9j/UCO0F+hTlk1Bk7HNQ==",
- "type": "package",
- "path": "azure.security.keyvault.secrets/4.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "README.md",
- "azure.security.keyvault.secrets.4.8.0.nupkg.sha512",
- "azure.security.keyvault.secrets.nuspec",
- "azureicon.png",
- "lib/net8.0/Azure.Security.KeyVault.Secrets.dll",
- "lib/net8.0/Azure.Security.KeyVault.Secrets.xml",
- "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll",
- "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.xml"
- ]
- },
- "Glob/1.1.9": {
- "sha512": "AfK5+ECWYTP7G3AAdnU8IfVj+QpGjrh9GC2mpdcJzCvtQ4pnerAGwHsxJ9D4/RnhDUz2DSzd951O/lQjQby2Sw==",
- "type": "package",
- "path": "glob/1.1.9",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "glob.1.1.9.nupkg.sha512",
- "glob.nuspec",
- "lib/net40/Glob.dll",
- "lib/net45/Glob.dll",
- "lib/net46/Glob.dll",
- "lib/netstandard1.3/Glob.dll",
- "lib/netstandard2.0/Glob.dll"
- ]
- },
- "JetBrains.Annotations/2025.2.2": {
- "sha512": "0X56ZRizuHdrnPpgXjWV7f2tQO1FlQg5O1967OGKnI/4ZRNOK642J8L7brM1nYvrxTTU5TP1yRyXLRLaXLPQ8A==",
- "type": "package",
- "path": "jetbrains.annotations/2025.2.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "jetbrains.annotations.2025.2.2.nupkg.sha512",
- "jetbrains.annotations.nuspec",
- "lib/net20/JetBrains.Annotations.dll",
- "lib/net20/JetBrains.Annotations.xml",
- "lib/netstandard1.0/JetBrains.Annotations.deps.json",
- "lib/netstandard1.0/JetBrains.Annotations.dll",
- "lib/netstandard1.0/JetBrains.Annotations.xml",
- "lib/netstandard2.0/JetBrains.Annotations.deps.json",
- "lib/netstandard2.0/JetBrains.Annotations.dll",
- "lib/netstandard2.0/JetBrains.Annotations.xml",
- "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
- "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml",
- "readme.md"
- ]
- },
- "matkoch.Microsoft.VisualStudio.SolutionPersistence/1.0.61": {
- "sha512": "EfEzClmsFSy1ukbJ9MeDB0zdAZ2k9HLxd6I3Hiv9Gz14Ql26XQ0GVXJESjTda0T78K/7UiraDx3w5AwRkxb5lg==",
- "type": "package",
- "path": "matkoch.microsoft.visualstudio.solutionpersistence/1.0.61",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.dll",
- "lib/netstandard2.0/Microsoft.VisualStudio.SolutionPersistence.xml",
- "matkoch.microsoft.visualstudio.solutionpersistence.1.0.61.nupkg.sha512",
- "matkoch.microsoft.visualstudio.solutionpersistence.nuspec"
- ]
- },
- "Microsoft.ApplicationInsights/2.23.0": {
- "sha512": "nWArUZTdU7iqZLycLKWe0TDms48KKGE6pONH2terYNa8REXiqixrMOkf1sk5DHGMaUTqONU2YkS4SAXBhLStgw==",
- "type": "package",
- "path": "microsoft.applicationinsights/2.23.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.png",
- "lib/net452/Microsoft.ApplicationInsights.dll",
- "lib/net452/Microsoft.ApplicationInsights.pdb",
- "lib/net452/Microsoft.ApplicationInsights.xml",
- "lib/net46/Microsoft.ApplicationInsights.dll",
- "lib/net46/Microsoft.ApplicationInsights.pdb",
- "lib/net46/Microsoft.ApplicationInsights.xml",
- "lib/netstandard2.0/Microsoft.ApplicationInsights.dll",
- "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb",
- "lib/netstandard2.0/Microsoft.ApplicationInsights.xml",
- "microsoft.applicationinsights.2.23.0.nupkg.sha512",
- "microsoft.applicationinsights.nuspec"
- ]
- },
- "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
- "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
- "type": "package",
- "path": "microsoft.bcl.asyncinterfaces/8.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
- "buildTransitive/net462/_._",
- "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
- "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
- "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
- "microsoft.bcl.asyncinterfaces.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Build/18.0.2": {
- "sha512": "MlcYsFVJbA7S1ByOf9DbuPMQ08nlF88VkqkIjmBkIiasA/M0Zo87H6Vk44e/SuLffomGGYSr2Hh5El6UEDDgKw==",
- "type": "package",
- "path": "microsoft.build/18.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net10.0/Microsoft.Build.dll",
- "lib/net10.0/Microsoft.Build.pdb",
- "lib/net10.0/Microsoft.Build.xml",
- "lib/net472/Microsoft.Build.dll",
- "lib/net472/Microsoft.Build.pdb",
- "lib/net472/Microsoft.Build.xml",
- "microsoft.build.18.0.2.nupkg.sha512",
- "microsoft.build.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net10.0/Microsoft.Build.dll",
- "ref/net10.0/Microsoft.Build.xml",
- "ref/net472/Microsoft.Build.dll",
- "ref/net472/Microsoft.Build.xml"
- ]
- },
- "Microsoft.Build.Framework/18.0.2": {
- "sha512": "sOSb+0J4G/jCBW/YqmRuL0eOMXgfw1KQLdC9TkbvfA5xs7uNm+PBQXJCOzSJGXtZcZrtXozcwxPmUiRUbmd7FA==",
- "type": "package",
- "path": "microsoft.build.framework/18.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net10.0/Microsoft.Build.Framework.dll",
- "lib/net10.0/Microsoft.Build.Framework.pdb",
- "lib/net10.0/Microsoft.Build.Framework.xml",
- "lib/net472/Microsoft.Build.Framework.dll",
- "lib/net472/Microsoft.Build.Framework.pdb",
- "lib/net472/Microsoft.Build.Framework.xml",
- "microsoft.build.framework.18.0.2.nupkg.sha512",
- "microsoft.build.framework.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net10.0/Microsoft.Build.Framework.dll",
- "ref/net10.0/Microsoft.Build.Framework.xml",
- "ref/net472/Microsoft.Build.Framework.dll",
- "ref/net472/Microsoft.Build.Framework.xml",
- "ref/netstandard2.0/Microsoft.Build.Framework.dll",
- "ref/netstandard2.0/Microsoft.Build.Framework.xml"
- ]
- },
- "Microsoft.Build.Locator/1.7.8": {
- "sha512": "sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==",
- "type": "package",
- "path": "microsoft.build.locator/1.7.8",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "build/Microsoft.Build.Locator.props",
- "build/Microsoft.Build.Locator.targets",
- "lib/net46/Microsoft.Build.Locator.dll",
- "lib/net6.0/Microsoft.Build.Locator.dll",
- "microsoft.build.locator.1.7.8.nupkg.sha512",
- "microsoft.build.locator.nuspec"
- ]
- },
- "Microsoft.Build.Tasks.Core/18.0.2": {
- "sha512": "ff9DeP4WUVxk6Ojm7qcK4HC+zXaKl0IJYXhS+lC51Sx76QtaQfPGZDJz9Go5ERQecmPV/HZ5brZAa9U36l2laA==",
- "type": "package",
- "path": "microsoft.build.tasks.core/18.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net10.0/Microsoft.Build.Tasks.Core.dll",
- "lib/net10.0/Microsoft.Build.Tasks.Core.pdb",
- "lib/net10.0/Microsoft.Build.Tasks.Core.xml",
- "lib/net472/Microsoft.Build.Tasks.Core.dll",
- "lib/net472/Microsoft.Build.Tasks.Core.pdb",
- "lib/net472/Microsoft.Build.Tasks.Core.xml",
- "microsoft.build.tasks.core.18.0.2.nupkg.sha512",
- "microsoft.build.tasks.core.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net10.0/Microsoft.Build.Tasks.Core.dll",
- "ref/net10.0/Microsoft.Build.Tasks.Core.xml",
- "ref/net472/Microsoft.Build.Tasks.Core.dll",
- "ref/net472/Microsoft.Build.Tasks.Core.xml",
- "ref/netstandard2.0/Microsoft.Build.Tasks.Core.dll",
- "ref/netstandard2.0/Microsoft.Build.Tasks.Core.xml"
- ]
- },
- "Microsoft.Build.Utilities.Core/18.0.2": {
- "sha512": "qsI2Mc8tbJEyg5m4oTvxlu5wY8te0TIVxObxILvrrPdeFUwH5V5UXUT2RV054b3S9msIR+7zViTWp4nRp0YGbQ==",
- "type": "package",
- "path": "microsoft.build.utilities.core/18.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net10.0/Microsoft.Build.Utilities.Core.dll",
- "lib/net10.0/Microsoft.Build.Utilities.Core.pdb",
- "lib/net10.0/Microsoft.Build.Utilities.Core.xml",
- "lib/net472/Microsoft.Build.Utilities.Core.dll",
- "lib/net472/Microsoft.Build.Utilities.Core.pdb",
- "lib/net472/Microsoft.Build.Utilities.Core.xml",
- "microsoft.build.utilities.core.18.0.2.nupkg.sha512",
- "microsoft.build.utilities.core.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net10.0/Microsoft.Build.Utilities.Core.dll",
- "ref/net10.0/Microsoft.Build.Utilities.Core.xml",
- "ref/net472/Microsoft.Build.Utilities.Core.dll",
- "ref/net472/Microsoft.Build.Utilities.Core.xml",
- "ref/netstandard2.0/Microsoft.Build.Utilities.Core.dll",
- "ref/netstandard2.0/Microsoft.Build.Utilities.Core.xml"
- ]
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": {
- "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==",
- "type": "package",
- "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
- "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
- "microsoft.extensions.dependencyinjection.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.DependencyModel/10.0.0": {
- "sha512": "RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==",
- "type": "package",
- "path": "microsoft.extensions.dependencymodel/10.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
- "lib/net10.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net10.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/net462/Microsoft.Extensions.DependencyModel.dll",
- "lib/net462/Microsoft.Extensions.DependencyModel.xml",
- "lib/net8.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net8.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/net9.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/net9.0/Microsoft.Extensions.DependencyModel.xml",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
- "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
- "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512",
- "microsoft.extensions.dependencymodel.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Extensions.Logging.Abstractions/8.0.3": {
- "sha512": "dL0QGToTxggRLMYY4ZYX5AMwBb+byQBd/5dMiZE07Nv73o6I5Are3C7eQTh7K2+A4ct0PVISSr7TZANbiNb2yQ==",
- "type": "package",
- "path": "microsoft.extensions.logging.abstractions/8.0.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
- "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
- "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
- "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
- "microsoft.extensions.logging.abstractions.8.0.3.nupkg.sha512",
- "microsoft.extensions.logging.abstractions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "Microsoft.Identity.Client/4.78.0": {
- "sha512": "vZ50HE9INSN+Ew8pCgTm0t7wzxQTqozF9L4MAsl64etXz0Teo0dbUvjpVzqDHRs6m1Vn8mHF04fGaxXrIvGpsg==",
- "type": "package",
- "path": "microsoft.identity.client/4.78.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net462/Microsoft.Identity.Client.dll",
- "lib/net462/Microsoft.Identity.Client.xml",
- "lib/net472/Microsoft.Identity.Client.dll",
- "lib/net472/Microsoft.Identity.Client.xml",
- "lib/net8.0-android34.0/Microsoft.Identity.Client.aar",
- "lib/net8.0-android34.0/Microsoft.Identity.Client.dll",
- "lib/net8.0-android34.0/Microsoft.Identity.Client.xml",
- "lib/net8.0-ios18.0/Microsoft.Identity.Client.dll",
- "lib/net8.0-ios18.0/Microsoft.Identity.Client.xml",
- "lib/net8.0/Microsoft.Identity.Client.dll",
- "lib/net8.0/Microsoft.Identity.Client.xml",
- "lib/netstandard2.0/Microsoft.Identity.Client.dll",
- "lib/netstandard2.0/Microsoft.Identity.Client.xml",
- "microsoft.identity.client.4.78.0.nupkg.sha512",
- "microsoft.identity.client.nuspec"
- ]
- },
- "Microsoft.Identity.Client.Extensions.Msal/4.78.0": {
- "sha512": "DYU9o+DrDQuyZxeq91GBA9eNqBvA3ZMkLzQpF7L9dTk6FcIBM1y1IHXWqiKXTvptPF7CZE59upbyUoa+FJ5eiA==",
- "type": "package",
- "path": "microsoft.identity.client.extensions.msal/4.78.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll",
- "lib/net8.0/Microsoft.Identity.Client.Extensions.Msal.xml",
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
- "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
- "microsoft.identity.client.extensions.msal.4.78.0.nupkg.sha512",
- "microsoft.identity.client.extensions.msal.nuspec"
- ]
- },
- "Microsoft.IdentityModel.Abstractions/8.14.0": {
- "sha512": "iwbCpSjD3ehfTwBhtSNEtKPK0ICun6ov7Ibx6ISNA9bfwIyzI2Siwyi9eJFCJBwxowK9xcA1mj+jBWiigeqgcQ==",
- "type": "package",
- "path": "microsoft.identitymodel.abstractions/8.14.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml",
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
- "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
- "microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512",
- "microsoft.identitymodel.abstractions.nuspec"
- ]
- },
- "Microsoft.NET.StringTools/18.0.2": {
- "sha512": "cTZw3GHkAlqZACYGeQT3niS3UfVQ8CH0O5+zUdhxstrg1Z8Q2ViXYFKjSxHmEXTX85mrOT/QnHZOeQhhSsIrkQ==",
- "type": "package",
- "path": "microsoft.net.stringtools/18.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "MSBuild-NuGet-Icon.png",
- "README.md",
- "lib/net10.0/Microsoft.NET.StringTools.dll",
- "lib/net10.0/Microsoft.NET.StringTools.pdb",
- "lib/net10.0/Microsoft.NET.StringTools.xml",
- "lib/net472/Microsoft.NET.StringTools.dll",
- "lib/net472/Microsoft.NET.StringTools.pdb",
- "lib/net472/Microsoft.NET.StringTools.xml",
- "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
- "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
- "lib/netstandard2.0/Microsoft.NET.StringTools.xml",
- "microsoft.net.stringtools.18.0.2.nupkg.sha512",
- "microsoft.net.stringtools.nuspec",
- "notices/THIRDPARTYNOTICES.txt",
- "ref/net10.0/Microsoft.NET.StringTools.dll",
- "ref/net10.0/Microsoft.NET.StringTools.xml",
- "ref/net472/Microsoft.NET.StringTools.dll",
- "ref/net472/Microsoft.NET.StringTools.xml",
- "ref/netstandard2.0/Microsoft.NET.StringTools.dll",
- "ref/netstandard2.0/Microsoft.NET.StringTools.xml"
- ]
- },
- "Microsoft.NETCore.Platforms/1.1.1": {
- "sha512": "TMBuzAHpTenGbGgk0SMTwyEkyijY/Eae4ZGsFNYJvAr/LDn1ku3Etp3FPxChmDp5HHF3kzJuoaa08N0xjqAJfQ==",
- "type": "package",
- "path": "microsoft.netcore.platforms/1.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.1.1.1.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Namotion.Reflection/3.4.3": {
- "sha512": "KLk2gLR9f8scM82EiL+p9TONXXPy9+IAZVMzJOA/Wsa7soZD7UJGG6j0fq0D9ZoVnBRRnSeEC7kShhRo3Olgaw==",
- "type": "package",
- "path": "namotion.reflection/3.4.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net462/Namotion.Reflection.dll",
- "lib/net462/Namotion.Reflection.xml",
- "lib/net8.0/Namotion.Reflection.dll",
- "lib/net8.0/Namotion.Reflection.xml",
- "lib/netstandard2.0/Namotion.Reflection.dll",
- "lib/netstandard2.0/Namotion.Reflection.xml",
- "namotion.reflection.3.4.3.nupkg.sha512",
- "namotion.reflection.nuspec"
- ]
- },
- "Newtonsoft.Json/13.0.4": {
- "sha512": "pdgNNMai3zv51W5aq268sujXUyx7SNdE2bj1wZcWjAQrKMFZV260lbqYop1d2GM67JI1huLRwxo9ZqnfF/lC6A==",
- "type": "package",
- "path": "newtonsoft.json/13.0.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.md",
- "README.md",
- "lib/net20/Newtonsoft.Json.dll",
- "lib/net20/Newtonsoft.Json.xml",
- "lib/net35/Newtonsoft.Json.dll",
- "lib/net35/Newtonsoft.Json.xml",
- "lib/net40/Newtonsoft.Json.dll",
- "lib/net40/Newtonsoft.Json.xml",
- "lib/net45/Newtonsoft.Json.dll",
- "lib/net45/Newtonsoft.Json.xml",
- "lib/net6.0/Newtonsoft.Json.dll",
- "lib/net6.0/Newtonsoft.Json.xml",
- "lib/netstandard1.0/Newtonsoft.Json.dll",
- "lib/netstandard1.0/Newtonsoft.Json.xml",
- "lib/netstandard1.3/Newtonsoft.Json.dll",
- "lib/netstandard1.3/Newtonsoft.Json.xml",
- "lib/netstandard2.0/Newtonsoft.Json.dll",
- "lib/netstandard2.0/Newtonsoft.Json.xml",
- "newtonsoft.json.13.0.4.nupkg.sha512",
- "newtonsoft.json.nuspec",
- "packageIcon.png"
- ]
- },
- "NJsonSchema/11.5.2": {
- "sha512": "CAmnt4tnylb82Ro6f2EFIGz8rmThuCsITECUNqGhVEQ5VvxV+XwsTPz6LF58MbvUEV1jVcH+uxxljgM/etgK7A==",
- "type": "package",
- "path": "njsonschema/11.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "NuGetIcon.png",
- "lib/net462/NJsonSchema.dll",
- "lib/net462/NJsonSchema.xml",
- "lib/net8.0/NJsonSchema.dll",
- "lib/net8.0/NJsonSchema.xml",
- "lib/netstandard2.0/NJsonSchema.dll",
- "lib/netstandard2.0/NJsonSchema.xml",
- "njsonschema.11.5.2.nupkg.sha512",
- "njsonschema.nuspec"
- ]
- },
- "NJsonSchema.Annotations/11.5.2": {
- "sha512": "OfYQgNzJZb1r/gR5vza0DbBLxnmcITDhA5CXFuX1qxuP3rRdQMjbIz5VyDVHCU1QxyrfAymzajbh7iszEvyFGQ==",
- "type": "package",
- "path": "njsonschema.annotations/11.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "NuGetIcon.png",
- "lib/net462/NJsonSchema.Annotations.dll",
- "lib/net462/NJsonSchema.Annotations.xml",
- "lib/netstandard2.0/NJsonSchema.Annotations.dll",
- "lib/netstandard2.0/NJsonSchema.Annotations.xml",
- "njsonschema.annotations.11.5.2.nupkg.sha512",
- "njsonschema.annotations.nuspec"
- ]
- },
- "NJsonSchema.NewtonsoftJson/11.5.2": {
- "sha512": "2KuhjeP/E/hqixoKRjKUXD56V8gBkEB51gdbTU2gN2AeabCG4gW5YsAUl+ZumFgj0cbEJ7GKdl9IBdeZaLxiTA==",
- "type": "package",
- "path": "njsonschema.newtonsoftjson/11.5.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "NuGetIcon.png",
- "lib/net462/NJsonSchema.NewtonsoftJson.dll",
- "lib/net462/NJsonSchema.NewtonsoftJson.xml",
- "lib/net8.0/NJsonSchema.NewtonsoftJson.dll",
- "lib/net8.0/NJsonSchema.NewtonsoftJson.xml",
- "lib/netstandard2.0/NJsonSchema.NewtonsoftJson.dll",
- "lib/netstandard2.0/NJsonSchema.NewtonsoftJson.xml",
- "njsonschema.newtonsoftjson.11.5.2.nupkg.sha512",
- "njsonschema.newtonsoftjson.nuspec"
- ]
- },
- "NuGet.Common/7.6.0": {
- "sha512": "uyXLqkbbZmkMvdHOR23l1EHW2hRmULtzoG3Ocj84VpGptnNfkODVboHGJfDfcn9Gi9oUNDs8/VjL4FZcST6zVg==",
- "type": "package",
- "path": "nuget.common/7.6.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Common.dll",
- "lib/net472/NuGet.Common.xml",
- "lib/net8.0/NuGet.Common.dll",
- "lib/net8.0/NuGet.Common.xml",
- "nuget.common.7.6.0.nupkg.sha512",
- "nuget.common.nuspec"
- ]
- },
- "NuGet.Configuration/7.6.0": {
- "sha512": "+bNj+YneC5CNg1vR+WZjLAakscJlsi0KhADZUgIJPn4pwh8/jeCUMC5ik5cpET/i+QOplDy7aJVTGkpdfrlPww==",
- "type": "package",
- "path": "nuget.configuration/7.6.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Configuration.dll",
- "lib/net472/NuGet.Configuration.xml",
- "lib/net8.0/NuGet.Configuration.dll",
- "lib/net8.0/NuGet.Configuration.xml",
- "nuget.configuration.7.6.0.nupkg.sha512",
- "nuget.configuration.nuspec"
- ]
- },
- "NuGet.Frameworks/7.6.0": {
- "sha512": "rJ7QtKN45XzLXCrMATve6eFLiUyUGEkA1rFSb6U6Fw6laM4hEAcKOrcdbgWlcFUlCK2158qP1LF00hg/ivF3nw==",
- "type": "package",
- "path": "nuget.frameworks/7.6.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Frameworks.dll",
- "lib/net472/NuGet.Frameworks.xml",
- "lib/net8.0/NuGet.Frameworks.dll",
- "lib/net8.0/NuGet.Frameworks.xml",
- "nuget.frameworks.7.6.0.nupkg.sha512",
- "nuget.frameworks.nuspec"
- ]
- },
- "NuGet.Packaging/7.6.0": {
- "sha512": "TDp+qHzRBy1zjwiJGCbfpdO0jMG5hH/bk7p1EABLKv9p5SIykDPGnbuYXm2iZO0QJ/H+hOI/vo5LfqM17Q+G0w==",
- "type": "package",
- "path": "nuget.packaging/7.6.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Packaging.dll",
- "lib/net472/NuGet.Packaging.xml",
- "lib/net8.0/NuGet.Packaging.dll",
- "lib/net8.0/NuGet.Packaging.xml",
- "nuget.packaging.7.6.0.nupkg.sha512",
- "nuget.packaging.nuspec"
- ]
- },
- "NuGet.Versioning/7.6.0": {
- "sha512": "TpZxfOoQBQk/0r/2uc1A1qNYIKHkJGgOrWP+ax3nsNAUN/1BOQMDrgmGADogSA4hOXH1ZJiyeYg4Ca+vUW0sEg==",
- "type": "package",
- "path": "nuget.versioning/7.6.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net472/NuGet.Versioning.dll",
- "lib/net472/NuGet.Versioning.xml",
- "lib/net8.0/NuGet.Versioning.dll",
- "lib/net8.0/NuGet.Versioning.xml",
- "nuget.versioning.7.6.0.nupkg.sha512",
- "nuget.versioning.nuspec"
- ]
- },
- "Nuke.Build/10.1.0": {
- "sha512": "6fW17c3K1M4jw4acp7sujpqSiN8UbZPudBvS9+LEpmH2iwf8uZ0rue1G1D+WNurAMK1p3kOH5qo1M99rwFtSrQ==",
- "type": "package",
- "path": "nuke.build/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/net10.0/Nuke.Build.dll",
- "lib/net10.0/Nuke.Build.xml",
- "nuke.build.10.1.0.nupkg.sha512",
- "nuke.build.nuspec"
- ]
- },
- "Nuke.Build.Shared/10.1.0": {
- "sha512": "4uwzKj5IbjOeKbVtCScPuFlBAPQvG9z/K9I7zvR7tUFFtXNqBfIZmy+lbOdgxy7YsKWO7xgvAtIC4VCem7AKLA==",
- "type": "package",
- "path": "nuke.build.shared/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/net10.0/Nuke.Build.Shared.dll",
- "lib/net10.0/Nuke.Build.Shared.xml",
- "lib/netstandard2.0/Nuke.Build.Shared.dll",
- "lib/netstandard2.0/Nuke.Build.Shared.xml",
- "nuke.build.shared.10.1.0.nupkg.sha512",
- "nuke.build.shared.nuspec"
- ]
- },
- "Nuke.Common/10.1.0": {
- "sha512": "bymYGBes5vZUEu4eMkp1zDAbXcEpJQgRo6UcIGIWqsCUpSZIwfozuyRKVpk6lWP5KX6ep8x/XC08KLXlC6D6yg==",
- "type": "package",
- "path": "nuke.common/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "analyzers/dotnet/cs/Microsoft.VisualStudio.SolutionPersistence.dll",
- "analyzers/dotnet/cs/Newtonsoft.Json.dll",
- "analyzers/dotnet/cs/Nuke.Build.Shared.dll",
- "analyzers/dotnet/cs/Nuke.SolutionModel.dll",
- "analyzers/dotnet/cs/Nuke.SourceGenerators.dll",
- "analyzers/dotnet/cs/Nuke.Utilities.IO.Globbing.dll",
- "analyzers/dotnet/cs/Nuke.Utilities.dll",
- "analyzers/dotnet/cs/Scriban.dll",
- "build/Nuke.Common.props",
- "build/Nuke.Common.targets",
- "build/netcore/HtmlAgilityPack.dll",
- "build/netcore/Humanizer.dll",
- "build/netcore/JetBrains.Annotations.dll",
- "build/netcore/Newtonsoft.Json.dll",
- "build/netcore/NuGet.Common.dll",
- "build/netcore/NuGet.Configuration.dll",
- "build/netcore/NuGet.Frameworks.dll",
- "build/netcore/NuGet.Packaging.dll",
- "build/netcore/NuGet.Versioning.dll",
- "build/netcore/Nuke.MSBuildTasks.deps.json",
- "build/netcore/Nuke.MSBuildTasks.dll",
- "build/netcore/Nuke.MSBuildTasks.targets",
- "build/netcore/Nuke.MSBuildTasks.xml",
- "build/netcore/Nuke.Tooling.Generator.dll",
- "build/netcore/Nuke.Tooling.Generator.dll.config",
- "build/netcore/Nuke.Tooling.Generator.xml",
- "build/netcore/Nuke.Tooling.dll",
- "build/netcore/Nuke.Tooling.xml",
- "build/netcore/Nuke.Utilities.Net.dll",
- "build/netcore/Nuke.Utilities.Net.xml",
- "build/netcore/Nuke.Utilities.Text.Json.dll",
- "build/netcore/Nuke.Utilities.Text.Json.xml",
- "build/netcore/Nuke.Utilities.dll",
- "build/netcore/Nuke.Utilities.xml",
- "build/netcore/Serilog.dll",
- "build/netcore/System.Security.Cryptography.Pkcs.dll",
- "build/netcore/System.Security.Cryptography.ProtectedData.dll",
- "build/netcore/af/Humanizer.resources.dll",
- "build/netcore/ar/Humanizer.resources.dll",
- "build/netcore/az/Humanizer.resources.dll",
- "build/netcore/bg/Humanizer.resources.dll",
- "build/netcore/bn/Humanizer.resources.dll",
- "build/netcore/ca/Humanizer.resources.dll",
- "build/netcore/cs/Humanizer.resources.dll",
- "build/netcore/da/Humanizer.resources.dll",
- "build/netcore/de/Humanizer.resources.dll",
- "build/netcore/el/Humanizer.resources.dll",
- "build/netcore/es/Humanizer.resources.dll",
- "build/netcore/fa/Humanizer.resources.dll",
- "build/netcore/fi/Humanizer.resources.dll",
- "build/netcore/fil/Humanizer.resources.dll",
- "build/netcore/fr/Humanizer.resources.dll",
- "build/netcore/he/Humanizer.resources.dll",
- "build/netcore/hr/Humanizer.resources.dll",
- "build/netcore/hu/Humanizer.resources.dll",
- "build/netcore/hy/Humanizer.resources.dll",
- "build/netcore/id/Humanizer.resources.dll",
- "build/netcore/is/Humanizer.resources.dll",
- "build/netcore/it/Humanizer.resources.dll",
- "build/netcore/ja/Humanizer.resources.dll",
- "build/netcore/ko/Humanizer.resources.dll",
- "build/netcore/ku/Humanizer.resources.dll",
- "build/netcore/lb/Humanizer.resources.dll",
- "build/netcore/lt/Humanizer.resources.dll",
- "build/netcore/lv/Humanizer.resources.dll",
- "build/netcore/ms/Humanizer.resources.dll",
- "build/netcore/mt/Humanizer.resources.dll",
- "build/netcore/nb/Humanizer.resources.dll",
- "build/netcore/nl/Humanizer.resources.dll",
- "build/netcore/pl/Humanizer.resources.dll",
- "build/netcore/pt-BR/Humanizer.resources.dll",
- "build/netcore/pt/Humanizer.resources.dll",
- "build/netcore/ro/Humanizer.resources.dll",
- "build/netcore/ru/Humanizer.resources.dll",
- "build/netcore/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
- "build/netcore/sk/Humanizer.resources.dll",
- "build/netcore/sl/Humanizer.resources.dll",
- "build/netcore/sr-Latn/Humanizer.resources.dll",
- "build/netcore/sr/Humanizer.resources.dll",
- "build/netcore/sv/Humanizer.resources.dll",
- "build/netcore/th/Humanizer.resources.dll",
- "build/netcore/tr/Humanizer.resources.dll",
- "build/netcore/uk/Humanizer.resources.dll",
- "build/netcore/uz-Cyrl-UZ/Humanizer.resources.dll",
- "build/netcore/uz-Latn-UZ/Humanizer.resources.dll",
- "build/netcore/vi/Humanizer.resources.dll",
- "build/netcore/zh-CN/Humanizer.resources.dll",
- "build/netcore/zh-Hans/Humanizer.resources.dll",
- "build/netcore/zh-Hant/Humanizer.resources.dll",
- "build/netfx/HtmlAgilityPack.dll",
- "build/netfx/Humanizer.dll",
- "build/netfx/JetBrains.Annotations.dll",
- "build/netfx/Newtonsoft.Json.dll",
- "build/netfx/NuGet.Common.dll",
- "build/netfx/NuGet.Configuration.dll",
- "build/netfx/NuGet.Frameworks.dll",
- "build/netfx/NuGet.Packaging.dll",
- "build/netfx/NuGet.Versioning.dll",
- "build/netfx/Nuke.MSBuildTasks.dll",
- "build/netfx/Nuke.MSBuildTasks.targets",
- "build/netfx/Nuke.MSBuildTasks.xml",
- "build/netfx/Nuke.Tooling.Generator.dll",
- "build/netfx/Nuke.Tooling.Generator.dll.config",
- "build/netfx/Nuke.Tooling.Generator.xml",
- "build/netfx/Nuke.Tooling.dll",
- "build/netfx/Nuke.Tooling.xml",
- "build/netfx/Nuke.Utilities.Net.dll",
- "build/netfx/Nuke.Utilities.Net.xml",
- "build/netfx/Nuke.Utilities.Text.Json.dll",
- "build/netfx/Nuke.Utilities.Text.Json.xml",
- "build/netfx/Nuke.Utilities.dll",
- "build/netfx/Nuke.Utilities.xml",
- "build/netfx/Serilog.dll",
- "build/netfx/System.Buffers.dll",
- "build/netfx/System.Collections.Immutable.dll",
- "build/netfx/System.ComponentModel.Annotations.dll",
- "build/netfx/System.Diagnostics.DiagnosticSource.dll",
- "build/netfx/System.Memory.dll",
- "build/netfx/System.Numerics.Vectors.dll",
- "build/netfx/System.Runtime.CompilerServices.Unsafe.dll",
- "build/netfx/System.Threading.Channels.dll",
- "build/netfx/System.Threading.Tasks.Extensions.dll",
- "build/netfx/af/Humanizer.resources.dll",
- "build/netfx/ar/Humanizer.resources.dll",
- "build/netfx/az/Humanizer.resources.dll",
- "build/netfx/bg/Humanizer.resources.dll",
- "build/netfx/bn/Humanizer.resources.dll",
- "build/netfx/ca/Humanizer.resources.dll",
- "build/netfx/cs/Humanizer.resources.dll",
- "build/netfx/da/Humanizer.resources.dll",
- "build/netfx/de/Humanizer.resources.dll",
- "build/netfx/el/Humanizer.resources.dll",
- "build/netfx/es/Humanizer.resources.dll",
- "build/netfx/fa/Humanizer.resources.dll",
- "build/netfx/fi/Humanizer.resources.dll",
- "build/netfx/fil/Humanizer.resources.dll",
- "build/netfx/fr/Humanizer.resources.dll",
- "build/netfx/he/Humanizer.resources.dll",
- "build/netfx/hr/Humanizer.resources.dll",
- "build/netfx/hu/Humanizer.resources.dll",
- "build/netfx/hy/Humanizer.resources.dll",
- "build/netfx/id/Humanizer.resources.dll",
- "build/netfx/is/Humanizer.resources.dll",
- "build/netfx/it/Humanizer.resources.dll",
- "build/netfx/ja/Humanizer.resources.dll",
- "build/netfx/ko/Humanizer.resources.dll",
- "build/netfx/ku/Humanizer.resources.dll",
- "build/netfx/lb/Humanizer.resources.dll",
- "build/netfx/lt/Humanizer.resources.dll",
- "build/netfx/lv/Humanizer.resources.dll",
- "build/netfx/ms/Humanizer.resources.dll",
- "build/netfx/mt/Humanizer.resources.dll",
- "build/netfx/nb/Humanizer.resources.dll",
- "build/netfx/nl/Humanizer.resources.dll",
- "build/netfx/pl/Humanizer.resources.dll",
- "build/netfx/pt-BR/Humanizer.resources.dll",
- "build/netfx/pt/Humanizer.resources.dll",
- "build/netfx/ro/Humanizer.resources.dll",
- "build/netfx/ru/Humanizer.resources.dll",
- "build/netfx/sk/Humanizer.resources.dll",
- "build/netfx/sl/Humanizer.resources.dll",
- "build/netfx/sr-Latn/Humanizer.resources.dll",
- "build/netfx/sr/Humanizer.resources.dll",
- "build/netfx/sv/Humanizer.resources.dll",
- "build/netfx/th/Humanizer.resources.dll",
- "build/netfx/tr/Humanizer.resources.dll",
- "build/netfx/uk/Humanizer.resources.dll",
- "build/netfx/uz-Cyrl-UZ/Humanizer.resources.dll",
- "build/netfx/uz-Latn-UZ/Humanizer.resources.dll",
- "build/netfx/vi/Humanizer.resources.dll",
- "build/netfx/zh-CN/Humanizer.resources.dll",
- "build/netfx/zh-Hans/Humanizer.resources.dll",
- "build/netfx/zh-Hant/Humanizer.resources.dll",
- "icon.png",
- "lib/net10.0/Nuke.Common.dll",
- "lib/net10.0/Nuke.Common.xml",
- "nuke.common.10.1.0.nupkg.sha512",
- "nuke.common.nuspec"
- ]
- },
- "Nuke.ProjectModel/10.1.0": {
- "sha512": "qOd7BAH/dnfJPxPipjB/slQK6K9FJOPzzj/Kbq4INJtfJod6dRm6Zu9yTk/l1CLRC68CQIVM3OLb1v3NxXgejw==",
- "type": "package",
- "path": "nuke.projectmodel/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/net10.0/Nuke.ProjectModel.dll",
- "lib/net10.0/Nuke.ProjectModel.xml",
- "lib/net8.0/Nuke.ProjectModel.dll",
- "lib/net8.0/Nuke.ProjectModel.xml",
- "lib/net9.0/Nuke.ProjectModel.dll",
- "lib/net9.0/Nuke.ProjectModel.xml",
- "nuke.projectmodel.10.1.0.nupkg.sha512",
- "nuke.projectmodel.nuspec"
- ]
- },
- "Nuke.SolutionModel/10.1.0": {
- "sha512": "A/jWyMVrwbT8Oh/X658/MjKLIr8BXWU9gL46FhWGRebgxiwlcuesV7AO5EXiaDH2MaR8RC6Bm0PIw+4OP7PBkQ==",
- "type": "package",
- "path": "nuke.solutionmodel/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/net10.0/Nuke.SolutionModel.dll",
- "lib/net10.0/Nuke.SolutionModel.xml",
- "lib/netstandard2.0/Nuke.SolutionModel.dll",
- "lib/netstandard2.0/Nuke.SolutionModel.xml",
- "nuke.solutionmodel.10.1.0.nupkg.sha512",
- "nuke.solutionmodel.nuspec"
- ]
- },
- "Nuke.Tooling/10.1.0": {
- "sha512": "Ilne9MWjyKV99zdlg1Fw2vylWGqCPjGxzbcpW9mdxVZhpNSgA4lSGvaoUBVAd2FjG6ynNmLCZY3Nz+g8QmuHMw==",
- "type": "package",
- "path": "nuke.tooling/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/net10.0/Nuke.Tooling.dll",
- "lib/net10.0/Nuke.Tooling.xml",
- "lib/netstandard2.0/Nuke.Tooling.dll",
- "lib/netstandard2.0/Nuke.Tooling.xml",
- "nuke.tooling.10.1.0.nupkg.sha512",
- "nuke.tooling.nuspec"
- ]
- },
- "Nuke.Utilities/10.1.0": {
- "sha512": "jLjpdbP751BNiMllC4wreUtGuo436YsntNttPWV9qfthVx11gJJvxR5ASHFiI7mD1+NOXbgP8zFNH+QXxqSM+Q==",
- "type": "package",
- "path": "nuke.utilities/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/net10.0/Nuke.Utilities.dll",
- "lib/net10.0/Nuke.Utilities.xml",
- "lib/netstandard2.0/Nuke.Utilities.dll",
- "lib/netstandard2.0/Nuke.Utilities.xml",
- "nuke.utilities.10.1.0.nupkg.sha512",
- "nuke.utilities.nuspec"
- ]
- },
- "Nuke.Utilities.IO.Compression/10.1.0": {
- "sha512": "6aJuGPmh34XjqGIzCWPEGlyk/7q5oH1BwvHIoc+TqeP/pgHUPHBs1EeXIcIyzTzfsOhQ5l4AYTRNwo0PBX8I7w==",
- "type": "package",
- "path": "nuke.utilities.io.compression/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/netstandard2.0/Nuke.Utilities.IO.Compression.dll",
- "lib/netstandard2.0/Nuke.Utilities.IO.Compression.xml",
- "nuke.utilities.io.compression.10.1.0.nupkg.sha512",
- "nuke.utilities.io.compression.nuspec"
- ]
- },
- "Nuke.Utilities.IO.Globbing/10.1.0": {
- "sha512": "BDUEnifcXnpdZYOesxMdniLBxqVYXPwlH1WsKlmSEIhZ8JetII4LZcLO1sjEgMays6LmakH/SaH3p3ELEV5Fyw==",
- "type": "package",
- "path": "nuke.utilities.io.globbing/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.dll",
- "lib/netstandard2.0/Nuke.Utilities.IO.Globbing.xml",
- "nuke.utilities.io.globbing.10.1.0.nupkg.sha512",
- "nuke.utilities.io.globbing.nuspec"
- ]
- },
- "Nuke.Utilities.Net/10.1.0": {
- "sha512": "UcdmLosYd5PcFjTqaEnSC5UOmukXp1VXtOroDnQshPJR2Bn2SUuse38eOkvjCN7IemQIN2Q+fYceJAeuQyJ7pQ==",
- "type": "package",
- "path": "nuke.utilities.net/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/netstandard2.0/Nuke.Utilities.Net.dll",
- "lib/netstandard2.0/Nuke.Utilities.Net.xml",
- "nuke.utilities.net.10.1.0.nupkg.sha512",
- "nuke.utilities.net.nuspec"
- ]
- },
- "Nuke.Utilities.Text.Json/10.1.0": {
- "sha512": "MEqDU6eeum4uzLz+jgMFuFcaZy/bpbWtz8rLl9i7T4wW8Q+YMgPXZ7RHhzPhcwEG3n8TvV4jnDImfPcqNx065Q==",
- "type": "package",
- "path": "nuke.utilities.text.json/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/netstandard2.0/Nuke.Utilities.Text.Json.dll",
- "lib/netstandard2.0/Nuke.Utilities.Text.Json.xml",
- "nuke.utilities.text.json.10.1.0.nupkg.sha512",
- "nuke.utilities.text.json.nuspec"
- ]
- },
- "Nuke.Utilities.Text.Yaml/10.1.0": {
- "sha512": "bO3dEpQcDk5He851rQzyrPyuLI3vL0q8EGZG7qFP4soMYHIPjSP68A/BQdWJOCmv4/zpMMYuKUBnhSeTD2BJAQ==",
- "type": "package",
- "path": "nuke.utilities.text.yaml/10.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "AppVeyorSettings.json",
- "icon.png",
- "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.dll",
- "lib/netstandard2.0/Nuke.Utilities.Text.Yaml.xml",
- "nuke.utilities.text.yaml.10.1.0.nupkg.sha512",
- "nuke.utilities.text.yaml.nuspec"
- ]
- },
- "Octokit/14.0.0": {
- "sha512": "jGOuTH1l+TCpJH+fwYOp7USzHDuGfN1jKbLz3J2COwyn+wL08eynvpnM6rY2qkzIEXum3PN2p2QkP3BW/p9Qcw==",
- "type": "package",
- "path": "octokit/14.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/netstandard2.0/Octokit.dll",
- "lib/netstandard2.0/Octokit.xml",
- "octokit.14.0.0.nupkg.sha512",
- "octokit.nuspec",
- "octokit.png"
- ]
- },
- "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
- "type": "package",
- "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
- "type": "package",
- "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
- "type": "package",
- "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.native.System/4.3.0": {
- "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
- "type": "package",
- "path": "runtime.native.system/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.4.3.0.nupkg.sha512",
- "runtime.native.system.nuspec"
- ]
- },
- "runtime.native.System.Net.Http/4.3.0": {
- "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
- "type": "package",
- "path": "runtime.native.system.net.http/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.net.http.4.3.0.nupkg.sha512",
- "runtime.native.system.net.http.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
- "type": "package",
- "path": "runtime.native.system.security.cryptography.apple/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "runtime.native.system.security.cryptography.apple.nuspec"
- ]
- },
- "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
- "type": "package",
- "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.native.system.security.cryptography.openssl.nuspec"
- ]
- },
- "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
- "type": "package",
- "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
- "type": "package",
- "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
- "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
- ]
- },
- "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
- "type": "package",
- "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
- ]
- },
- "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
- "type": "package",
- "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
- "type": "package",
- "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
- "type": "package",
- "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
- "sha512": "leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
- "type": "package",
- "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
- "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
- ]
- },
- "Serilog/4.3.0": {
- "sha512": "+cDryFR0GRhsGOnZSKwaDzRRl4MupvJ42FhCE4zhQRVanX0Jpg6WuCBk59OVhVDPmab1bB+nRykAnykYELA9qQ==",
- "type": "package",
- "path": "serilog/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "build/Serilog.targets",
- "icon.png",
- "lib/net462/Serilog.dll",
- "lib/net462/Serilog.xml",
- "lib/net471/Serilog.dll",
- "lib/net471/Serilog.xml",
- "lib/net6.0/Serilog.dll",
- "lib/net6.0/Serilog.xml",
- "lib/net8.0/Serilog.dll",
- "lib/net8.0/Serilog.xml",
- "lib/net9.0/Serilog.dll",
- "lib/net9.0/Serilog.xml",
- "lib/netstandard2.0/Serilog.dll",
- "lib/netstandard2.0/Serilog.xml",
- "serilog.4.3.0.nupkg.sha512",
- "serilog.nuspec"
- ]
- },
- "Serilog.Formatting.Compact/3.0.0": {
- "sha512": "wQsv14w9cqlfB5FX2MZpNsTawckN4a8dryuNGbebB/3Nh1pXnROHZov3swtu3Nj5oNG7Ba+xdu7Et/ulAUPanQ==",
- "type": "package",
- "path": "serilog.formatting.compact/3.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net462/Serilog.Formatting.Compact.dll",
- "lib/net462/Serilog.Formatting.Compact.xml",
- "lib/net471/Serilog.Formatting.Compact.dll",
- "lib/net471/Serilog.Formatting.Compact.xml",
- "lib/net6.0/Serilog.Formatting.Compact.dll",
- "lib/net6.0/Serilog.Formatting.Compact.xml",
- "lib/net8.0/Serilog.Formatting.Compact.dll",
- "lib/net8.0/Serilog.Formatting.Compact.xml",
- "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
- "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
- "serilog-extension-nuget.png",
- "serilog.formatting.compact.3.0.0.nupkg.sha512",
- "serilog.formatting.compact.nuspec"
- ]
- },
- "Serilog.Formatting.Compact.Reader/4.0.0": {
- "sha512": "E1gvPAx0AsQhlyzGwgcVnGe5QrdkSugwKh+6V/FUSdTMVKKPSiO6Ff5iosjBMNBvq244Zys7BhTfFmgCE0KUyQ==",
- "type": "package",
- "path": "serilog.formatting.compact.reader/4.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/Serilog.Formatting.Compact.Reader.dll",
- "lib/net462/Serilog.Formatting.Compact.Reader.xml",
- "lib/net471/Serilog.Formatting.Compact.Reader.dll",
- "lib/net471/Serilog.Formatting.Compact.Reader.xml",
- "lib/net6.0/Serilog.Formatting.Compact.Reader.dll",
- "lib/net6.0/Serilog.Formatting.Compact.Reader.xml",
- "lib/net8.0/Serilog.Formatting.Compact.Reader.dll",
- "lib/net8.0/Serilog.Formatting.Compact.Reader.xml",
- "lib/netstandard2.0/Serilog.Formatting.Compact.Reader.dll",
- "lib/netstandard2.0/Serilog.Formatting.Compact.Reader.xml",
- "serilog.formatting.compact.reader.4.0.0.nupkg.sha512",
- "serilog.formatting.compact.reader.nuspec"
- ]
- },
- "Serilog.Sinks.Console/6.1.1": {
- "sha512": "8jbqgjUyZlfCuSTaJk6lOca465OndqOz3KZP6Cryt/IqZYybyBu7GP0fE/AXBzrrQB3EBmQntBFAvMVz1COvAA==",
- "type": "package",
- "path": "serilog.sinks.console/6.1.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "icon.png",
- "lib/net462/Serilog.Sinks.Console.dll",
- "lib/net462/Serilog.Sinks.Console.xml",
- "lib/net471/Serilog.Sinks.Console.dll",
- "lib/net471/Serilog.Sinks.Console.xml",
- "lib/net6.0/Serilog.Sinks.Console.dll",
- "lib/net6.0/Serilog.Sinks.Console.xml",
- "lib/net8.0/Serilog.Sinks.Console.dll",
- "lib/net8.0/Serilog.Sinks.Console.xml",
- "lib/netstandard2.0/Serilog.Sinks.Console.dll",
- "lib/netstandard2.0/Serilog.Sinks.Console.xml",
- "serilog.sinks.console.6.1.1.nupkg.sha512",
- "serilog.sinks.console.nuspec"
- ]
- },
- "Serilog.Sinks.File/7.0.0": {
- "sha512": "fKL7mXv7qaiNBUC71ssvn/dU0k9t0o45+qm2XgKAlSt19xF+ijjxyA3R6HmCgfKEKwfcfkwWjayuQtRueZFkYw==",
- "type": "package",
- "path": "serilog.sinks.file/7.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "lib/net462/Serilog.Sinks.File.dll",
- "lib/net462/Serilog.Sinks.File.xml",
- "lib/net471/Serilog.Sinks.File.dll",
- "lib/net471/Serilog.Sinks.File.xml",
- "lib/net6.0/Serilog.Sinks.File.dll",
- "lib/net6.0/Serilog.Sinks.File.xml",
- "lib/net8.0/Serilog.Sinks.File.dll",
- "lib/net8.0/Serilog.Sinks.File.xml",
- "lib/net9.0/Serilog.Sinks.File.dll",
- "lib/net9.0/Serilog.Sinks.File.xml",
- "lib/netstandard2.0/Serilog.Sinks.File.dll",
- "lib/netstandard2.0/Serilog.Sinks.File.xml",
- "serilog-sink-nuget.png",
- "serilog.sinks.file.7.0.0.nupkg.sha512",
- "serilog.sinks.file.nuspec"
- ]
- },
- "SharpZipLib/1.4.2": {
- "sha512": "yjj+3zgz8zgXpiiC3ZdF/iyTBbz2fFvMxZFEBPUcwZjIvXOf37Ylm+K58hqMfIBt5JgU/Z2uoUS67JmTLe973A==",
- "type": "package",
- "path": "sharpziplib/1.4.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "images/sharpziplib-nuget-256x256.png",
- "lib/net6.0/ICSharpCode.SharpZipLib.dll",
- "lib/net6.0/ICSharpCode.SharpZipLib.pdb",
- "lib/net6.0/ICSharpCode.SharpZipLib.xml",
- "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
- "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
- "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
- "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
- "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
- "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
- "sharpziplib.1.4.2.nupkg.sha512",
- "sharpziplib.nuspec"
- ]
- },
- "System.ClientModel/1.8.0": {
- "sha512": "AqRzhn0v29GGGLj/Z6gKq4lGNtvPHT4nHdG5PDJh9IfVjv/nYUVmX11hwwws1vDFeIAzrvmn0dPu8IjLtu6fAw==",
- "type": "package",
- "path": "system.clientmodel/1.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "CHANGELOG.md",
- "DotNetPackageIcon.png",
- "README.md",
- "analyzers/dotnet/cs/System.ClientModel.SourceGeneration.dll",
- "lib/net8.0/System.ClientModel.dll",
- "lib/net8.0/System.ClientModel.xml",
- "lib/net9.0/System.ClientModel.dll",
- "lib/net9.0/System.ClientModel.xml",
- "lib/netstandard2.0/System.ClientModel.dll",
- "lib/netstandard2.0/System.ClientModel.xml",
- "system.clientmodel.1.8.0.nupkg.sha512",
- "system.clientmodel.nuspec"
- ]
- },
- "System.CodeDom/9.0.0": {
- "sha512": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==",
- "type": "package",
- "path": "system.codedom/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.CodeDom.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.CodeDom.targets",
- "lib/net462/System.CodeDom.dll",
- "lib/net462/System.CodeDom.xml",
- "lib/net8.0/System.CodeDom.dll",
- "lib/net8.0/System.CodeDom.xml",
- "lib/net9.0/System.CodeDom.dll",
- "lib/net9.0/System.CodeDom.xml",
- "lib/netstandard2.0/System.CodeDom.dll",
- "lib/netstandard2.0/System.CodeDom.xml",
- "system.codedom.9.0.0.nupkg.sha512",
- "system.codedom.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.dll",
- "ref/netcore50/System.Collections.xml",
- "ref/netcore50/de/System.Collections.xml",
- "ref/netcore50/es/System.Collections.xml",
- "ref/netcore50/fr/System.Collections.xml",
- "ref/netcore50/it/System.Collections.xml",
- "ref/netcore50/ja/System.Collections.xml",
- "ref/netcore50/ko/System.Collections.xml",
- "ref/netcore50/ru/System.Collections.xml",
- "ref/netcore50/zh-hans/System.Collections.xml",
- "ref/netcore50/zh-hant/System.Collections.xml",
- "ref/netstandard1.0/System.Collections.dll",
- "ref/netstandard1.0/System.Collections.xml",
- "ref/netstandard1.0/de/System.Collections.xml",
- "ref/netstandard1.0/es/System.Collections.xml",
- "ref/netstandard1.0/fr/System.Collections.xml",
- "ref/netstandard1.0/it/System.Collections.xml",
- "ref/netstandard1.0/ja/System.Collections.xml",
- "ref/netstandard1.0/ko/System.Collections.xml",
- "ref/netstandard1.0/ru/System.Collections.xml",
- "ref/netstandard1.0/zh-hans/System.Collections.xml",
- "ref/netstandard1.0/zh-hant/System.Collections.xml",
- "ref/netstandard1.3/System.Collections.dll",
- "ref/netstandard1.3/System.Collections.xml",
- "ref/netstandard1.3/de/System.Collections.xml",
- "ref/netstandard1.3/es/System.Collections.xml",
- "ref/netstandard1.3/fr/System.Collections.xml",
- "ref/netstandard1.3/it/System.Collections.xml",
- "ref/netstandard1.3/ja/System.Collections.xml",
- "ref/netstandard1.3/ko/System.Collections.xml",
- "ref/netstandard1.3/ru/System.Collections.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.4.3.0.nupkg.sha512",
- "system.collections.nuspec"
- ]
- },
- "System.Collections.Concurrent/4.3.0": {
- "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
- "type": "package",
- "path": "system.collections.concurrent/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Collections.Concurrent.dll",
- "lib/netstandard1.3/System.Collections.Concurrent.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.Concurrent.dll",
- "ref/netcore50/System.Collections.Concurrent.xml",
- "ref/netcore50/de/System.Collections.Concurrent.xml",
- "ref/netcore50/es/System.Collections.Concurrent.xml",
- "ref/netcore50/fr/System.Collections.Concurrent.xml",
- "ref/netcore50/it/System.Collections.Concurrent.xml",
- "ref/netcore50/ja/System.Collections.Concurrent.xml",
- "ref/netcore50/ko/System.Collections.Concurrent.xml",
- "ref/netcore50/ru/System.Collections.Concurrent.xml",
- "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
- "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/System.Collections.Concurrent.dll",
- "ref/netstandard1.1/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
- "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/System.Collections.Concurrent.dll",
- "ref/netstandard1.3/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.concurrent.4.3.0.nupkg.sha512",
- "system.collections.concurrent.nuspec"
- ]
- },
- "System.Configuration.ConfigurationManager/9.0.0": {
- "sha512": "PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==",
- "type": "package",
- "path": "system.configuration.configurationmanager/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
- "lib/net462/System.Configuration.ConfigurationManager.dll",
- "lib/net462/System.Configuration.ConfigurationManager.xml",
- "lib/net8.0/System.Configuration.ConfigurationManager.dll",
- "lib/net8.0/System.Configuration.ConfigurationManager.xml",
- "lib/net9.0/System.Configuration.ConfigurationManager.dll",
- "lib/net9.0/System.Configuration.ConfigurationManager.xml",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
- "system.configuration.configurationmanager.9.0.0.nupkg.sha512",
- "system.configuration.configurationmanager.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Diagnostics.DiagnosticSource/6.0.1": {
- "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
- "type": "package",
- "path": "system.diagnostics.diagnosticsource/6.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Diagnostics.DiagnosticSource.dll",
- "lib/net461/System.Diagnostics.DiagnosticSource.xml",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
- "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
- "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
- "system.diagnostics.diagnosticsource.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Diagnostics.EventLog/9.0.0": {
- "sha512": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==",
- "type": "package",
- "path": "system.diagnostics.eventlog/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Diagnostics.EventLog.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
- "lib/net462/System.Diagnostics.EventLog.dll",
- "lib/net462/System.Diagnostics.EventLog.xml",
- "lib/net8.0/System.Diagnostics.EventLog.dll",
- "lib/net8.0/System.Diagnostics.EventLog.xml",
- "lib/net9.0/System.Diagnostics.EventLog.dll",
- "lib/net9.0/System.Diagnostics.EventLog.xml",
- "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
- "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
- "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
- "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll",
- "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll",
- "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml",
- "system.diagnostics.eventlog.9.0.0.nupkg.sha512",
- "system.diagnostics.eventlog.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Diagnostics.Tracing/4.3.0": {
- "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
- "type": "package",
- "path": "system.diagnostics.tracing/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Diagnostics.Tracing.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.dll",
- "ref/netcore50/System.Diagnostics.Tracing.xml",
- "ref/netcore50/de/System.Diagnostics.Tracing.xml",
- "ref/netcore50/es/System.Diagnostics.Tracing.xml",
- "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
- "ref/netcore50/it/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
- "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
- "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
- "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.tracing.4.3.0.nupkg.sha512",
- "system.diagnostics.tracing.nuspec"
- ]
- },
- "System.Formats.Nrbf/9.0.0": {
- "sha512": "F/6tNE+ckmdFeSQAyQo26bQOqfPFKEfZcuqnp4kBE6/7jP26diP+QTHCJJ6vpEfaY6bLy+hBLiIQUSxSmNwLkA==",
- "type": "package",
- "path": "system.formats.nrbf/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Formats.Nrbf.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Formats.Nrbf.targets",
- "lib/net462/System.Formats.Nrbf.dll",
- "lib/net462/System.Formats.Nrbf.xml",
- "lib/net8.0/System.Formats.Nrbf.dll",
- "lib/net8.0/System.Formats.Nrbf.xml",
- "lib/net9.0/System.Formats.Nrbf.dll",
- "lib/net9.0/System.Formats.Nrbf.xml",
- "lib/netstandard2.0/System.Formats.Nrbf.dll",
- "lib/netstandard2.0/System.Formats.Nrbf.xml",
- "system.formats.nrbf.9.0.0.nupkg.sha512",
- "system.formats.nrbf.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
- "System.Globalization.Calendars/4.3.0": {
- "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
- "type": "package",
- "path": "system.globalization.calendars/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Calendars.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Calendars.dll",
- "ref/netstandard1.3/System.Globalization.Calendars.dll",
- "ref/netstandard1.3/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.calendars.4.3.0.nupkg.sha512",
- "system.globalization.calendars.nuspec"
- ]
- },
- "System.Globalization.Extensions/4.3.0": {
- "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
- "type": "package",
- "path": "system.globalization.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Globalization.Extensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Globalization.Extensions.dll",
- "ref/netstandard1.3/System.Globalization.Extensions.dll",
- "ref/netstandard1.3/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
- "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
- "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
- "system.globalization.extensions.4.3.0.nupkg.sha512",
- "system.globalization.extensions.nuspec"
- ]
- },
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.FileSystem/4.3.0": {
- "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
- "type": "package",
- "path": "system.io.filesystem/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.dll",
- "ref/netstandard1.3/System.IO.FileSystem.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.filesystem.4.3.0.nupkg.sha512",
- "system.io.filesystem.nuspec"
- ]
- },
- "System.IO.FileSystem.Primitives/4.3.0": {
- "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
- "type": "package",
- "path": "system.io.filesystem.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.IO.FileSystem.Primitives.dll",
- "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.IO.FileSystem.Primitives.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
- "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
- "system.io.filesystem.primitives.nuspec"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.Memory/4.5.5": {
- "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
- "type": "package",
- "path": "system.memory/4.5.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Memory.dll",
- "lib/net461/System.Memory.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.1/System.Memory.dll",
- "lib/netstandard1.1/System.Memory.xml",
- "lib/netstandard2.0/System.Memory.dll",
- "lib/netstandard2.0/System.Memory.xml",
- "ref/netcoreapp2.1/_._",
- "system.memory.4.5.5.nupkg.sha512",
- "system.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Memory.Data/8.0.1": {
- "sha512": "BVYuec3jV23EMRDeR7Dr1/qhx7369dZzJ9IWy2xylvb4YfXsrUxspWc4UWYid/tj4zZK58uGZqn2WQiaDMhmAg==",
- "type": "package",
- "path": "system.memory.data/8.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Memory.Data.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net6.0/_._",
- "buildTransitive/netcoreapp2.0/System.Memory.Data.targets",
- "lib/net462/System.Memory.Data.dll",
- "lib/net462/System.Memory.Data.xml",
- "lib/net6.0/System.Memory.Data.dll",
- "lib/net6.0/System.Memory.Data.xml",
- "lib/net7.0/System.Memory.Data.dll",
- "lib/net7.0/System.Memory.Data.xml",
- "lib/net8.0/System.Memory.Data.dll",
- "lib/net8.0/System.Memory.Data.xml",
- "lib/netstandard2.0/System.Memory.Data.dll",
- "lib/netstandard2.0/System.Memory.Data.xml",
- "system.memory.data.8.0.1.nupkg.sha512",
- "system.memory.data.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Net.Http/4.3.4": {
- "sha512": "aOa2d51SEbmM+H+Csw7yJOuNZoHkrP2XnAurye5HWYgGVVU54YZDvsLUYRv6h18X3sPnjNCANmN7ZhIPiqMcjA==",
- "type": "package",
- "path": "system.net.http/4.3.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/Xamarinmac20/_._",
- "lib/monoandroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/net46/System.Net.Http.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/Xamarinmac20/_._",
- "ref/monoandroid10/_._",
- "ref/monotouch10/_._",
- "ref/net45/_._",
- "ref/net46/System.Net.Http.dll",
- "ref/netcore50/System.Net.Http.dll",
- "ref/netstandard1.1/System.Net.Http.dll",
- "ref/netstandard1.3/System.Net.Http.dll",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
- "runtimes/win/lib/net46/System.Net.Http.dll",
- "runtimes/win/lib/netcore50/System.Net.Http.dll",
- "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
- "system.net.http.4.3.4.nupkg.sha512",
- "system.net.http.nuspec"
- ]
- },
- "System.Net.Primitives/4.3.0": {
- "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
- "type": "package",
- "path": "system.net.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Net.Primitives.dll",
- "ref/netcore50/System.Net.Primitives.xml",
- "ref/netcore50/de/System.Net.Primitives.xml",
- "ref/netcore50/es/System.Net.Primitives.xml",
- "ref/netcore50/fr/System.Net.Primitives.xml",
- "ref/netcore50/it/System.Net.Primitives.xml",
- "ref/netcore50/ja/System.Net.Primitives.xml",
- "ref/netcore50/ko/System.Net.Primitives.xml",
- "ref/netcore50/ru/System.Net.Primitives.xml",
- "ref/netcore50/zh-hans/System.Net.Primitives.xml",
- "ref/netcore50/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.0/System.Net.Primitives.dll",
- "ref/netstandard1.0/System.Net.Primitives.xml",
- "ref/netstandard1.0/de/System.Net.Primitives.xml",
- "ref/netstandard1.0/es/System.Net.Primitives.xml",
- "ref/netstandard1.0/fr/System.Net.Primitives.xml",
- "ref/netstandard1.0/it/System.Net.Primitives.xml",
- "ref/netstandard1.0/ja/System.Net.Primitives.xml",
- "ref/netstandard1.0/ko/System.Net.Primitives.xml",
- "ref/netstandard1.0/ru/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.1/System.Net.Primitives.dll",
- "ref/netstandard1.1/System.Net.Primitives.xml",
- "ref/netstandard1.1/de/System.Net.Primitives.xml",
- "ref/netstandard1.1/es/System.Net.Primitives.xml",
- "ref/netstandard1.1/fr/System.Net.Primitives.xml",
- "ref/netstandard1.1/it/System.Net.Primitives.xml",
- "ref/netstandard1.1/ja/System.Net.Primitives.xml",
- "ref/netstandard1.1/ko/System.Net.Primitives.xml",
- "ref/netstandard1.1/ru/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
- "ref/netstandard1.3/System.Net.Primitives.dll",
- "ref/netstandard1.3/System.Net.Primitives.xml",
- "ref/netstandard1.3/de/System.Net.Primitives.xml",
- "ref/netstandard1.3/es/System.Net.Primitives.xml",
- "ref/netstandard1.3/fr/System.Net.Primitives.xml",
- "ref/netstandard1.3/it/System.Net.Primitives.xml",
- "ref/netstandard1.3/ja/System.Net.Primitives.xml",
- "ref/netstandard1.3/ko/System.Net.Primitives.xml",
- "ref/netstandard1.3/ru/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
- "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.net.primitives.4.3.0.nupkg.sha512",
- "system.net.primitives.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.MetadataLoadContext/9.0.0": {
- "sha512": "nGdCUVhEQ9/CWYqgaibYEDwIJjokgIinQhCnpmtZfSXdMS6ysLZ8p9xvcJ8VPx6Xpv5OsLIUrho4B9FN+VV/tw==",
- "type": "package",
- "path": "system.reflection.metadataloadcontext/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Reflection.MetadataLoadContext.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets",
- "lib/net462/System.Reflection.MetadataLoadContext.dll",
- "lib/net462/System.Reflection.MetadataLoadContext.xml",
- "lib/net8.0/System.Reflection.MetadataLoadContext.dll",
- "lib/net8.0/System.Reflection.MetadataLoadContext.xml",
- "lib/net9.0/System.Reflection.MetadataLoadContext.dll",
- "lib/net9.0/System.Reflection.MetadataLoadContext.xml",
- "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll",
- "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml",
- "system.reflection.metadataloadcontext.9.0.0.nupkg.sha512",
- "system.reflection.metadataloadcontext.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Resources.Extensions/9.0.0": {
- "sha512": "tvhuT1D2OwPROdL1kRWtaTJliQo0WdyhvwDpd8RM997G7m3Hya5nhbYhNTS75x6Vu+ypSOgL5qxDCn8IROtCxw==",
- "type": "package",
- "path": "system.resources.extensions/9.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Resources.Extensions.targets",
- "buildTransitive/net462/System.Resources.Extensions.targets",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Resources.Extensions.targets",
- "lib/net462/System.Resources.Extensions.dll",
- "lib/net462/System.Resources.Extensions.xml",
- "lib/net8.0/System.Resources.Extensions.dll",
- "lib/net8.0/System.Resources.Extensions.xml",
- "lib/net9.0/System.Resources.Extensions.dll",
- "lib/net9.0/System.Resources.Extensions.xml",
- "lib/netstandard2.0/System.Resources.Extensions.dll",
- "lib/netstandard2.0/System.Resources.Extensions.xml",
- "system.resources.extensions.9.0.0.nupkg.sha512",
- "system.resources.extensions.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "system.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.dll",
- "lib/portable-net45+win8+wp80+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.dll",
- "ref/netcore50/System.Runtime.dll",
- "ref/netcore50/System.Runtime.xml",
- "ref/netcore50/de/System.Runtime.xml",
- "ref/netcore50/es/System.Runtime.xml",
- "ref/netcore50/fr/System.Runtime.xml",
- "ref/netcore50/it/System.Runtime.xml",
- "ref/netcore50/ja/System.Runtime.xml",
- "ref/netcore50/ko/System.Runtime.xml",
- "ref/netcore50/ru/System.Runtime.xml",
- "ref/netcore50/zh-hans/System.Runtime.xml",
- "ref/netcore50/zh-hant/System.Runtime.xml",
- "ref/netstandard1.0/System.Runtime.dll",
- "ref/netstandard1.0/System.Runtime.xml",
- "ref/netstandard1.0/de/System.Runtime.xml",
- "ref/netstandard1.0/es/System.Runtime.xml",
- "ref/netstandard1.0/fr/System.Runtime.xml",
- "ref/netstandard1.0/it/System.Runtime.xml",
- "ref/netstandard1.0/ja/System.Runtime.xml",
- "ref/netstandard1.0/ko/System.Runtime.xml",
- "ref/netstandard1.0/ru/System.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.xml",
- "ref/netstandard1.2/System.Runtime.dll",
- "ref/netstandard1.2/System.Runtime.xml",
- "ref/netstandard1.2/de/System.Runtime.xml",
- "ref/netstandard1.2/es/System.Runtime.xml",
- "ref/netstandard1.2/fr/System.Runtime.xml",
- "ref/netstandard1.2/it/System.Runtime.xml",
- "ref/netstandard1.2/ja/System.Runtime.xml",
- "ref/netstandard1.2/ko/System.Runtime.xml",
- "ref/netstandard1.2/ru/System.Runtime.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.xml",
- "ref/netstandard1.3/System.Runtime.dll",
- "ref/netstandard1.3/System.Runtime.xml",
- "ref/netstandard1.3/de/System.Runtime.xml",
- "ref/netstandard1.3/es/System.Runtime.xml",
- "ref/netstandard1.3/fr/System.Runtime.xml",
- "ref/netstandard1.3/it/System.Runtime.xml",
- "ref/netstandard1.3/ja/System.Runtime.xml",
- "ref/netstandard1.3/ko/System.Runtime.xml",
- "ref/netstandard1.3/ru/System.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.xml",
- "ref/netstandard1.5/System.Runtime.dll",
- "ref/netstandard1.5/System.Runtime.xml",
- "ref/netstandard1.5/de/System.Runtime.xml",
- "ref/netstandard1.5/es/System.Runtime.xml",
- "ref/netstandard1.5/fr/System.Runtime.xml",
- "ref/netstandard1.5/it/System.Runtime.xml",
- "ref/netstandard1.5/ja/System.Runtime.xml",
- "ref/netstandard1.5/ko/System.Runtime.xml",
- "ref/netstandard1.5/ru/System.Runtime.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.xml",
- "ref/portable-net45+win8+wp80+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.4.3.0.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
- "System.Runtime.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "system.runtime.handles/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/netstandard1.3/System.Runtime.Handles.dll",
- "ref/netstandard1.3/System.Runtime.Handles.xml",
- "ref/netstandard1.3/de/System.Runtime.Handles.xml",
- "ref/netstandard1.3/es/System.Runtime.Handles.xml",
- "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
- "ref/netstandard1.3/it/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.handles.4.3.0.nupkg.sha512",
- "system.runtime.handles.nuspec"
- ]
- },
- "System.Runtime.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "system.runtime.interopservices/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.InteropServices.dll",
- "lib/net463/System.Runtime.InteropServices.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.InteropServices.dll",
- "ref/net463/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.xml",
- "ref/netcore50/de/System.Runtime.InteropServices.xml",
- "ref/netcore50/es/System.Runtime.InteropServices.xml",
- "ref/netcore50/fr/System.Runtime.InteropServices.xml",
- "ref/netcore50/it/System.Runtime.InteropServices.xml",
- "ref/netcore50/ja/System.Runtime.InteropServices.xml",
- "ref/netcore50/ko/System.Runtime.InteropServices.xml",
- "ref/netcore50/ru/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/System.Runtime.InteropServices.dll",
- "ref/netstandard1.2/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/System.Runtime.InteropServices.dll",
- "ref/netstandard1.3/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/System.Runtime.InteropServices.dll",
- "ref/netstandard1.5/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.interopservices.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.nuspec"
- ]
- },
- "System.Runtime.Numerics/4.3.0": {
- "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
- "type": "package",
- "path": "system.runtime.numerics/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Runtime.Numerics.dll",
- "lib/netstandard1.3/System.Runtime.Numerics.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Runtime.Numerics.dll",
- "ref/netcore50/System.Runtime.Numerics.xml",
- "ref/netcore50/de/System.Runtime.Numerics.xml",
- "ref/netcore50/es/System.Runtime.Numerics.xml",
- "ref/netcore50/fr/System.Runtime.Numerics.xml",
- "ref/netcore50/it/System.Runtime.Numerics.xml",
- "ref/netcore50/ja/System.Runtime.Numerics.xml",
- "ref/netcore50/ko/System.Runtime.Numerics.xml",
- "ref/netcore50/ru/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
- "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/System.Runtime.Numerics.dll",
- "ref/netstandard1.1/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.numerics.4.3.0.nupkg.sha512",
- "system.runtime.numerics.nuspec"
- ]
- },
- "System.Security.Cryptography.Algorithms/4.3.0": {
- "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
- "type": "package",
- "path": "system.security.cryptography.algorithms/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Algorithms.dll",
- "lib/net461/System.Security.Cryptography.Algorithms.dll",
- "lib/net463/System.Security.Cryptography.Algorithms.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Algorithms.dll",
- "ref/net461/System.Security.Cryptography.Algorithms.dll",
- "ref/net463/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
- "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
- "system.security.cryptography.algorithms.nuspec"
- ]
- },
- "System.Security.Cryptography.Cng/4.3.0": {
- "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
- "type": "package",
- "path": "system.security.cryptography.cng/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/net46/System.Security.Cryptography.Cng.dll",
- "lib/net461/System.Security.Cryptography.Cng.dll",
- "lib/net463/System.Security.Cryptography.Cng.dll",
- "ref/net46/System.Security.Cryptography.Cng.dll",
- "ref/net461/System.Security.Cryptography.Cng.dll",
- "ref/net463/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
- "system.security.cryptography.cng.4.3.0.nupkg.sha512",
- "system.security.cryptography.cng.nuspec"
- ]
- },
- "System.Security.Cryptography.Csp/4.3.0": {
- "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
- "type": "package",
- "path": "system.security.cryptography.csp/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Csp.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Csp.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
- "runtimes/win/lib/netcore50/_._",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
- "system.security.cryptography.csp.4.3.0.nupkg.sha512",
- "system.security.cryptography.csp.nuspec"
- ]
- },
- "System.Security.Cryptography.Encoding/4.3.0": {
- "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
- "type": "package",
- "path": "system.security.cryptography.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Encoding.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Encoding.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
- "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
- "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
- "system.security.cryptography.encoding.nuspec"
- ]
- },
- "System.Security.Cryptography.OpenSsl/4.3.0": {
- "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
- "type": "package",
- "path": "system.security.cryptography.openssl/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
- "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "system.security.cryptography.openssl.nuspec"
- ]
- },
- "System.Security.Cryptography.Pkcs/9.0.15": {
- "sha512": "ZqPer8QiXxMHnXbgaJkWlD6kit8biD09lWmYP2NM+pfoaGwLneVCa4WnOVUJnAoZQrNKO/zryC68H2+G8xQbNA==",
- "type": "package",
- "path": "system.security.cryptography.pkcs/9.0.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
- "lib/net462/System.Security.Cryptography.Pkcs.dll",
- "lib/net462/System.Security.Cryptography.Pkcs.xml",
- "lib/net8.0/System.Security.Cryptography.Pkcs.dll",
- "lib/net8.0/System.Security.Cryptography.Pkcs.xml",
- "lib/net9.0/System.Security.Cryptography.Pkcs.dll",
- "lib/net9.0/System.Security.Cryptography.Pkcs.xml",
- "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
- "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
- "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
- "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml",
- "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll",
- "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.xml",
- "system.security.cryptography.pkcs.9.0.15.nupkg.sha512",
- "system.security.cryptography.pkcs.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.Cryptography.Primitives/4.3.0": {
- "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
- "type": "package",
- "path": "system.security.cryptography.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.Primitives.dll",
- "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.Primitives.dll",
- "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
- "system.security.cryptography.primitives.nuspec"
- ]
- },
- "System.Security.Cryptography.ProtectedData/9.0.6": {
- "sha512": "yErfw/3pZkJE/VKza/Cm5idTpIKOy/vsmVi59Ta5SruPVtubzxb8CtnE8tyUpzs5pr0Y28GUFfSVzAhCLN3F/Q==",
- "type": "package",
- "path": "system.security.cryptography.protecteddata/9.0.6",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "PACKAGE.md",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net462/System.Security.Cryptography.ProtectedData.dll",
- "lib/net462/System.Security.Cryptography.ProtectedData.xml",
- "lib/net8.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net8.0/System.Security.Cryptography.ProtectedData.xml",
- "lib/net9.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/net9.0/System.Security.Cryptography.ProtectedData.xml",
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "system.security.cryptography.protecteddata.9.0.6.nupkg.sha512",
- "system.security.cryptography.protecteddata.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Security.Cryptography.X509Certificates/4.3.0": {
- "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
- "type": "package",
- "path": "system.security.cryptography.x509certificates/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Security.Cryptography.X509Certificates.dll",
- "ref/net461/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
- "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
- "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
- "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
- "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
- "system.security.cryptography.x509certificates.nuspec"
- ]
- },
- "System.Security.Cryptography.Xml/9.0.15": {
- "sha512": "/DqMTgJ0lcxaLGNc5pHls1dCqQVbPRQwweTp79bwqw8T8+2V1NodLfAr8RlS8Q4W0qs5HzA6dcW2jHIQf1n95g==",
- "type": "package",
- "path": "system.security.cryptography.xml/9.0.15",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/net461/System.Security.Cryptography.Xml.targets",
- "buildTransitive/net462/_._",
- "buildTransitive/net8.0/_._",
- "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
- "lib/net462/System.Security.Cryptography.Xml.dll",
- "lib/net462/System.Security.Cryptography.Xml.xml",
- "lib/net8.0/System.Security.Cryptography.Xml.dll",
- "lib/net8.0/System.Security.Cryptography.Xml.xml",
- "lib/net9.0/System.Security.Cryptography.Xml.dll",
- "lib/net9.0/System.Security.Cryptography.Xml.xml",
- "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
- "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
- "system.security.cryptography.xml.9.0.15.nupkg.sha512",
- "system.security.cryptography.xml.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/netstandard1.3/System.Threading.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.dll",
- "ref/netcore50/System.Threading.xml",
- "ref/netcore50/de/System.Threading.xml",
- "ref/netcore50/es/System.Threading.xml",
- "ref/netcore50/fr/System.Threading.xml",
- "ref/netcore50/it/System.Threading.xml",
- "ref/netcore50/ja/System.Threading.xml",
- "ref/netcore50/ko/System.Threading.xml",
- "ref/netcore50/ru/System.Threading.xml",
- "ref/netcore50/zh-hans/System.Threading.xml",
- "ref/netcore50/zh-hant/System.Threading.xml",
- "ref/netstandard1.0/System.Threading.dll",
- "ref/netstandard1.0/System.Threading.xml",
- "ref/netstandard1.0/de/System.Threading.xml",
- "ref/netstandard1.0/es/System.Threading.xml",
- "ref/netstandard1.0/fr/System.Threading.xml",
- "ref/netstandard1.0/it/System.Threading.xml",
- "ref/netstandard1.0/ja/System.Threading.xml",
- "ref/netstandard1.0/ko/System.Threading.xml",
- "ref/netstandard1.0/ru/System.Threading.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.xml",
- "ref/netstandard1.3/System.Threading.dll",
- "ref/netstandard1.3/System.Threading.xml",
- "ref/netstandard1.3/de/System.Threading.xml",
- "ref/netstandard1.3/es/System.Threading.xml",
- "ref/netstandard1.3/fr/System.Threading.xml",
- "ref/netstandard1.3/it/System.Threading.xml",
- "ref/netstandard1.3/ja/System.Threading.xml",
- "ref/netstandard1.3/ko/System.Threading.xml",
- "ref/netstandard1.3/ru/System.Threading.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Threading.dll",
- "system.threading.4.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Threading.Tasks.Extensions.dll",
- "lib/net461/System.Threading.Tasks.Extensions.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netcoreapp2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "YamlDotNet/16.3.0": {
- "sha512": "SgMOdxbz8X65z8hraIs6hOEdnkH6hESTAIUa7viEngHOYaH+6q5XJmwr1+yb9vJpNQ19hCQY69xbFsLtXpobQA==",
- "type": "package",
- "path": "yamldotnet/16.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "images/yamldotnet.png",
- "lib/net47/YamlDotNet.dll",
- "lib/net47/YamlDotNet.xml",
- "lib/net6.0/YamlDotNet.dll",
- "lib/net6.0/YamlDotNet.xml",
- "lib/net8.0/YamlDotNet.dll",
- "lib/net8.0/YamlDotNet.xml",
- "lib/netstandard2.0/YamlDotNet.dll",
- "lib/netstandard2.0/YamlDotNet.xml",
- "lib/netstandard2.1/YamlDotNet.dll",
- "lib/netstandard2.1/YamlDotNet.xml",
- "yamldotnet.16.3.0.nupkg.sha512",
- "yamldotnet.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net10.0": [
- "NuGet.Packaging >= 7.6.0",
- "Nuke.Common >= 10.*",
- "System.Security.Cryptography.Xml >= 9.0.15"
- ]
- },
- "packageFolders": {
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
- "projectName": "_build",
- "projectPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
- "packagesPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages",
- "outputPath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/runner/.nuget/NuGet/NuGet.Config"
- ],
- "originalTargetFrameworks": [
- "net10.0"
- ],
- "sources": {
- "https://api.nuget.org/v3/index.json": {}
- },
- "frameworks": {
- "net10.0": {
- "framework": "net10.0",
- "targetAlias": "net10.0",
- "projectReferences": {}
- }
- },
- "warningProperties": {
- "warnAsError": [
- "NU1605"
- ]
- },
- "restoreAuditProperties": {
- "enableAudit": "true",
- "auditLevel": "low",
- "auditMode": "all"
- },
- "SdkAnalysisLevel": "10.0.300"
- },
- "frameworks": {
- "net10.0": {
- "framework": "net10.0",
- "targetAlias": "net10.0",
- "dependencies": {
- "NuGet.Packaging": {
- "target": "Package",
- "version": "[7.6.0, )"
- },
- "Nuke.Common": {
- "target": "Package",
- "version": "[10.*, )"
- },
- "System.Security.Cryptography.Xml": {
- "target": "Package",
- "version": "[9.0.15, )"
- }
- },
- "imports": [
- "net461",
- "net462",
- "net47",
- "net471",
- "net472",
- "net48",
- "net481"
- ],
- "assetTargetFallback": true,
- "warn": true,
- "downloadDependencies": [
- {
- "name": "GitVersion.Tool",
- "version": "[6.7.0, 6.7.0]"
- },
- {
- "name": "Microsoft.AspNetCore.App.Ref",
- "version": "[10.0.8, 10.0.8]"
- },
- {
- "name": "Microsoft.NETCore.App.Host.linux-x64",
- "version": "[10.0.8, 10.0.8]"
- },
- {
- "name": "Microsoft.NETCore.App.Ref",
- "version": "[10.0.8, 10.0.8]"
- }
- ],
- "frameworkReferences": {
- "Microsoft.NETCore.App": {
- "privateAssets": "all"
- }
- },
- "runtimeIdentifierGraphPath": "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/.dotnet/sdk/10.0.300/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/Build/obj/project.nuget.cache b/Build/obj/project.nuget.cache
deleted file mode 100644
index 00dbcb7b..00000000
--- a/Build/obj/project.nuget.cache
+++ /dev/null
@@ -1,128 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "MoCcC9QUCuo=",
- "success": true,
- "projectFilePath": "/home/runner/work/CSharpGuidelines/CSharpGuidelines/Build/_build.csproj",
- "expectedPackageFiles": [
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.core/1.50.0/azure.core.1.50.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.identity/1.17.1/azure.identity.1.17.1.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.security.keyvault.certificates/4.8.0/azure.security.keyvault.certificates.4.8.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.security.keyvault.keys/4.8.0/azure.security.keyvault.keys.4.8.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/azure.security.keyvault.secrets/4.8.0/azure.security.keyvault.secrets.4.8.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/glob/1.1.9/glob.1.1.9.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/jetbrains.annotations/2025.2.2/jetbrains.annotations.2025.2.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/matkoch.microsoft.visualstudio.solutionpersistence/1.0.61/matkoch.microsoft.visualstudio.solutionpersistence.1.0.61.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.applicationinsights/2.23.0/microsoft.applicationinsights.2.23.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.bcl.asyncinterfaces/8.0.0/microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build/18.0.2/microsoft.build.18.0.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.framework/18.0.2/microsoft.build.framework.18.0.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.locator/1.7.8/microsoft.build.locator.1.7.8.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.tasks.core/18.0.2/microsoft.build.tasks.core.18.0.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.build.utilities.core/18.0.2/microsoft.build.utilities.core.18.0.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.extensions.dependencymodel/10.0.0/microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.extensions.logging.abstractions/8.0.3/microsoft.extensions.logging.abstractions.8.0.3.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.identity.client/4.78.0/microsoft.identity.client.4.78.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.identity.client.extensions.msal/4.78.0/microsoft.identity.client.extensions.msal.4.78.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.identitymodel.abstractions/8.14.0/microsoft.identitymodel.abstractions.8.14.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.net.stringtools/18.0.2/microsoft.net.stringtools.18.0.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.platforms/1.1.1/microsoft.netcore.platforms.1.1.1.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/namotion.reflection/3.4.3/namotion.reflection.3.4.3.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/newtonsoft.json/13.0.4/newtonsoft.json.13.0.4.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/njsonschema/11.5.2/njsonschema.11.5.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/njsonschema.annotations/11.5.2/njsonschema.annotations.11.5.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/njsonschema.newtonsoftjson/11.5.2/njsonschema.newtonsoftjson.11.5.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.common/7.6.0/nuget.common.7.6.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.configuration/7.6.0/nuget.configuration.7.6.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.frameworks/7.6.0/nuget.frameworks.7.6.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.packaging/7.6.0/nuget.packaging.7.6.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuget.versioning/7.6.0/nuget.versioning.7.6.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.build/10.1.0/nuke.build.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.build.shared/10.1.0/nuke.build.shared.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.common/10.1.0/nuke.common.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.projectmodel/10.1.0/nuke.projectmodel.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.solutionmodel/10.1.0/nuke.solutionmodel.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.tooling/10.1.0/nuke.tooling.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities/10.1.0/nuke.utilities.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.io.compression/10.1.0/nuke.utilities.io.compression.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.io.globbing/10.1.0/nuke.utilities.io.globbing.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.net/10.1.0/nuke.utilities.net.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.text.json/10.1.0/nuke.utilities.text.json.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/nuke.utilities.text.yaml/10.1.0/nuke.utilities.text.yaml.10.1.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/octokit/14.0.0/octokit.14.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.native.system.security.cryptography.openssl/4.3.2/runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2/runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog/4.3.0/serilog.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.formatting.compact/3.0.0/serilog.formatting.compact.3.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.formatting.compact.reader/4.0.0/serilog.formatting.compact.reader.4.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.sinks.console/6.1.1/serilog.sinks.console.6.1.1.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/serilog.sinks.file/7.0.0/serilog.sinks.file.7.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/sharpziplib/1.4.2/sharpziplib.1.4.2.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.clientmodel/1.8.0/system.clientmodel.1.8.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.codedom/9.0.0/system.codedom.9.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.configuration.configurationmanager/9.0.0/system.configuration.configurationmanager.9.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.diagnosticsource/6.0.1/system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.eventlog/9.0.0/system.diagnostics.eventlog.9.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.formats.nrbf/9.0.0/system.formats.nrbf.9.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.memory.data/8.0.1/system.memory.data.8.0.1.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.net.http/4.3.4/system.net.http.4.3.4.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.reflection.metadataloadcontext/9.0.0/system.reflection.metadataloadcontext.9.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.resources.extensions/9.0.0/system.resources.extensions.9.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.cng/4.3.0/system.security.cryptography.cng.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.pkcs/9.0.15/system.security.cryptography.pkcs.9.0.15.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.protecteddata/9.0.6/system.security.cryptography.protecteddata.9.0.6.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.security.cryptography.xml/9.0.15/system.security.cryptography.xml.9.0.15.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/yamldotnet/16.3.0/yamldotnet.16.3.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/gitversion.tool/6.7.0/gitversion.tool.6.7.0.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.app.ref/10.0.8/microsoft.netcore.app.ref.10.0.8.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.aspnetcore.app.ref/10.0.8/microsoft.aspnetcore.app.ref.10.0.8.nupkg.sha512",
- "/tmp/codeql-scratch-963ead3f7987c15f/dbs/csharp/working/packages/microsoft.netcore.app.host.linux-x64/10.0.8/microsoft.netcore.app.host.linux-x64.10.0.8.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file
diff --git a/_sass/custom/_generic.scss b/_sass/custom/_generic.scss
index 809d690f..fe4ea69b 100644
--- a/_sass/custom/_generic.scss
+++ b/_sass/custom/_generic.scss
@@ -52,8 +52,8 @@ li {
}
.page__content blockquote.callout {
- margin: 2rem 0;
- padding: 1rem 1.25rem;
+ margin: 0.5rem 0;
+ padding: 0.5rem 0.5rem;
border-left-width: 0.35rem;
border-radius: 0.25rem;
color: $black;
@@ -70,10 +70,8 @@ li {
}
.callout__title {
- margin-bottom: 0.5rem !important;
- font-size: 0.9rem !important;
+ margin-bottom: 0.1rem !important;
font-weight: 900;
- line-height: 1.4 !important;
text-transform: uppercase;
letter-spacing: 0.04em;
}