first commit
This commit is contained in:
@@ -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>
|
||||
@@ -0,0 +1,93 @@
|
||||
# BrepFaultProbe Lessons
|
||||
|
||||
This file records the failure patterns that have already appeared in this project.
|
||||
|
||||
## 1. Do not require explicit labels when the geometry can be inferred
|
||||
|
||||
The sleeve-removal `b` case failed at first because the judge only accepted edges explicitly tagged as `push_face`.
|
||||
|
||||
Correct rule:
|
||||
|
||||
- accept explicit labels when present
|
||||
- also infer the same feature from B-rep structure
|
||||
- treat explicit labels as strong evidence, not the only evidence
|
||||
|
||||
## 2. Keep candidates separate from decisions
|
||||
|
||||
`*_candidate` is evidence, not a final answer.
|
||||
|
||||
If the pipeline mixes candidate evidence with final template matching, the judge will drift into false negatives or false positives.
|
||||
|
||||
## 3. Outer frame is not a functional feature
|
||||
|
||||
For 2D sketch graphs, the outer frame can be a valid drawable loop, but it does not by itself mean the image contains a meaningful machine-design feature.
|
||||
|
||||
Always separate:
|
||||
|
||||
- background outer frame
|
||||
- actual functional loops
|
||||
- inferred feature loops such as holes, slots, bosses, and ports
|
||||
|
||||
## 4. Image and model must share a canonical middle form
|
||||
|
||||
Raw raster edges and true section edges are not directly comparable.
|
||||
|
||||
The stable comparison point is:
|
||||
|
||||
- vertices
|
||||
- drawable edges
|
||||
- paths
|
||||
- loops
|
||||
- regions
|
||||
- relations
|
||||
- dimensions
|
||||
|
||||
## 5. Hatch lines are annotations
|
||||
|
||||
Section hatches must be excluded from drawable contour edges.
|
||||
|
||||
If they are treated as normal edges, the sketch graph becomes noisy and the loop/path matcher starts inventing structure.
|
||||
|
||||
## 6. One sample is not enough
|
||||
|
||||
A rule that works on one positive case may still fail on:
|
||||
|
||||
- unrelated cases
|
||||
- weak candidates
|
||||
- cases with no explicit role tags
|
||||
- cases whose functional feature is expressed by a different geometric cue
|
||||
|
||||
Always verify at least:
|
||||
|
||||
- a positive case
|
||||
- a negative case
|
||||
- an unrelated case
|
||||
- a weak/noisy case
|
||||
|
||||
## 7. Current open risk
|
||||
|
||||
`b` has been upgraded to infer push-face evidence from B-rep topology.
|
||||
|
||||
`c` and `d` still depend more on explicit region semantics, so they can repeat the same failure mode if the upstream extractor does not label them clearly enough.
|
||||
|
||||
## 8. Textbook image rules must name the exact measurable geometry
|
||||
|
||||
Failure pattern:
|
||||
|
||||
- A textbook rule says a "diameter" should be larger, but the drawing contains many diameters.
|
||||
- If the extracted knowledge only says `boss_diameter > cover_diameter`, the B-rep pipeline may measure the wrong diameter, such as an inner hole, register-fit diameter, bearing-seat bore, bolt hole, or bolt-circle diameter.
|
||||
|
||||
Correct rule:
|
||||
|
||||
- The knowledge chunk must explicitly define the compared geometry by position and boundary role.
|
||||
- Use terms such as `mounting-side outer contour`, `maximum outer diameter`, `cast boss outer boundary`, and `minimum boundary margin`.
|
||||
- Also list excluded diameters when they are plausible distractors.
|
||||
|
||||
For Chapter 18.2.1, the rule is:
|
||||
|
||||
- compare the end cover mounting-side flange outer boundary or maximum outer diameter
|
||||
- against the cast housing boss/recess/allowance-region outer boundary or maximum outer diameter
|
||||
- require the housing cast boss boundary to contain the cover flange boundary with casting-position-error allowance
|
||||
- do not compare the cover inner hole, register-fit diameter, bearing-seat bore, bolt holes, or bolt-circle diameter
|
||||
|
||||
Every image-to-rule extraction should preserve this level of specificity so model-side B-rep facts can be selected without ambiguity.
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,56 @@
|
||||
# BrepFaultProbe
|
||||
|
||||
Formal entry point for B-rep based structural fault diagnosis experiments.
|
||||
|
||||
This tool collects the current B-rep fault-checking workflow behind one stable command surface:
|
||||
|
||||
- `model`: extract a true SolidWorks section B-rep and canonical 2D sketch graph.
|
||||
- `bridge` / `interpret`: convert a SolidWorks model into a B-rep semantic bridge package, render SVG, patch map, local feature candidates, self-evolution audit, and optional AI interpretation.
|
||||
- `diagnose-ch18`: run the formal Chapter 18 trial workflow for verified chunks 18.2.1 and 18.2.4. It first builds a semantic bridge, matches the mechanical semantic graph against the two chunks, and if a possible match is blocked by missing B-rep-extractable facts, it runs targeted deep extraction before writing the final match.
|
||||
|
||||
The formal model-side section extraction implementation is `tools\model-diagnostics\SectionBrepExtractor`. Old temporary wrappers that referenced `tmp` have been removed from this entry point.
|
||||
|
||||
Examples:
|
||||
|
||||
```powershell
|
||||
dotnet run --project tools\model-diagnostics\BrepFaultProbe\BrepFaultProbe.csproj -c Release -- model "D:\path\model.SLDASM"
|
||||
dotnet run --project tools\model-diagnostics\BrepFaultProbe\BrepFaultProbe.csproj -c Release -- bridge "D:\path\model.SLDASM" runtime\brep_semantic_bridge\trial1
|
||||
dotnet run --project tools\model-diagnostics\BrepFaultProbe\BrepFaultProbe.csproj -c Release -- diagnose-ch18 "D:\path\model.SLDASM" runtime\knowledge_diagnosis_ch18\trial1
|
||||
```
|
||||
`bridge` writes these files:
|
||||
|
||||
- `structure_graph.json`: unified 2D B-rep, extracted relations, dimensions, 3D component/cylinder facts, and interpretation contract.
|
||||
- `patch_map.json`: grid patches over the 2D B-rep render, with edge/owner/role references per patch.
|
||||
- `render.svg`: a drawable 2D projection of the B-rep structure for visual grounding.
|
||||
- `semantic_bridge_package.json`: model-ready payload combining the structure graph and render reference.
|
||||
- `prompt.md`: the exact text prompt used for model interpretation.
|
||||
- `ai_interpretation.md`: written only when `OPENAI_API_KEY` is set and the configured AI chat API call succeeds.
|
||||
|
||||
`diagnose-ch18` writes these files:
|
||||
|
||||
- `initial/`: first-pass bridge output.
|
||||
- `knowledge_match.initial.json`: first-pass match against 18.2.1 and 18.2.4.
|
||||
- `final/`: deep bridge output, written when a possible match needs more B-rep facts.
|
||||
- `knowledge_match.final.json`: final match result.
|
||||
- `diagnosis_manifest.json`: process manifest, including whether targeted re-extraction was performed.
|
||||
|
||||
Optional AI settings:
|
||||
|
||||
```powershell
|
||||
$env:OPENAI_API_KEY = "..."
|
||||
$env:OPENAI_MODEL = "qwen-vl-max"
|
||||
$env:OPENAI_BASE_URL = "https://dashscope.aliyuncs.com/compatible-mode/v1"
|
||||
$env:OPENAI_API_MODE = "chat_completions"
|
||||
$env:OPENAI_MAX_IMAGES = "12"
|
||||
dotnet run --project tools\model-diagnostics\BrepFaultProbe\BrepFaultProbe.csproj -c Release -- bridge "D:\path\model.SLDASM"
|
||||
dotnet run --project tools\model-diagnostics\BrepFaultProbe\BrepFaultProbe.csproj -c Release -- bridge "D:\path\model.SLDASM" --model qwen-vl-max --max-iterations 2
|
||||
dotnet run --project tools\model-diagnostics\BrepFaultProbe\BrepFaultProbe.csproj -c Release -- bridge "D:\path\model.SLDASM" --deep --no-ai
|
||||
```
|
||||
|
||||
Self-evolution behavior:
|
||||
|
||||
- The bridge first audits local fact coverage: section count, contact relations, outside-adjacent edges, component facts, and cylindrical faces.
|
||||
- If local coverage is weak, or `--deep` is passed, it automatically adds secondary section views with different guide axes.
|
||||
- The structure package includes `SelfEvolutionAudit`, `SectionViews`, and `LocalFeatureCandidates`.
|
||||
- When AI is enabled, the prompt requires a final JSON self-evolution request. If the model says more facts are needed, the tool performs one more interpretation pass using the enhanced package context and writes `ai_self_evolution.json`.
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"BrepFaultProbe/1.0.0": {
|
||||
"runtime": {
|
||||
"BrepFaultProbe.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"BrepFaultProbe/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
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
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"BrepFaultProbe/1.0.0": {
|
||||
"runtime": {
|
||||
"BrepFaultProbe.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"BrepFaultProbe/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
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
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\BrepFaultProbe.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\BrepFaultProbe.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\BrepFaultProbe.csproj",
|
||||
"projectName": "BrepFaultProbe",
|
||||
"projectPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\BrepFaultProbe.csproj",
|
||||
"packagesPath": "C:\\Users\\86182\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\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,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" />
|
||||
+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("BrepFaultProbe")]
|
||||
[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("BrepFaultProbe")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("BrepFaultProbe")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
43922af6f6aad36d631228dd904c803bf9e942fd51a2054bc7f4a473a1f91781
|
||||
+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 = BrepFaultProbe
|
||||
build_property.ProjectDir = D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\
|
||||
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;
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
a35f6c0ad99ca3131f1ddc60c3d5e1070026e56b757c8352959b3957b03ec780
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.exe
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.deps.json
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.AssemblyInfoInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.AssemblyInfo.cs
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.csproj.CoreCompileInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\refint\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.genruntimeconfig.cache
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Debug\net8.0\ref\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.exe
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.deps.json
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Debug\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.AssemblyInfoInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.AssemblyInfo.cs
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.csproj.CoreCompileInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\refint\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\BrepFaultProbe.genruntimeconfig.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Debug\net8.0\ref\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\.tmp\buildcheck\BrepFaultProbe\BrepFaultProbe.exe
|
||||
D:\CSharpProjects\agent4\.tmp\buildcheck\BrepFaultProbe\BrepFaultProbe.deps.json
|
||||
D:\CSharpProjects\agent4\.tmp\buildcheck\BrepFaultProbe\BrepFaultProbe.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\.tmp\buildcheck\BrepFaultProbe\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\.tmp\buildcheck\BrepFaultProbe\BrepFaultProbe.pdb
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
68d7f5cb7f75fe573065d5d5716acbec5254a9935d8a6d34d9ac6d94385d314b
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+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("BrepFaultProbe")]
|
||||
[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("BrepFaultProbe")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("BrepFaultProbe")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
de32f12a25b53f5937c22eae753b7611e116697f821e6c6f19de23934e72bb25
|
||||
+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 = BrepFaultProbe
|
||||
build_property.ProjectDir = D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\
|
||||
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;
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
2157f4319833949ae7a26f014bf2e2ac67b0e4abc0edb6f0ad7a035aeaf0955f
|
||||
+33
@@ -0,0 +1,33 @@
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.exe
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.deps.json
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.AssemblyInfoInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.AssemblyInfo.cs
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.csproj.CoreCompileInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\refint\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.genruntimeconfig.cache
|
||||
D:\CSharpProjects\agent4\tools\BrepFaultProbe\obj\Release\net8.0\ref\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\.tmp\build-check\BrepFaultProbe\BrepFaultProbe.exe
|
||||
D:\CSharpProjects\agent4\.tmp\build-check\BrepFaultProbe\BrepFaultProbe.deps.json
|
||||
D:\CSharpProjects\agent4\.tmp\build-check\BrepFaultProbe\BrepFaultProbe.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\.tmp\build-check\BrepFaultProbe\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\.tmp\build-check\BrepFaultProbe\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.exe
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.deps.json
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.runtimeconfig.json
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\bin\Release\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.AssemblyInfoInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.AssemblyInfo.cs
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.csproj.CoreCompileInputs.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\refint\BrepFaultProbe.dll
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.pdb
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\BrepFaultProbe.genruntimeconfig.cache
|
||||
D:\CSharpProjects\agent4\tools\model-diagnostics\BrepFaultProbe\obj\Release\net8.0\ref\BrepFaultProbe.dll
|
||||
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
d8bc73679dc9784e78bfdf1023f2363c7c83bb569028e529af243585c93476a1
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
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\\BrepFaultProbe\\BrepFaultProbe.csproj",
|
||||
"projectName": "BrepFaultProbe",
|
||||
"projectPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\BrepFaultProbe.csproj",
|
||||
"packagesPath": "C:\\Users\\86182\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\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": "/vO0ZxE/fs8=",
|
||||
"success": true,
|
||||
"projectFilePath": "D:\\CSharpProjects\\agent4\\tools\\model-diagnostics\\BrepFaultProbe\\BrepFaultProbe.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user