first commit
This commit is contained in:
@@ -0,0 +1,109 @@
|
||||
# ModelDiagnosticVerifier Lessons
|
||||
|
||||
This file records diagnosis failures and the rule that prevents repeating them.
|
||||
|
||||
## Failure 2026-06-19: `装配体2.SLDASM` was wrongly diagnosed as problem
|
||||
|
||||
Context:
|
||||
|
||||
- `装配体2.SLDASM` is the textbook `b` pass case for the tight-fit sleeve disassembly rule.
|
||||
- The correct diagnosis is `pass` because the sleeve has an exposed axial push face, matching image example `b`.
|
||||
|
||||
Root cause:
|
||||
|
||||
- `SectionBrepExtractor` produced the important feature in `SketchGraph.Dimensions`, not in `SketchGraph.Relations`.
|
||||
- The verifier consumed section relations but ignored dimension-derived candidates.
|
||||
- Therefore `external_push_access` stayed incomplete and the final decision became `problem`.
|
||||
|
||||
Corrected behavior:
|
||||
|
||||
- `SketchGraph.Dimensions` is now read.
|
||||
- `exposed_sleeve_end_height_candidate` with role `exposed_push_face_candidate` can be promoted to model evidence.
|
||||
- The promoted evidence satisfies the `b_external_push_access` image 2D structure template.
|
||||
|
||||
Promotion rule currently used:
|
||||
|
||||
```text
|
||||
exposed_sleeve_end_height_candidate
|
||||
+ target sketch edge belongs to a sleeve
|
||||
+ height is meaningful
|
||||
=> exposed_axial_push_face
|
||||
=> outside_accessible_force_path
|
||||
=> owned_by(push_face, sleeve_material)
|
||||
=> force_direction_parallel_to_axis(push_face, sleeve_axis)
|
||||
=> can_push_or_strike(outside, push_face)
|
||||
=> adjacent_to_outside(push_face, outside)
|
||||
```
|
||||
|
||||
## Rules To Prevent Repeating This Failure
|
||||
|
||||
### 1. A model-side 2D structure instance is not only relations
|
||||
|
||||
- A model-side 2D structure instance is not only relations.
|
||||
- It must also consume dimensions, roles, anchors, and candidate annotations when they are produced by the extractor.
|
||||
- A candidate can be promoted to pass evidence only through an explicit promotion rule.
|
||||
|
||||
### 2. Candidate is not failure
|
||||
|
||||
Failure pattern:
|
||||
|
||||
- Treating an incomplete pass template as absent too early makes the final rule report `problem`.
|
||||
- In mechanical diagnosis, candidate evidence should remain visible in the result so the missing bridge can be debugged.
|
||||
|
||||
Correct rule:
|
||||
|
||||
- Keep `candidate`, `found`, and `missing` separate.
|
||||
- Only final decision uses `found`; debugging output must preserve candidates and missing relations.
|
||||
|
||||
### 3. Image template relations must map to model evidence names
|
||||
|
||||
Failure pattern:
|
||||
|
||||
- Image template requires `external_push_access`.
|
||||
- Model evidence may expose lower-level facts such as `exposed_sleeve_end_height_candidate`.
|
||||
- If there is no mapping, the verifier appears to "not understand" a correct model.
|
||||
|
||||
Correct rule:
|
||||
|
||||
- Every pass evidence type needs a model-evidence promotion path.
|
||||
- Do not rely only on literal relation name equality.
|
||||
|
||||
### 4. Merge duplicate sources before diagnosis
|
||||
|
||||
Failure pattern:
|
||||
|
||||
- When section evidence and structural evidence are both loaded, the same component or scene can appear twice.
|
||||
- Duplicate scenes make reports noisy and can mask which evidence actually caused a decision.
|
||||
|
||||
Correct rule:
|
||||
|
||||
- Merge components by component id.
|
||||
- Merge scenes by `(sceneType, target, host)`.
|
||||
- Preserve stronger confidence and union of evidence labels.
|
||||
|
||||
### 5. Do not let encoding damage classification
|
||||
|
||||
Failure pattern:
|
||||
|
||||
- Some older code had mojibake Chinese tokens for component classification.
|
||||
- Correct Chinese names such as `套筒` can be missed if only garbled tokens remain.
|
||||
|
||||
Correct rule:
|
||||
|
||||
- Keep component category inference robust:
|
||||
- use normal Chinese terms
|
||||
- use English aliases
|
||||
- prefer metadata from extractors when available
|
||||
- avoid depending on name classification when B-rep evidence already identifies owner/category
|
||||
|
||||
## Development Checklist For Each New Fault Rule
|
||||
|
||||
Before trusting a new rule, check all items below.
|
||||
|
||||
- Image side has a semantic rule and at least one image 2D structure template for every pass/problem example.
|
||||
- Each pass template lists both structure relations and required model evidence.
|
||||
- Every required model evidence item has a documented extraction or promotion path.
|
||||
- The model verifier consumes all extractor layers used by that path: components, contacts, section edges, section relations, dimensions, regions, roles, and annotations.
|
||||
- The report shows `found`, `candidate`, and `missing` for both model evidence and 2D structure relations.
|
||||
- Known positive and known negative examples are tested before generalizing the rule.
|
||||
- A `problem` result is not accepted until the missing evidence chain has been inspected.
|
||||
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,63 @@
|
||||
# ModelDiagnosticVerifier
|
||||
|
||||
Verifies product models against rule packages generated by `RuleTemplateGenerator`.
|
||||
|
||||
## Responsibility
|
||||
|
||||
`ModelDiagnosticVerifier` handles only model-side diagnosis:
|
||||
|
||||
- input: a SolidWorks model path or an existing model evidence JSON
|
||||
- input: a rule package JSON
|
||||
- output: `not_applicable`, `pass`, `problem`, or `needs_review`
|
||||
- it does not interpret teaching images/text
|
||||
- it does not invent new rules
|
||||
|
||||
## Pipeline
|
||||
|
||||
```text
|
||||
SolidWorks model
|
||||
-> 3D B-rep / structural raw evidence
|
||||
-> section 2D structure instance
|
||||
-> scene candidates
|
||||
-> rule applicability
|
||||
-> image 2D structure template matching
|
||||
-> real geometry/contact validation
|
||||
-> final diagnosis
|
||||
```
|
||||
|
||||
Current implementation can consume existing evidence JSON. If a `.SLDASM` or `.SLDPRT` is passed, it tries to run:
|
||||
|
||||
- `tools\model-diagnostics\SectionBrepExtractor`: extracts section sketch graph evidence such as edges, relations, dimensions, regions, and semantic roles.
|
||||
- `tools\model-diagnostics\StructuralFaultProbe`: extracts assembly structure evidence such as components, axial contacts, bearing limits, and fixation information.
|
||||
|
||||
The verifier then normalizes and merges these sources before matching rule templates.
|
||||
|
||||
## Evidence Discipline
|
||||
|
||||
The verifier must not treat "no direct relation matched" as immediate failure. For every pass template it reports:
|
||||
|
||||
- model evidence found and missing
|
||||
- 2D structure relations found and missing
|
||||
- `found`, `candidate`, or `missing` status
|
||||
|
||||
This is important because image templates and model evidence usually do not use identical names. Low-level extractor facts may need explicit promotion before they satisfy a higher-level rule evidence type.
|
||||
|
||||
## Usage
|
||||
|
||||
Verify from an existing evidence JSON:
|
||||
|
||||
```powershell
|
||||
dotnet run --project tools\model-diagnostics\ModelDiagnosticVerifier\ModelDiagnosticVerifier.csproj -c Release -- verify --model runtime\structural_fault_probe\structural_fault_evidence.json --rules runtime\rule_templates\tight_fit_sleeve_requires_disassembly_access.json --out runtime\diagnostics\sleeve_check
|
||||
```
|
||||
|
||||
Verify directly from a SolidWorks assembly:
|
||||
|
||||
```powershell
|
||||
dotnet run --project tools\model-diagnostics\ModelDiagnosticVerifier\ModelDiagnosticVerifier.csproj -c Release -- verify --model "D:\path\assembly.SLDASM" --rules runtime\rule_templates\tight_fit_sleeve_requires_disassembly_access.json --out runtime\diagnostics\sleeve_check
|
||||
```
|
||||
|
||||
Output:
|
||||
|
||||
- `<out>.json`
|
||||
- `<out>.md`
|
||||
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"ModelDiagnosticVerifier/1.0.0": {
|
||||
"runtime": {
|
||||
"ModelDiagnosticVerifier.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"ModelDiagnosticVerifier/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+12
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"ModelDiagnosticVerifier/1.0.0": {
|
||||
"runtime": {
|
||||
"ModelDiagnosticVerifier.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"ModelDiagnosticVerifier/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+13
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
+22
@@ -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("ModelDiagnosticVerifier")]
|
||||
[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("ModelDiagnosticVerifier")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ModelDiagnosticVerifier")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
9c5f559193bc09c5b48120612e733c72e058fc6d243b87449ac62e1a74cf4c77
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property.EntryPointFilePath =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ModelDiagnosticVerifier
|
||||
build_property.ProjectDir = D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
811b62d28828225afd33a6528bb6a4b2996860c26afbf1966d8f0b56248c4988
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.exe
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.deps.json
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.pdb
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.AssemblyInfoInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.AssemblyInfo.cs
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.csproj.CoreCompileInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\refint\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.pdb
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.genruntimeconfig.cache
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Debug\net8.0\ref\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.exe
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.deps.json
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\bin\Debug\net8.0\ModelDiagnosticVerifier.pdb
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.AssemblyInfoInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.AssemblyInfo.cs
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.csproj.CoreCompileInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\refint\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.pdb
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ModelDiagnosticVerifier.genruntimeconfig.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\ModelDiagnosticVerifier\obj\Debug\net8.0\ref\ModelDiagnosticVerifier.dll
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
5bc45e807552542d1527f6d12a937b38bba9750d3dc6588968f488dc394a9a1e
|
||||
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+71
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\ModelDiagnosticVerifier.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\ModelDiagnosticVerifier.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\ModelDiagnosticVerifier.csproj",
|
||||
"projectName": "ModelDiagnosticVerifier",
|
||||
"projectPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\ModelDiagnosticVerifier.csproj",
|
||||
"packagesPath": "C:\\Users\\86182\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\86182\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"framework": "net8.0",
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.300"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"framework": "net8.0",
|
||||
"targetAlias": "net8.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.300/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+15
@@ -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>
|
||||
+2
@@ -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" />
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
+22
@@ -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("ModelDiagnosticVerifier")]
|
||||
[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("ModelDiagnosticVerifier")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ModelDiagnosticVerifier")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
3d0fe07f43282d931410948d50de3fa1826734f8a2f331bca002b4c942bc30cf
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property.EntryPointFilePath =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = ModelDiagnosticVerifier
|
||||
build_property.ProjectDir = D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 8.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
2b1094a6d1fadeab72f09cd1dfcc1454ce8b6080c8211863223dfc4fa8064187
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Release\net8.0\ModelDiagnosticVerifier.exe
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Release\net8.0\ModelDiagnosticVerifier.deps.json
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Release\net8.0\ModelDiagnosticVerifier.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Release\net8.0\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\bin\Release\net8.0\ModelDiagnosticVerifier.pdb
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ModelDiagnosticVerifier.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ModelDiagnosticVerifier.AssemblyInfoInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ModelDiagnosticVerifier.AssemblyInfo.cs
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ModelDiagnosticVerifier.csproj.CoreCompileInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\refint\ModelDiagnosticVerifier.dll
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ModelDiagnosticVerifier.pdb
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ModelDiagnosticVerifier.genruntimeconfig.cache
|
||||
D:\CSharpProjects\agent4\tools\ModelDiagnosticVerifier\obj\Release\net8.0\ref\ModelDiagnosticVerifier.dll
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
7066489aead62151f7cbf5cb5281108afa35936ac7d3d1598fa667d814e6009d
|
||||
BIN
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
@@ -0,0 +1,76 @@
|
||||
{
|
||||
"version": 4,
|
||||
"targets": {
|
||||
"net8.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\86182\\.nuget\\packages\\": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\ModelDiagnosticVerifier.csproj",
|
||||
"projectName": "ModelDiagnosticVerifier",
|
||||
"projectPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\ModelDiagnosticVerifier.csproj",
|
||||
"packagesPath": "C:\\Users\\86182\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\86182\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"framework": "net8.0",
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
},
|
||||
"SdkAnalysisLevel": "10.0.300"
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"framework": "net8.0",
|
||||
"targetAlias": "net8.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.300/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "sFXCtN4pD9k=",
|
||||
"success": true,
|
||||
"projectFilePath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\ModelDiagnosticVerifier\\ModelDiagnosticVerifier.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user