first commit

This commit is contained in:
2026-07-17 17:45:56 +08:00
commit 04c487823b
5873 changed files with 12227228 additions and 0 deletions
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>$(NoWarn);CA1416</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SolidWorks.Interop.sldworks" Version="32.1.0" />
<PackageReference Include="SolidWorks.Interop.swconst" Version="32.1.0" />
</ItemGroup>
</Project>
@@ -0,0 +1,149 @@
using System.Globalization;
using System.Text.RegularExpressions;
static class DimensionalToleranceParser
{
static readonly Regex FitDesignationRegex = new(
@"(?<![A-Za-z])(?<letters>[A-Za-z]{1,2})\s*(?<grade>01|0|1[0-8]|[1-9])(?!\d)",
RegexOptions.Compiled | RegexOptions.CultureInvariant);
static readonly Regex ExplicitDeviationRegex = new(
@"\(\s*(?<upper>[+\-]?\s*\d+(?:[.,]\d+)?)\s*/\s*(?<lower>[+\-]?\s*\d+(?:[.,]\d+)?)\s*\)",
RegexOptions.Compiled | RegexOptions.CultureInvariant);
static readonly Regex PlusMinusRegex = new(
@"[±]\s*(?<value>\d+(?:[.,]\d+)?)",
RegexOptions.Compiled | RegexOptions.CultureInvariant);
public static Dictionary<string, object?> Parse(
string text,
string rawText = "",
double? measurement = null,
string objectName = "")
{
var normalized = Normalize(text);
var dimensionKind = DetectDimensionKind(normalized, objectName);
var nominal = ExtractNominalSize(normalized, measurement, dimensionKind);
var designations = ExtractFitDesignations(normalized);
var deviations = ExtractDeviations(normalized);
var warnings = new List<string>();
if (dimensionKind == "radius" && designations.Count > 0)
warnings.Add("fit_designation_applied_to_radius_dimension");
if (designations.Count == 1)
warnings.Add("single_tolerance_designation_does_not_define_complete_hole_shaft_fit");
if (nominal == null)
warnings.Add("nominal_size_not_parsed");
var hole = designations.FirstOrDefault(item => Equals(item["role"], "hole"));
var shaft = designations.FirstOrDefault(item => Equals(item["role"], "shaft"));
var fitCode = string.Join("/", designations.Select(item => Convert.ToString(item["designation"], CultureInfo.InvariantCulture)));
return new Dictionary<string, object?>(StringComparer.OrdinalIgnoreCase)
{
["dimension_kind"] = dimensionKind,
["nominal_size_mm"] = nominal,
["interface_diameter_mm"] = nominal == null ? null : dimensionKind == "radius" ? nominal * 2 : nominal,
["fit_code"] = string.IsNullOrWhiteSpace(fitCode) ? null : fitCode,
["fit_grade"] = string.IsNullOrWhiteSpace(fitCode) ? null : fitCode,
["fit_designations"] = designations,
["hole_tolerance_designation"] = hole?["designation"],
["shaft_tolerance_designation"] = shaft?["designation"],
["fit_completeness"] = hole != null && shaft != null ? "hole_and_shaft_pair" : designations.Count > 0 ? "single_designation" : "none",
["upper_deviation_mm"] = deviations.Upper,
["lower_deviation_mm"] = deviations.Lower,
["deviation_source"] = deviations.Source,
["raw_text"] = rawText,
["text"] = normalized,
["parse_warnings"] = warnings
};
}
public static bool LooksLikeTolerance(string rawText, string text)
{
var merged = rawText + " " + text;
return merged.Contains(@"\S", StringComparison.OrdinalIgnoreCase) ||
FitDesignationRegex.IsMatch(Normalize(merged)) ||
Regex.IsMatch(merged, @"[+\-±]\s*\d+(?:\.\d+)?", RegexOptions.CultureInvariant);
}
static List<Dictionary<string, object?>> ExtractFitDesignations(string text)
{
var result = new List<Dictionary<string, object?>>();
foreach (Match match in FitDesignationRegex.Matches(text))
{
var letters = match.Groups["letters"].Value;
var grade = match.Groups["grade"].Value;
var role = letters == letters.ToUpperInvariant()
? "hole"
: letters == letters.ToLowerInvariant()
? "shaft"
: "unknown";
result.Add(new Dictionary<string, object?>
{
["designation"] = letters + grade,
["fundamental_deviation"] = letters,
["it_grade"] = grade,
["role"] = role
});
}
return result;
}
static string DetectDimensionKind(string text, string objectName)
{
if (Regex.IsMatch(text, @"^\s*R\s*\d", RegexOptions.IgnoreCase | RegexOptions.CultureInvariant) ||
objectName.Contains("RadialDimension", StringComparison.OrdinalIgnoreCase))
return "radius";
if (text.IndexOfAny(['Φ', 'φ', '⌀', 'Ø']) >= 0 ||
objectName.Contains("DiametricDimension", StringComparison.OrdinalIgnoreCase))
return "diameter";
return "linear_or_unspecified";
}
static double? ExtractNominalSize(string text, double? measurement, string dimensionKind)
{
var pattern = dimensionKind switch
{
"radius" => @"^\s*R\s*(?<value>\d+(?:[.,]\d+)?)",
"diameter" => @"[Φφ⌀Ø]\s*(?<value>\d+(?:[.,]\d+)?)",
_ => @"(?<value>\d+(?:[.,]\d+)?)"
};
var match = Regex.Match(text, pattern, RegexOptions.IgnoreCase | RegexOptions.CultureInvariant);
if (match.Success && TryParseNumber(match.Groups["value"].Value, out var parsed))
return parsed;
return measurement is > 0 ? measurement : null;
}
static (double? Upper, double? Lower, string? Source) ExtractDeviations(string text)
{
var explicitMatch = ExplicitDeviationRegex.Match(text);
if (explicitMatch.Success &&
TryParseNumber(explicitMatch.Groups["upper"].Value, out var upper) &&
TryParseNumber(explicitMatch.Groups["lower"].Value, out var lower))
return (upper, lower, "explicit_upper_lower");
var plusMinusMatch = PlusMinusRegex.Match(text);
if (plusMinusMatch.Success && TryParseNumber(plusMinusMatch.Groups["value"].Value, out var value))
return (value, -value, "explicit_plus_minus");
return (null, null, null);
}
static bool TryParseNumber(string text, out double value) =>
double.TryParse(
text.Replace(" ", "", StringComparison.Ordinal).Replace('', '-').Replace(',', '.'),
NumberStyles.Float,
CultureInfo.InvariantCulture,
out value);
static string Normalize(string text)
{
var value = text ?? "";
value = Regex.Replace(value, @"\\S([^;]+)\^([^;]*);", "$1/$2", RegexOptions.CultureInvariant);
value = Regex.Replace(value, @"\\S([^;]+);", "$1", RegexOptions.CultureInvariant);
value = Regex.Replace(value, @"\\[AH][^;]*;", "", RegexOptions.CultureInvariant);
value = value.Replace("{", "", StringComparison.Ordinal).Replace("}", "", StringComparison.Ordinal);
return Regex.Replace(value, @"\s+", " ").Trim();
}
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,11 @@
{
"AI": {
"ApiKey": "",
"Provider": "dashscope",
"Model": "qwen-vl-max",
"TextModel": "qwen-plus",
"BaseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"ApiMode": "chat_completions",
"MaxImages": 6
}
}
@@ -0,0 +1,11 @@
{
"AI": {
"ApiKey": "sk-fd7a184d854143528ad16ba12c0ea9bd",
"Provider": "dashscope",
"Model": "qwen3.7-plus",
"TextModel": "qwen3.7-plus",
"BaseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"ApiMode": "chat_completions",
"MaxImages": 12
}
}
@@ -0,0 +1,57 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v10.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v10.0": {
"Agent4.Api/1.0.0": {
"dependencies": {
"SolidWorks.Interop.sldworks": "32.1.0",
"SolidWorks.Interop.swconst": "32.1.0"
},
"runtime": {
"Agent4.Api.dll": {}
}
},
"SolidWorks.Interop.sldworks/32.1.0": {
"runtime": {
"lib/netstandard2.0/SolidWorks.Interop.sldworks.dll": {
"assemblyVersion": "32.1.0.123",
"fileVersion": "32.1.0.123"
}
}
},
"SolidWorks.Interop.swconst/32.1.0": {
"runtime": {
"lib/netstandard2.0/SolidWorks.Interop.swconst.dll": {
"assemblyVersion": "32.1.0.123",
"fileVersion": "32.1.0.123"
}
}
}
}
},
"libraries": {
"Agent4.Api/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"SolidWorks.Interop.sldworks/32.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lq3QmJwBbVE3K+pN5JFSGn1Bj7J1vUyTr4TtT23UAOtd8MXLElZROm9Iee2N8SP8AXsLTpXdBXGs7xYeJT53qw==",
"path": "solidworks.interop.sldworks/32.1.0",
"hashPath": "solidworks.interop.sldworks.32.1.0.nupkg.sha512"
},
"SolidWorks.Interop.swconst/32.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mOLeWDKf0hX7iSNmdc22FmwoCaqH3KuNhODNGdWuT36KB/maGzQdfU+r9YS97n3mMIdWN3qaLBQ4eJG8z77rMw==",
"path": "solidworks.interop.swconst/32.1.0",
"hashPath": "solidworks.interop.swconst.32.1.0.nupkg.sha512"
}
}
}
@@ -0,0 +1,19 @@
{
"runtimeOptions": {
"tfm": "net10.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "10.0.0"
}
],
"configProperties": {
"System.GC.Server": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
@@ -0,0 +1,11 @@
{
"AI": {
"ApiKey": "",
"Provider": "dashscope",
"Model": "qwen-vl-max",
"TextModel": "qwen-plus",
"BaseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"ApiMode": "chat_completions",
"MaxImages": 6
}
}
@@ -0,0 +1,11 @@
{
"AI": {
"ApiKey": "sk-fd7a184d854143528ad16ba12c0ea9bd",
"Provider": "dashscope",
"Model": "qwen3.7-plus",
"TextModel": "qwen3.7-plus",
"BaseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"ApiMode": "chat_completions",
"MaxImages": 12
}
}
@@ -0,0 +1,57 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v10.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v10.0": {
"Agent4.Api/1.0.0": {
"dependencies": {
"SolidWorks.Interop.sldworks": "32.1.0",
"SolidWorks.Interop.swconst": "32.1.0"
},
"runtime": {
"Agent4.Api.dll": {}
}
},
"SolidWorks.Interop.sldworks/32.1.0": {
"runtime": {
"lib/netstandard2.0/SolidWorks.Interop.sldworks.dll": {
"assemblyVersion": "32.1.0.123",
"fileVersion": "32.1.0.123"
}
}
},
"SolidWorks.Interop.swconst/32.1.0": {
"runtime": {
"lib/netstandard2.0/SolidWorks.Interop.swconst.dll": {
"assemblyVersion": "32.1.0.123",
"fileVersion": "32.1.0.123"
}
}
}
}
},
"libraries": {
"Agent4.Api/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"SolidWorks.Interop.sldworks/32.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-lq3QmJwBbVE3K+pN5JFSGn1Bj7J1vUyTr4TtT23UAOtd8MXLElZROm9Iee2N8SP8AXsLTpXdBXGs7xYeJT53qw==",
"path": "solidworks.interop.sldworks/32.1.0",
"hashPath": "solidworks.interop.sldworks.32.1.0.nupkg.sha512"
},
"SolidWorks.Interop.swconst/32.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-mOLeWDKf0hX7iSNmdc22FmwoCaqH3KuNhODNGdWuT36KB/maGzQdfU+r9YS97n3mMIdWN3qaLBQ4eJG8z77rMw==",
"path": "solidworks.interop.swconst/32.1.0",
"hashPath": "solidworks.interop.swconst.32.1.0.nupkg.sha512"
}
}
}
@@ -0,0 +1,20 @@
{
"runtimeOptions": {
"tfm": "net10.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "10.0.0"
},
{
"name": "Microsoft.AspNetCore.App",
"version": "10.0.0"
}
],
"configProperties": {
"System.GC.Server": true,
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
@@ -0,0 +1,11 @@
{
"AI": {
"ApiKey": "",
"Provider": "dashscope",
"Model": "qwen-vl-max",
"TextModel": "qwen-plus",
"BaseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"ApiMode": "chat_completions",
"MaxImages": 6
}
}
@@ -0,0 +1,11 @@
{
"AI": {
"ApiKey": "sk-fd7a184d854143528ad16ba12c0ea9bd",
"Provider": "dashscope",
"Model": "qwen3.7-plus",
"TextModel": "qwen3.7-plus",
"BaseUrl": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"ApiMode": "chat_completions",
"MaxImages": 12
}
}
@@ -0,0 +1,498 @@
{
"format": 1,
"restore": {
"D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\Agent4.Api.csproj": {}
},
"projects": {
"D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\Agent4.Api.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\Agent4.Api.csproj",
"projectName": "Agent4.Api",
"projectPath": "D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\Agent4.Api.csproj",
"packagesPath": "C:\\Users\\86182\\.nuget\\packages\\",
"outputPath": "D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\86182\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net10.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"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": {
"SolidWorks.Interop.sldworks": {
"target": "Package",
"version": "[32.1.0, )"
},
"SolidWorks.Interop.swconst": {
"target": "Package",
"version": "[32.1.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.300/PortableRuntimeIdentifierGraph.json",
"packagesToPrune": {
"Microsoft.AspNetCore": "(,10.0.32767]",
"Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
"Microsoft.AspNetCore.App": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
"Microsoft.AspNetCore.Components": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
"Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Identity": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
"Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
"Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
"Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
"Microsoft.AspNetCore.Session": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
"Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
"Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
"Microsoft.CSharp": "(,4.7.32767]",
"Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
"Microsoft.Extensions.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Features": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
"Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
"Microsoft.Extensions.Hosting": "(,10.0.32767]",
"Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Http": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
"Microsoft.Extensions.Localization": "(,10.0.32767]",
"Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
"Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
"Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
"Microsoft.Extensions.Options": "(,10.0.32767]",
"Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
"Microsoft.Extensions.Primitives": "(,10.0.32767]",
"Microsoft.Extensions.Validation": "(,10.0.32767]",
"Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
"Microsoft.JSInterop": "(,10.0.32767]",
"Microsoft.Net.Http.Headers": "(,10.0.32767]",
"Microsoft.VisualBasic": "(,10.4.32767]",
"Microsoft.Win32.Primitives": "(,4.3.32767]",
"Microsoft.Win32.Registry": "(,5.0.32767]",
"runtime.any.System.Collections": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.any.System.Globalization": "(,4.3.32767]",
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.any.System.IO": "(,4.3.32767]",
"runtime.any.System.Reflection": "(,4.3.32767]",
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.any.System.Runtime": "(,4.3.32767]",
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
"runtime.aot.System.Collections": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.aot.System.Globalization": "(,4.3.32767]",
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.aot.System.IO": "(,4.3.32767]",
"runtime.aot.System.Reflection": "(,4.3.32767]",
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.aot.System.Runtime": "(,4.3.32767]",
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.unix.System.Console": "(,4.3.32767]",
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.win.System.Console": "(,4.3.32767]",
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
"System.AppContext": "(,4.3.32767]",
"System.Buffers": "(,5.0.32767]",
"System.Collections": "(,4.3.32767]",
"System.Collections.Concurrent": "(,4.3.32767]",
"System.Collections.Immutable": "(,10.0.32767]",
"System.Collections.NonGeneric": "(,4.3.32767]",
"System.Collections.Specialized": "(,4.3.32767]",
"System.ComponentModel": "(,4.3.32767]",
"System.ComponentModel.Annotations": "(,4.3.32767]",
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
"System.ComponentModel.Primitives": "(,4.3.32767]",
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
"System.Console": "(,4.3.32767]",
"System.Data.Common": "(,4.3.32767]",
"System.Data.DataSetExtensions": "(,4.4.32767]",
"System.Diagnostics.Contracts": "(,4.3.32767]",
"System.Diagnostics.Debug": "(,4.3.32767]",
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
"System.Diagnostics.EventLog": "(,10.0.32767]",
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
"System.Diagnostics.Process": "(,4.3.32767]",
"System.Diagnostics.StackTrace": "(,4.3.32767]",
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
"System.Diagnostics.Tools": "(,4.3.32767]",
"System.Diagnostics.TraceSource": "(,4.3.32767]",
"System.Diagnostics.Tracing": "(,4.3.32767]",
"System.Drawing.Primitives": "(,4.3.32767]",
"System.Dynamic.Runtime": "(,4.3.32767]",
"System.Formats.Asn1": "(,10.0.32767]",
"System.Formats.Cbor": "(,10.0.32767]",
"System.Formats.Tar": "(,10.0.32767]",
"System.Globalization": "(,4.3.32767]",
"System.Globalization.Calendars": "(,4.3.32767]",
"System.Globalization.Extensions": "(,4.3.32767]",
"System.IO": "(,4.3.32767]",
"System.IO.Compression": "(,4.3.32767]",
"System.IO.Compression.ZipFile": "(,4.3.32767]",
"System.IO.FileSystem": "(,4.3.32767]",
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
"System.IO.IsolatedStorage": "(,4.3.32767]",
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
"System.IO.Pipelines": "(,10.0.32767]",
"System.IO.Pipes": "(,4.3.32767]",
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
"System.Linq": "(,4.3.32767]",
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
"System.Linq.Expressions": "(,4.3.32767]",
"System.Linq.Parallel": "(,4.3.32767]",
"System.Linq.Queryable": "(,4.3.32767]",
"System.Memory": "(,5.0.32767]",
"System.Net.Http": "(,4.3.32767]",
"System.Net.Http.Json": "(,10.0.32767]",
"System.Net.NameResolution": "(,4.3.32767]",
"System.Net.NetworkInformation": "(,4.3.32767]",
"System.Net.Ping": "(,4.3.32767]",
"System.Net.Primitives": "(,4.3.32767]",
"System.Net.Requests": "(,4.3.32767]",
"System.Net.Security": "(,4.3.32767]",
"System.Net.ServerSentEvents": "(,10.0.32767]",
"System.Net.Sockets": "(,4.3.32767]",
"System.Net.WebHeaderCollection": "(,4.3.32767]",
"System.Net.WebSockets": "(,4.3.32767]",
"System.Net.WebSockets.Client": "(,4.3.32767]",
"System.Numerics.Vectors": "(,5.0.32767]",
"System.ObjectModel": "(,4.3.32767]",
"System.Private.DataContractSerialization": "(,4.3.32767]",
"System.Private.Uri": "(,4.3.32767]",
"System.Reflection": "(,4.3.32767]",
"System.Reflection.DispatchProxy": "(,6.0.32767]",
"System.Reflection.Emit": "(,4.7.32767]",
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
"System.Reflection.Extensions": "(,4.3.32767]",
"System.Reflection.Metadata": "(,10.0.32767]",
"System.Reflection.Primitives": "(,4.3.32767]",
"System.Reflection.TypeExtensions": "(,4.3.32767]",
"System.Resources.Reader": "(,4.3.32767]",
"System.Resources.ResourceManager": "(,4.3.32767]",
"System.Resources.Writer": "(,4.3.32767]",
"System.Runtime": "(,4.3.32767]",
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
"System.Runtime.Extensions": "(,4.3.32767]",
"System.Runtime.Handles": "(,4.3.32767]",
"System.Runtime.InteropServices": "(,4.3.32767]",
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
"System.Runtime.Loader": "(,4.3.32767]",
"System.Runtime.Numerics": "(,4.3.32767]",
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
"System.Runtime.Serialization.Json": "(,4.3.32767]",
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
"System.Security.AccessControl": "(,6.0.32767]",
"System.Security.Claims": "(,4.3.32767]",
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
"System.Security.Cryptography.Cng": "(,5.0.32767]",
"System.Security.Cryptography.Csp": "(,4.3.32767]",
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
"System.Security.Cryptography.Xml": "(,10.0.32767]",
"System.Security.Principal": "(,4.3.32767]",
"System.Security.Principal.Windows": "(,5.0.32767]",
"System.Security.SecureString": "(,4.3.32767]",
"System.Text.Encoding": "(,4.3.32767]",
"System.Text.Encoding.CodePages": "(,10.0.32767]",
"System.Text.Encoding.Extensions": "(,4.3.32767]",
"System.Text.Encodings.Web": "(,10.0.32767]",
"System.Text.Json": "(,10.0.32767]",
"System.Text.RegularExpressions": "(,4.3.32767]",
"System.Threading": "(,4.3.32767]",
"System.Threading.AccessControl": "(,10.0.32767]",
"System.Threading.Channels": "(,10.0.32767]",
"System.Threading.Overlapped": "(,4.3.32767]",
"System.Threading.RateLimiting": "(,10.0.32767]",
"System.Threading.Tasks": "(,4.3.32767]",
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
"System.Threading.Thread": "(,4.3.32767]",
"System.Threading.ThreadPool": "(,4.3.32767]",
"System.Threading.Timer": "(,4.3.32767]",
"System.ValueTuple": "(,4.5.32767]",
"System.Xml.ReaderWriter": "(,4.3.32767]",
"System.Xml.XDocument": "(,4.3.32767]",
"System.Xml.XmlDocument": "(,4.3.32767]",
"System.Xml.XmlSerializer": "(,4.3.32767]",
"System.Xml.XPath": "(,4.3.32767]",
"System.Xml.XPath.XDocument": "(,5.0.32767]"
}
}
}
}
}
}
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\86182\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\86182\.nuget\packages\" />
</ItemGroup>
</Project>
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Agent4.Api")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1bdf41f4900b623dd9948b3fc71ac3bb71e8e8e4")]
[assembly: System.Reflection.AssemblyProductAttribute("Agent4.Api")]
[assembly: System.Reflection.AssemblyTitleAttribute("Agent4.Api")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
3fb17ecbf7fdb42ce66e0157d2f8d5751ea27ee2792fee295a781639e2fd4401
@@ -0,0 +1,24 @@
is_global = true
build_property.TargetFramework = net10.0
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v10.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property.EntryPointFilePath =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Agent4.Api
build_property.RootNamespace = Agent4.Api
build_property.ProjectDir = D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 10.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = D:\CSharpProjects\agent4\backend-csharp\Agent4.Api
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,17 @@
// <auto-generated/>
global using Microsoft.AspNetCore.Builder;
global using Microsoft.AspNetCore.Hosting;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Routing;
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Hosting;
global using Microsoft.Extensions.Logging;
global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Linq;
global using System.Net.Http;
global using System.Net.Http.Json;
global using System.Threading;
global using System.Threading.Tasks;
@@ -0,0 +1 @@
4d436aa223b7cbe50921dbe3042092c7117705ba46a597e9d0d65bd2e401a622
@@ -0,0 +1,47 @@
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\Agent4.Api.exe
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\Agent4.Api.deps.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\Agent4.Api.pdb
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\SolidWorks.Interop.sldworks.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\SolidWorks.Interop.swconst.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.csproj.AssemblyReference.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\rpswa.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.GeneratedMSBuildEditorConfig.editorconfig
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.AssemblyInfoInputs.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.AssemblyInfo.cs
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.csproj.CoreCompileInputs.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.MvcApplicationPartsAssemblyInfo.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\rjimswa.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\rjsmrazor.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\rjsmcshtml.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\scopedcss\bundle\Agent4.Api.styles.css
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\staticwebassets.build.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\staticwebassets.build.json.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\staticwebassets.development.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\staticwebassets.build.endpoints.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\swae.build.ex.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.csproj.Up2Date
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\refint\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.pdb
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\Agent4.Api.genruntimeconfig.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Debug\net10.0\ref\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\appsettings.Local.example.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Debug\net10.0\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\buildcheck\Agent4.Api\Agent4.Api.pdb
@@ -0,0 +1 @@
348ea03e2db8528b10070fa32c8e86dab4216f92e10f9784e6ff31736399c702
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"b4GkLrXpVM0x7LOREK3U8rcm2ougfSKAwCc3LPJ50bY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Xxf\u002BYo2UmukVlRz\u002BAJmXzpF8/rvq05OoM1SJHCKaU7Q=","5C/QFLYpkzwQzpBqQNmJPuxk22kA9ElfWJvbMZ8j\u002BqY=","c2jWLu4ie1HKcEBBh1c5AssTi0gIOMUrp2YmnaB5Ebw="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"9a89hgvTU08QJyM0fFPZqYtH5X//OhJWHjak0d5Q6WE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Xxf\u002BYo2UmukVlRz\u002BAJmXzpF8/rvq05OoM1SJHCKaU7Q=","5C/QFLYpkzwQzpBqQNmJPuxk22kA9ElfWJvbMZ8j\u002BqY=","c2jWLu4ie1HKcEBBh1c5AssTi0gIOMUrp2YmnaB5Ebw="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"tFawaZSmPrg8nxjqzMviEtXmvk2mbCJ2G5M41Sr9Y+o=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Xxf\u002BYo2UmukVlRz\u002BAJmXzpF8/rvq05OoM1SJHCKaU7Q=","5C/QFLYpkzwQzpBqQNmJPuxk22kA9ElfWJvbMZ8j\u002BqY="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
@@ -0,0 +1 @@
{"Version":1,"Hash":"kzgtcwp4MRfFSw4zVvea8WHptTu380qsSeBmT6EbnZ0=","Source":"Agent4.Api","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
@@ -0,0 +1 @@
kzgtcwp4MRfFSw4zVvea8WHptTu380qsSeBmT6EbnZ0=
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
@@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Agent4.Api")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1bdf41f4900b623dd9948b3fc71ac3bb71e8e8e4")]
[assembly: System.Reflection.AssemblyProductAttribute("Agent4.Api")]
[assembly: System.Reflection.AssemblyTitleAttribute("Agent4.Api")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
@@ -0,0 +1 @@
c42b5669928b5a88bf680132e2d9320123a9d231e2f6a87579446040cf33f5b8
@@ -0,0 +1,24 @@
is_global = true
build_property.TargetFramework = net10.0
build_property.TargetFrameworkIdentifier = .NETCoreApp
build_property.TargetFrameworkVersion = v10.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property.EntryPointFilePath =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Agent4.Api
build_property.RootNamespace = Agent4.Api
build_property.ProjectDir = D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 10.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = D:\CSharpProjects\agent4\backend-csharp\Agent4.Api
build_property._RazorSourceGeneratorDebug =
build_property.EffectiveAnalysisLevelStyle = 10.0
build_property.EnableCodeStyleSeverity =
@@ -0,0 +1,17 @@
// <auto-generated/>
global using Microsoft.AspNetCore.Builder;
global using Microsoft.AspNetCore.Hosting;
global using Microsoft.AspNetCore.Http;
global using Microsoft.AspNetCore.Routing;
global using Microsoft.Extensions.Configuration;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Hosting;
global using Microsoft.Extensions.Logging;
global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Linq;
global using System.Net.Http;
global using System.Net.Http.Json;
global using System.Threading;
global using System.Threading.Tasks;
@@ -0,0 +1 @@
612c7fc4af07d52d05854b6335839641602e3b5541ddef6d64ee3fb93f2f34da
@@ -0,0 +1,214 @@
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\Agent4.Api.exe
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\Agent4.Api.deps.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\Agent4.Api.pdb
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\SolidWorks.Interop.sldworks.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\SolidWorks.Interop.swconst.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.csproj.AssemblyReference.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\rpswa.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.GeneratedMSBuildEditorConfig.editorconfig
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.AssemblyInfoInputs.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.AssemblyInfo.cs
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.csproj.CoreCompileInputs.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.MvcApplicationPartsAssemblyInfo.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\rjimswa.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\rjsmrazor.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\rjsmcshtml.dswa.cache.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\scopedcss\bundle\Agent4.Api.styles.css
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\staticwebassets.build.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\staticwebassets.build.json.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\staticwebassets.development.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\staticwebassets.build.endpoints.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\swae.build.ex.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.csproj.Up2Date
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\refint\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.pdb
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\Agent4.Api.genruntimeconfig.cache
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\obj\Release\net10.0\ref\Agent4.Api.dll
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\appsettings.Local.example.json
D:\CSharpProjects\agent4\backend-csharp\Agent4.Api\bin\Release\net10.0\appsettings.Local.json
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\appsettings.Local.example.json
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\appsettings.Local.json
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\Agent4.Api.exe
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\Agent4.Api.deps.json
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\Agent4.Api.dll
D:\CSharpProjects\agent4\runtime\buildcheck\Agent4.Api\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\Agent4.Api-build\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\build-check\Agent4.Api\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-rules\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-rules\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-missing-rules\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-line-geometry-rules\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ai-split\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-thread-pair-tighten\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-format-ui\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-part-format\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-cn-format\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-view\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-axis-rule\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-centerline-rules\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-highlight-handles\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-view-grouped-images\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-circle-centerline-strict\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\agent4-api-build-check-missing-box\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\Agent4.Api.exe
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\build-agent4-api-contract-fix\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\tolerance-build-output\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\tolerance-build-output\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\tolerance-build-output\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\tolerance-build-output\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\tolerance-build-output\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\tolerance-build-output\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\tolerance-build-output\Agent4.Api.pdb
D:\CSharpProjects\agent4\.tmp\flow-build-output\appsettings.Local.example.json
D:\CSharpProjects\agent4\.tmp\flow-build-output\appsettings.Local.json
D:\CSharpProjects\agent4\.tmp\flow-build-output\Agent4.Api.staticwebassets.endpoints.json
D:\CSharpProjects\agent4\.tmp\flow-build-output\Agent4.Api.deps.json
D:\CSharpProjects\agent4\.tmp\flow-build-output\Agent4.Api.runtimeconfig.json
D:\CSharpProjects\agent4\.tmp\flow-build-output\Agent4.Api.dll
D:\CSharpProjects\agent4\.tmp\flow-build-output\Agent4.Api.pdb
@@ -0,0 +1 @@
179ab7195a183da61e490792b3be94e8d68936b9885b21cb8d8ee5afc2d0453a
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"b4GkLrXpVM0x7LOREK3U8rcm2ougfSKAwCc3LPJ50bY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Xxf\u002BYo2UmukVlRz\u002BAJmXzpF8/rvq05OoM1SJHCKaU7Q=","5C/QFLYpkzwQzpBqQNmJPuxk22kA9ElfWJvbMZ8j\u002BqY=","dq3NOTRjEh8z7bqL9mYjhK2iRCPH4kcNr6ECKsBIJ6w="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"9a89hgvTU08QJyM0fFPZqYtH5X//OhJWHjak0d5Q6WE=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Xxf\u002BYo2UmukVlRz\u002BAJmXzpF8/rvq05OoM1SJHCKaU7Q=","5C/QFLYpkzwQzpBqQNmJPuxk22kA9ElfWJvbMZ8j\u002BqY=","dq3NOTRjEh8z7bqL9mYjhK2iRCPH4kcNr6ECKsBIJ6w="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"GlobalPropertiesHash":"tFawaZSmPrg8nxjqzMviEtXmvk2mbCJ2G5M41Sr9Y+o=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Xxf\u002BYo2UmukVlRz\u002BAJmXzpF8/rvq05OoM1SJHCKaU7Q=","5C/QFLYpkzwQzpBqQNmJPuxk22kA9ElfWJvbMZ8j\u002BqY="],"CachedAssets":{},"CachedCopyCandidates":{}}
@@ -0,0 +1 @@
{"Version":1,"ManifestType":"Build","Endpoints":[]}
@@ -0,0 +1 @@
{"Version":1,"Hash":"kzgtcwp4MRfFSw4zVvea8WHptTu380qsSeBmT6EbnZ0=","Source":"Agent4.Api","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]}
@@ -0,0 +1 @@
kzgtcwp4MRfFSw4zVvea8WHptTu380qsSeBmT6EbnZ0=
@@ -0,0 +1,550 @@
{
"version": 4,
"targets": {
"net10.0": {
"SolidWorks.Interop.sldworks/32.1.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/SolidWorks.Interop.sldworks.dll": {}
},
"runtime": {
"lib/netstandard2.0/SolidWorks.Interop.sldworks.dll": {}
}
},
"SolidWorks.Interop.swconst/32.1.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/SolidWorks.Interop.swconst.dll": {}
},
"runtime": {
"lib/netstandard2.0/SolidWorks.Interop.swconst.dll": {}
}
}
}
},
"libraries": {
"SolidWorks.Interop.sldworks/32.1.0": {
"sha512": "lq3QmJwBbVE3K+pN5JFSGn1Bj7J1vUyTr4TtT23UAOtd8MXLElZROm9Iee2N8SP8AXsLTpXdBXGs7xYeJT53qw==",
"type": "package",
"path": "solidworks.interop.sldworks/32.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/SolidWorks.Interop.sldworks.dll",
"solidworks.interop.sldworks.32.1.0.nupkg.sha512",
"solidworks.interop.sldworks.nuspec"
]
},
"SolidWorks.Interop.swconst/32.1.0": {
"sha512": "mOLeWDKf0hX7iSNmdc22FmwoCaqH3KuNhODNGdWuT36KB/maGzQdfU+r9YS97n3mMIdWN3qaLBQ4eJG8z77rMw==",
"type": "package",
"path": "solidworks.interop.swconst/32.1.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/SolidWorks.Interop.swconst.dll",
"solidworks.interop.swconst.32.1.0.nupkg.sha512",
"solidworks.interop.swconst.nuspec"
]
}
},
"projectFileDependencyGroups": {
"net10.0": [
"SolidWorks.Interop.sldworks >= 32.1.0",
"SolidWorks.Interop.swconst >= 32.1.0"
]
},
"packageFolders": {
"C:\\Users\\86182\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\Agent4.Api.csproj",
"projectName": "Agent4.Api",
"projectPath": "D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\Agent4.Api.csproj",
"packagesPath": "C:\\Users\\86182\\.nuget\\packages\\",
"outputPath": "D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\86182\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net10.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"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": {
"SolidWorks.Interop.sldworks": {
"target": "Package",
"version": "[32.1.0, )"
},
"SolidWorks.Interop.swconst": {
"target": "Package",
"version": "[32.1.0, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.AspNetCore.App": {
"privateAssets": "none"
},
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.300/PortableRuntimeIdentifierGraph.json",
"packagesToPrune": {
"Microsoft.AspNetCore": "(,10.0.32767]",
"Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]",
"Microsoft.AspNetCore.App": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]",
"Microsoft.AspNetCore.Components": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Server": "(,10.0.32767]",
"Microsoft.AspNetCore.Components.Web": "(,10.0.32767]",
"Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]",
"Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Features": "(,10.0.32767]",
"Microsoft.AspNetCore.Http.Results": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]",
"Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]",
"Microsoft.AspNetCore.Identity": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Metadata": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]",
"Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]",
"Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor": "(,10.0.32767]",
"Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]",
"Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]",
"Microsoft.AspNetCore.Rewrite": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing": "(,10.0.32767]",
"Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]",
"Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]",
"Microsoft.AspNetCore.Session": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]",
"Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]",
"Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]",
"Microsoft.AspNetCore.WebSockets": "(,10.0.32767]",
"Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]",
"Microsoft.CSharp": "(,4.7.32767]",
"Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Caching.Memory": "(,10.0.32767]",
"Microsoft.Extensions.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Json": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]",
"Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection": "(,10.0.32767]",
"Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]",
"Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Features": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]",
"Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]",
"Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]",
"Microsoft.Extensions.Hosting": "(,10.0.32767]",
"Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Http": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Core": "(,10.0.32767]",
"Microsoft.Extensions.Identity.Stores": "(,10.0.32767]",
"Microsoft.Extensions.Localization": "(,10.0.32767]",
"Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Console": "(,10.0.32767]",
"Microsoft.Extensions.Logging.Debug": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]",
"Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]",
"Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]",
"Microsoft.Extensions.ObjectPool": "(,10.0.32767]",
"Microsoft.Extensions.Options": "(,10.0.32767]",
"Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]",
"Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]",
"Microsoft.Extensions.Primitives": "(,10.0.32767]",
"Microsoft.Extensions.Validation": "(,10.0.32767]",
"Microsoft.Extensions.WebEncoders": "(,10.0.32767]",
"Microsoft.JSInterop": "(,10.0.32767]",
"Microsoft.Net.Http.Headers": "(,10.0.32767]",
"Microsoft.VisualBasic": "(,10.4.32767]",
"Microsoft.Win32.Primitives": "(,4.3.32767]",
"Microsoft.Win32.Registry": "(,5.0.32767]",
"runtime.any.System.Collections": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.any.System.Globalization": "(,4.3.32767]",
"runtime.any.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.any.System.IO": "(,4.3.32767]",
"runtime.any.System.Reflection": "(,4.3.32767]",
"runtime.any.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.any.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.any.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.any.System.Runtime": "(,4.3.32767]",
"runtime.any.System.Runtime.Handles": "(,4.3.32767]",
"runtime.any.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.any.System.Text.Encoding": "(,4.3.32767]",
"runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.any.System.Threading.Tasks": "(,4.3.32767]",
"runtime.any.System.Threading.Timer": "(,4.3.32767]",
"runtime.aot.System.Collections": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]",
"runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]",
"runtime.aot.System.Globalization": "(,4.3.32767]",
"runtime.aot.System.Globalization.Calendars": "(,4.3.32767]",
"runtime.aot.System.IO": "(,4.3.32767]",
"runtime.aot.System.Reflection": "(,4.3.32767]",
"runtime.aot.System.Reflection.Extensions": "(,4.3.32767]",
"runtime.aot.System.Reflection.Primitives": "(,4.3.32767]",
"runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]",
"runtime.aot.System.Runtime": "(,4.3.32767]",
"runtime.aot.System.Runtime.Handles": "(,4.3.32767]",
"runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding": "(,4.3.32767]",
"runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]",
"runtime.aot.System.Threading.Tasks": "(,4.3.32767]",
"runtime.aot.System.Threading.Timer": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]",
"runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]",
"runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]",
"runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]",
"runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.unix.System.Console": "(,4.3.32767]",
"runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.unix.System.IO.FileSystem": "(,4.3.32767]",
"runtime.unix.System.Net.Primitives": "(,4.3.32767]",
"runtime.unix.System.Net.Sockets": "(,4.3.32767]",
"runtime.unix.System.Private.Uri": "(,4.3.32767]",
"runtime.unix.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]",
"runtime.win.System.Console": "(,4.3.32767]",
"runtime.win.System.Diagnostics.Debug": "(,4.3.32767]",
"runtime.win.System.IO.FileSystem": "(,4.3.32767]",
"runtime.win.System.Net.Primitives": "(,4.3.32767]",
"runtime.win.System.Net.Sockets": "(,4.3.32767]",
"runtime.win.System.Runtime.Extensions": "(,4.3.32767]",
"runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]",
"runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]",
"runtime.win7.System.Private.Uri": "(,4.3.32767]",
"runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]",
"System.AppContext": "(,4.3.32767]",
"System.Buffers": "(,5.0.32767]",
"System.Collections": "(,4.3.32767]",
"System.Collections.Concurrent": "(,4.3.32767]",
"System.Collections.Immutable": "(,10.0.32767]",
"System.Collections.NonGeneric": "(,4.3.32767]",
"System.Collections.Specialized": "(,4.3.32767]",
"System.ComponentModel": "(,4.3.32767]",
"System.ComponentModel.Annotations": "(,4.3.32767]",
"System.ComponentModel.EventBasedAsync": "(,4.3.32767]",
"System.ComponentModel.Primitives": "(,4.3.32767]",
"System.ComponentModel.TypeConverter": "(,4.3.32767]",
"System.Console": "(,4.3.32767]",
"System.Data.Common": "(,4.3.32767]",
"System.Data.DataSetExtensions": "(,4.4.32767]",
"System.Diagnostics.Contracts": "(,4.3.32767]",
"System.Diagnostics.Debug": "(,4.3.32767]",
"System.Diagnostics.DiagnosticSource": "(,10.0.32767]",
"System.Diagnostics.EventLog": "(,10.0.32767]",
"System.Diagnostics.FileVersionInfo": "(,4.3.32767]",
"System.Diagnostics.Process": "(,4.3.32767]",
"System.Diagnostics.StackTrace": "(,4.3.32767]",
"System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]",
"System.Diagnostics.Tools": "(,4.3.32767]",
"System.Diagnostics.TraceSource": "(,4.3.32767]",
"System.Diagnostics.Tracing": "(,4.3.32767]",
"System.Drawing.Primitives": "(,4.3.32767]",
"System.Dynamic.Runtime": "(,4.3.32767]",
"System.Formats.Asn1": "(,10.0.32767]",
"System.Formats.Cbor": "(,10.0.32767]",
"System.Formats.Tar": "(,10.0.32767]",
"System.Globalization": "(,4.3.32767]",
"System.Globalization.Calendars": "(,4.3.32767]",
"System.Globalization.Extensions": "(,4.3.32767]",
"System.IO": "(,4.3.32767]",
"System.IO.Compression": "(,4.3.32767]",
"System.IO.Compression.ZipFile": "(,4.3.32767]",
"System.IO.FileSystem": "(,4.3.32767]",
"System.IO.FileSystem.AccessControl": "(,4.4.32767]",
"System.IO.FileSystem.DriveInfo": "(,4.3.32767]",
"System.IO.FileSystem.Primitives": "(,4.3.32767]",
"System.IO.FileSystem.Watcher": "(,4.3.32767]",
"System.IO.IsolatedStorage": "(,4.3.32767]",
"System.IO.MemoryMappedFiles": "(,4.3.32767]",
"System.IO.Pipelines": "(,10.0.32767]",
"System.IO.Pipes": "(,4.3.32767]",
"System.IO.Pipes.AccessControl": "(,5.0.32767]",
"System.IO.UnmanagedMemoryStream": "(,4.3.32767]",
"System.Linq": "(,4.3.32767]",
"System.Linq.AsyncEnumerable": "(,10.0.32767]",
"System.Linq.Expressions": "(,4.3.32767]",
"System.Linq.Parallel": "(,4.3.32767]",
"System.Linq.Queryable": "(,4.3.32767]",
"System.Memory": "(,5.0.32767]",
"System.Net.Http": "(,4.3.32767]",
"System.Net.Http.Json": "(,10.0.32767]",
"System.Net.NameResolution": "(,4.3.32767]",
"System.Net.NetworkInformation": "(,4.3.32767]",
"System.Net.Ping": "(,4.3.32767]",
"System.Net.Primitives": "(,4.3.32767]",
"System.Net.Requests": "(,4.3.32767]",
"System.Net.Security": "(,4.3.32767]",
"System.Net.ServerSentEvents": "(,10.0.32767]",
"System.Net.Sockets": "(,4.3.32767]",
"System.Net.WebHeaderCollection": "(,4.3.32767]",
"System.Net.WebSockets": "(,4.3.32767]",
"System.Net.WebSockets.Client": "(,4.3.32767]",
"System.Numerics.Vectors": "(,5.0.32767]",
"System.ObjectModel": "(,4.3.32767]",
"System.Private.DataContractSerialization": "(,4.3.32767]",
"System.Private.Uri": "(,4.3.32767]",
"System.Reflection": "(,4.3.32767]",
"System.Reflection.DispatchProxy": "(,6.0.32767]",
"System.Reflection.Emit": "(,4.7.32767]",
"System.Reflection.Emit.ILGeneration": "(,4.7.32767]",
"System.Reflection.Emit.Lightweight": "(,4.7.32767]",
"System.Reflection.Extensions": "(,4.3.32767]",
"System.Reflection.Metadata": "(,10.0.32767]",
"System.Reflection.Primitives": "(,4.3.32767]",
"System.Reflection.TypeExtensions": "(,4.3.32767]",
"System.Resources.Reader": "(,4.3.32767]",
"System.Resources.ResourceManager": "(,4.3.32767]",
"System.Resources.Writer": "(,4.3.32767]",
"System.Runtime": "(,4.3.32767]",
"System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]",
"System.Runtime.CompilerServices.VisualC": "(,4.3.32767]",
"System.Runtime.Extensions": "(,4.3.32767]",
"System.Runtime.Handles": "(,4.3.32767]",
"System.Runtime.InteropServices": "(,4.3.32767]",
"System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]",
"System.Runtime.Loader": "(,4.3.32767]",
"System.Runtime.Numerics": "(,4.3.32767]",
"System.Runtime.Serialization.Formatters": "(,4.3.32767]",
"System.Runtime.Serialization.Json": "(,4.3.32767]",
"System.Runtime.Serialization.Primitives": "(,4.3.32767]",
"System.Runtime.Serialization.Xml": "(,4.3.32767]",
"System.Security.AccessControl": "(,6.0.32767]",
"System.Security.Claims": "(,4.3.32767]",
"System.Security.Cryptography.Algorithms": "(,4.3.32767]",
"System.Security.Cryptography.Cng": "(,5.0.32767]",
"System.Security.Cryptography.Csp": "(,4.3.32767]",
"System.Security.Cryptography.Encoding": "(,4.3.32767]",
"System.Security.Cryptography.OpenSsl": "(,5.0.32767]",
"System.Security.Cryptography.Primitives": "(,4.3.32767]",
"System.Security.Cryptography.X509Certificates": "(,4.3.32767]",
"System.Security.Cryptography.Xml": "(,10.0.32767]",
"System.Security.Principal": "(,4.3.32767]",
"System.Security.Principal.Windows": "(,5.0.32767]",
"System.Security.SecureString": "(,4.3.32767]",
"System.Text.Encoding": "(,4.3.32767]",
"System.Text.Encoding.CodePages": "(,10.0.32767]",
"System.Text.Encoding.Extensions": "(,4.3.32767]",
"System.Text.Encodings.Web": "(,10.0.32767]",
"System.Text.Json": "(,10.0.32767]",
"System.Text.RegularExpressions": "(,4.3.32767]",
"System.Threading": "(,4.3.32767]",
"System.Threading.AccessControl": "(,10.0.32767]",
"System.Threading.Channels": "(,10.0.32767]",
"System.Threading.Overlapped": "(,4.3.32767]",
"System.Threading.RateLimiting": "(,10.0.32767]",
"System.Threading.Tasks": "(,4.3.32767]",
"System.Threading.Tasks.Dataflow": "(,10.0.32767]",
"System.Threading.Tasks.Extensions": "(,5.0.32767]",
"System.Threading.Tasks.Parallel": "(,4.3.32767]",
"System.Threading.Thread": "(,4.3.32767]",
"System.Threading.ThreadPool": "(,4.3.32767]",
"System.Threading.Timer": "(,4.3.32767]",
"System.ValueTuple": "(,4.5.32767]",
"System.Xml.ReaderWriter": "(,4.3.32767]",
"System.Xml.XDocument": "(,4.3.32767]",
"System.Xml.XmlDocument": "(,4.3.32767]",
"System.Xml.XmlSerializer": "(,4.3.32767]",
"System.Xml.XPath": "(,4.3.32767]",
"System.Xml.XPath.XDocument": "(,5.0.32767]"
}
}
}
}
}
@@ -0,0 +1,11 @@
{
"version": 2,
"dgSpecHash": "OwpJmRJF+nE=",
"success": true,
"projectFilePath": "D:\\CSharpProjects\\agent4\\backend-csharp\\Agent4.Api\\Agent4.Api.csproj",
"expectedPackageFiles": [
"C:\\Users\\86182\\.nuget\\packages\\solidworks.interop.sldworks\\32.1.0\\solidworks.interop.sldworks.32.1.0.nupkg.sha512",
"C:\\Users\\86182\\.nuget\\packages\\solidworks.interop.swconst\\32.1.0\\solidworks.interop.swconst.32.1.0.nupkg.sha512"
],
"logs": []
}