@mindexec/cli 0.2.196 → 0.2.198
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +44 -0
- package/wwwroot/_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js +62 -2
- package/wwwroot/_framework/{MindExecution.Plugins.Concept.3mpew6v5hz.dll → MindExecution.Plugins.Concept.u9kzsgf64o.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.xt4y5gj8yw.dll → MindExecution.Plugins.PlanMaster.kibqg6rvqh.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Plugins.YouTube.kz0lju94md.dll → MindExecution.Plugins.YouTube.089r64n2hv.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Shared.7rwzquw93z.dll → MindExecution.Shared.qigwoeeqrt.dll} +0 -0
- package/wwwroot/_framework/{MindExecution.Web.7on7otq3do.dll → MindExecution.Web.aj117i28hy.dll} +0 -0
- package/wwwroot/_framework/blazor.boot.json +11 -11
- package/wwwroot/index.html +3 -3
- package/wwwroot/service-worker-assets.js +15 -15
- package/wwwroot/service-worker.js +1 -1
- package/remote-fast/osx-arm64/mindexec-remote-fast +0 -0
- package/remote-fast/osx-arm64/mindexec-remote-fast.deps.json +0 -24
- package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-arm64/mindexec-remote-fast.runtimeconfig.json +0 -13
- package/remote-fast/osx-x64/mindexec-remote-fast +0 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.deps.json +0 -24
- package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
- package/remote-fast/osx-x64/mindexec-remote-fast.runtimeconfig.json +0 -13
- package/remote-fast/win-x64/mindexec-remote-fast.deps.json +0 -24
package/package.json
CHANGED
|
@@ -277,6 +277,45 @@
|
|
|
277
277
|
return String(metadata.AutomationRunState || '').trim().toLowerCase() === 'running';
|
|
278
278
|
}
|
|
279
279
|
|
|
280
|
+
function setExecutableNodeRunVisualState(nodeId, runState, statusLabel) {
|
|
281
|
+
const normalizedNodeId = String(nodeId || '').trim();
|
|
282
|
+
if (!normalizedNodeId || !_module?.nodeObjectsById) {
|
|
283
|
+
return false;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
const entry = _module.nodeObjectsById.get(normalizedNodeId);
|
|
287
|
+
if (!entry?.model) {
|
|
288
|
+
return false;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
const metadata = ensureMetadata(entry.model);
|
|
292
|
+
const normalizedRunState = String(runState || '').trim().toLowerCase();
|
|
293
|
+
metadata.AutomationRunState = normalizedRunState || 'idle';
|
|
294
|
+
|
|
295
|
+
if (normalizedRunState === 'running') {
|
|
296
|
+
metadata.AutomationLastRunStatus = 'running';
|
|
297
|
+
metadata.AutomationLastRunStatusLabel = statusLabel || 'Running';
|
|
298
|
+
metadata.AutomationLastRunError = '';
|
|
299
|
+
} else if (statusLabel) {
|
|
300
|
+
metadata.AutomationLastRunStatusLabel = statusLabel;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
entry.model.metadata = metadata;
|
|
304
|
+
entry.model.Metadata = metadata;
|
|
305
|
+
|
|
306
|
+
if (entry.cssObject && window.MindMapCss3DManager?.syncCss3dContent) {
|
|
307
|
+
try {
|
|
308
|
+
entry.isCssDirty = true;
|
|
309
|
+
window.MindMapCss3DManager.syncCss3dContent(entry.model, entry.cssObject);
|
|
310
|
+
} finally {
|
|
311
|
+
entry.isCssDirty = false;
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
_module.lodRenderer?.requestVisualRefresh?.('node-run-visual-state');
|
|
316
|
+
return true;
|
|
317
|
+
}
|
|
318
|
+
|
|
280
319
|
async function syncNodeRunResultStates(result) {
|
|
281
320
|
if (!result) {
|
|
282
321
|
return;
|
|
@@ -1349,16 +1388,21 @@
|
|
|
1349
1388
|
|
|
1350
1389
|
nodeRunBtn.disabled = true;
|
|
1351
1390
|
nodeRunBtn.classList.add('disabled');
|
|
1391
|
+
setExecutableNodeRunVisualState(nodeId, 'running', 'Running');
|
|
1352
1392
|
hideMenu();
|
|
1353
1393
|
|
|
1354
1394
|
try {
|
|
1355
1395
|
const result = await _module.dotNetHelper.invokeMethodAsync('RunExecutableNodeFromJs', nodeId);
|
|
1356
1396
|
await syncNodeRunResultStates(result);
|
|
1397
|
+
if (result?.success === false && !Array.isArray(result?.nodeStates)) {
|
|
1398
|
+
setExecutableNodeRunVisualState(nodeId, 'idle', 'Failed');
|
|
1399
|
+
}
|
|
1357
1400
|
if (result?.success === false) {
|
|
1358
1401
|
window.MindMapFeedback?.toast?.(result.message || 'Node run failed.', { kind: 'error' });
|
|
1359
1402
|
}
|
|
1360
1403
|
} catch (error) {
|
|
1361
1404
|
console.error(`[MindMapMenuManager] RunExecutableNodeFromJs failed for node ${nodeId}`, error);
|
|
1405
|
+
setExecutableNodeRunVisualState(nodeId, 'idle', 'Failed');
|
|
1362
1406
|
window.MindMapFeedback?.toast?.('Node run failed.', { kind: 'error' });
|
|
1363
1407
|
} finally {
|
|
1364
1408
|
nodeRunBtn.disabled = false;
|
|
@@ -172,6 +172,11 @@
|
|
|
172
172
|
}
|
|
173
173
|
|
|
174
174
|
function blocksPassiveOverlayStack(entry) {
|
|
175
|
+
if (isCss3dOnlyOverlayEntry(entry)) {
|
|
176
|
+
const hasVisibleCss = !!entry?.cssObject && entry.cssObject.visible !== false;
|
|
177
|
+
return hasVisibleCss;
|
|
178
|
+
}
|
|
179
|
+
|
|
175
180
|
const type = getContentType(entry);
|
|
176
181
|
const isVisualStackBlocker = type === 'image'
|
|
177
182
|
|| type === 'video'
|
|
@@ -606,7 +611,9 @@
|
|
|
606
611
|
}
|
|
607
612
|
|
|
608
613
|
const candidateRank = Number(candidate.stackRank);
|
|
609
|
-
if (
|
|
614
|
+
if (currentItem.forceSuppressOverlappingPassive !== true &&
|
|
615
|
+
Number.isFinite(candidateRank) &&
|
|
616
|
+
candidateRank > blockerRank) {
|
|
610
617
|
return;
|
|
611
618
|
}
|
|
612
619
|
|
|
@@ -778,6 +785,41 @@
|
|
|
778
785
|
};
|
|
779
786
|
}
|
|
780
787
|
|
|
788
|
+
function isPassiveOverlayBlockedByCss3dOnlySurface(module, entry) {
|
|
789
|
+
if (!module || !entry || isCss3dOnlyOverlayEntry(entry)) {
|
|
790
|
+
return false;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
const candidateRect = getPassiveOverlayScreenRect(module, entry);
|
|
794
|
+
if (!candidateRect) {
|
|
795
|
+
return false;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
const candidateId = getNodeId(entry);
|
|
799
|
+
let blocked = false;
|
|
800
|
+
module.nodeObjectsById?.forEach?.((otherEntry, otherNodeId) => {
|
|
801
|
+
if (blocked || !otherEntry || normalizeId(otherNodeId) === candidateId) {
|
|
802
|
+
return;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
if (!isCss3dOnlyOverlayEntry(otherEntry)) {
|
|
806
|
+
return;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
const hasVisibleCss = !!otherEntry.cssObject && otherEntry.cssObject.visible !== false;
|
|
810
|
+
if (!hasVisibleCss) {
|
|
811
|
+
return;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
const blockerRect = getPassiveOverlayScreenRect(module, otherEntry);
|
|
815
|
+
if (doPassiveOverlayRectsOverlap(candidateRect, blockerRect)) {
|
|
816
|
+
blocked = true;
|
|
817
|
+
}
|
|
818
|
+
});
|
|
819
|
+
|
|
820
|
+
return blocked;
|
|
821
|
+
}
|
|
822
|
+
|
|
781
823
|
function getPassiveOverlayCardLimit(module, candidateCount) {
|
|
782
824
|
if (!(candidateCount > 0)) {
|
|
783
825
|
return 0;
|
|
@@ -841,7 +883,8 @@
|
|
|
841
883
|
nodeId: normalizedId,
|
|
842
884
|
entry,
|
|
843
885
|
sourceIndex: nextSourceIndex,
|
|
844
|
-
renderPassiveOverlay: false
|
|
886
|
+
renderPassiveOverlay: false,
|
|
887
|
+
forceSuppressOverlappingPassive: isCss3dOnlyOverlayEntry(entry)
|
|
845
888
|
});
|
|
846
889
|
blockerCount += 1;
|
|
847
890
|
}
|
|
@@ -4099,6 +4142,23 @@
|
|
|
4099
4142
|
return;
|
|
4100
4143
|
}
|
|
4101
4144
|
|
|
4145
|
+
if (isPassiveOverlayBlockedByCss3dOnlySurface(module, entry)) {
|
|
4146
|
+
if (entry) {
|
|
4147
|
+
resumeSource(entry);
|
|
4148
|
+
}
|
|
4149
|
+
if (existingCard) {
|
|
4150
|
+
removeCard(state, selectionCardKey(nodeId));
|
|
4151
|
+
}
|
|
4152
|
+
state.passiveCandidateIds?.delete?.(nodeId);
|
|
4153
|
+
if (interactive) {
|
|
4154
|
+
state.selectionNodeId = '';
|
|
4155
|
+
state.dirtySelection = true;
|
|
4156
|
+
module._overlayDirty = true;
|
|
4157
|
+
module._lastOverlayKey = '';
|
|
4158
|
+
}
|
|
4159
|
+
return;
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4102
4162
|
const isSelectedPassiveNode = !interactive && selectedNodeId === nodeId;
|
|
4103
4163
|
const keepPassiveCard = isSelectedPassiveNode && shouldKeepPassiveCardWhenSelected(entry);
|
|
4104
4164
|
if (isSelectedPassiveNode) {
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/wwwroot/_framework/{MindExecution.Web.7on7otq3do.dll → MindExecution.Web.aj117i28hy.dll}
RENAMED
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"mainAssemblyName": "MindExecution.Web",
|
|
3
3
|
"resources": {
|
|
4
|
-
"hash": "sha256-
|
|
4
|
+
"hash": "sha256-SxNAKacIarEP0kvePCZP3JewobG9CNd+KXsEXE7ZXk4=",
|
|
5
5
|
"fingerprinting": {
|
|
6
6
|
"Google.Protobuf.9h59ukbel7.dll": "Google.Protobuf.dll",
|
|
7
7
|
"Markdig.d1j7v41cl1.dll": "Markdig.dll",
|
|
@@ -127,12 +127,12 @@
|
|
|
127
127
|
"MindExecution.Kernel.n80deqs1y7.dll": "MindExecution.Kernel.dll",
|
|
128
128
|
"MindExecution.Plugins.Admin.29mytzdaun.dll": "MindExecution.Plugins.Admin.dll",
|
|
129
129
|
"MindExecution.Plugins.Business.asckvekct8.dll": "MindExecution.Plugins.Business.dll",
|
|
130
|
-
"MindExecution.Plugins.Concept.
|
|
130
|
+
"MindExecution.Plugins.Concept.u9kzsgf64o.dll": "MindExecution.Plugins.Concept.dll",
|
|
131
131
|
"MindExecution.Plugins.Directory.k4hx7g84qs.dll": "MindExecution.Plugins.Directory.dll",
|
|
132
|
-
"MindExecution.Plugins.PlanMaster.
|
|
133
|
-
"MindExecution.Plugins.YouTube.
|
|
134
|
-
"MindExecution.Shared.
|
|
135
|
-
"MindExecution.Web.
|
|
132
|
+
"MindExecution.Plugins.PlanMaster.kibqg6rvqh.dll": "MindExecution.Plugins.PlanMaster.dll",
|
|
133
|
+
"MindExecution.Plugins.YouTube.089r64n2hv.dll": "MindExecution.Plugins.YouTube.dll",
|
|
134
|
+
"MindExecution.Shared.qigwoeeqrt.dll": "MindExecution.Shared.dll",
|
|
135
|
+
"MindExecution.Web.aj117i28hy.dll": "MindExecution.Web.dll",
|
|
136
136
|
"dotnet.js": "dotnet.js",
|
|
137
137
|
"dotnet.native.qc8g39g30v.js": "dotnet.native.js",
|
|
138
138
|
"dotnet.native.boem75ye5i.wasm": "dotnet.native.wasm",
|
|
@@ -281,15 +281,15 @@
|
|
|
281
281
|
"MindExecution.Core.21gc0645uz.dll": "sha256-2ssZ+cC0K4aW0R8wQHa8JzS1UlYMabFvA3aVK+CH1Ek=",
|
|
282
282
|
"MindExecution.Kernel.n80deqs1y7.dll": "sha256-d7gGGpxiQNphs0at1uO1fAmYe28MFNVgGTEqxoM2uws=",
|
|
283
283
|
"MindExecution.Plugins.Business.asckvekct8.dll": "sha256-ujRTVA1cvwBWDAdHqxU8oyTnOyjgvsr0ynsQjjxJxcY=",
|
|
284
|
-
"MindExecution.Plugins.Concept.
|
|
285
|
-
"MindExecution.Plugins.PlanMaster.
|
|
286
|
-
"MindExecution.Shared.
|
|
287
|
-
"MindExecution.Web.
|
|
284
|
+
"MindExecution.Plugins.Concept.u9kzsgf64o.dll": "sha256-Yp38m6zHe8EBxtm480N4LfcHRpzFZRhYpr1RsCgnlK8=",
|
|
285
|
+
"MindExecution.Plugins.PlanMaster.kibqg6rvqh.dll": "sha256-NOtEHR8Y0rO8BguFvD1soa8jfB4YVQFydten0SzqBEg=",
|
|
286
|
+
"MindExecution.Shared.qigwoeeqrt.dll": "sha256-ootX6+43VGUCNh3DpuVwrO0Q2xDwqqmt4WDmzrxXF3U=",
|
|
287
|
+
"MindExecution.Web.aj117i28hy.dll": "sha256-+jKjBygtNF6dsjwsyJ+O2NId2p7HeQk4rYksxd+SqPA="
|
|
288
288
|
},
|
|
289
289
|
"lazyAssembly": {
|
|
290
290
|
"MindExecution.Plugins.Admin.29mytzdaun.dll": "sha256-2mHPbTPcHCi1xPuk3dNMVWxn42xZFUZ3QFhm3xIV/6E=",
|
|
291
291
|
"MindExecution.Plugins.Directory.k4hx7g84qs.dll": "sha256-DAR/VFVaR1noVv49Z1mWA5rnhP39REfl4pa9D5Mdvvk=",
|
|
292
|
-
"MindExecution.Plugins.YouTube.
|
|
292
|
+
"MindExecution.Plugins.YouTube.089r64n2hv.dll": "sha256-cK0bYVjWZXAMPuUfyzk9B/P2Ap3FK4RoePFkduiE3XI="
|
|
293
293
|
}
|
|
294
294
|
},
|
|
295
295
|
"cacheBootResources": true,
|
package/wwwroot/index.html
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
<title>MindExec | Business Execution OS for solo builders</title>
|
|
8
8
|
<meta name="description" content="MindExec is an AI business execution OS for solo builders who want to turn notes, research, assets, and repeatable execution Skills into revenue-producing work." />
|
|
9
9
|
<base href="/" />
|
|
10
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-
|
|
11
|
-
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-
|
|
10
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-css3d-overlap-v615-x1" />
|
|
11
|
+
<link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-css3d-overlap-v615-x1" />
|
|
12
12
|
<!-- ?�▼??Font Awesome (local) ?�▼??-->
|
|
13
13
|
<link rel="stylesheet" href="_content/MindExecution.Shared/lib/font-awesome/css/all.min.css" />
|
|
14
14
|
<!-- ?�▲??-->
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
}
|
|
580
580
|
|
|
581
581
|
const base = '_content/MindExecution.Shared/js/';
|
|
582
|
-
const scriptVersion = '20260618-
|
|
582
|
+
const scriptVersion = '20260618-css3d-overlap-v615-x1';
|
|
583
583
|
const scriptUrl = (script) => `${base}${script}?v=${scriptVersion}`;
|
|
584
584
|
console.log(`[Script Loader] Shared JS version: ${scriptVersion}`);
|
|
585
585
|
const criticalScripts = [
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
self.assetsManifest = {
|
|
2
|
-
"version": "
|
|
2
|
+
"version": "rCbraWz+",
|
|
3
3
|
"assets": [
|
|
4
4
|
{
|
|
5
5
|
"hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
"url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
|
-
"hash": "sha256-
|
|
125
|
+
"hash": "sha256-Qcf3y8yXcec7mgC01o0l2jz5CqtjZFbeTmoXEqy1aJU=",
|
|
126
126
|
"url": "_content/MindExecution.Shared/js/mind-map-menu-manager.js"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
"url": "_content/MindExecution.Shared/js/mind-map-text-lod-system.js"
|
|
155
155
|
},
|
|
156
156
|
{
|
|
157
|
-
"hash": "sha256-
|
|
157
|
+
"hash": "sha256-cBWMT7u9vUZ85762G4W5DNQvMpbE8QPoY3LuWMnYz8w=",
|
|
158
158
|
"url": "_content/MindExecution.Shared/js/mind-map-text-overlay-v2.js"
|
|
159
159
|
},
|
|
160
160
|
{
|
|
@@ -426,28 +426,28 @@
|
|
|
426
426
|
"url": "_framework/MindExecution.Plugins.Business.asckvekct8.dll"
|
|
427
427
|
},
|
|
428
428
|
{
|
|
429
|
-
"hash": "sha256-
|
|
430
|
-
"url": "_framework/MindExecution.Plugins.Concept.
|
|
429
|
+
"hash": "sha256-Yp38m6zHe8EBxtm480N4LfcHRpzFZRhYpr1RsCgnlK8=",
|
|
430
|
+
"url": "_framework/MindExecution.Plugins.Concept.u9kzsgf64o.dll"
|
|
431
431
|
},
|
|
432
432
|
{
|
|
433
433
|
"hash": "sha256-DAR/VFVaR1noVv49Z1mWA5rnhP39REfl4pa9D5Mdvvk=",
|
|
434
434
|
"url": "_framework/MindExecution.Plugins.Directory.k4hx7g84qs.dll"
|
|
435
435
|
},
|
|
436
436
|
{
|
|
437
|
-
"hash": "sha256-
|
|
438
|
-
"url": "_framework/MindExecution.Plugins.PlanMaster.
|
|
437
|
+
"hash": "sha256-NOtEHR8Y0rO8BguFvD1soa8jfB4YVQFydten0SzqBEg=",
|
|
438
|
+
"url": "_framework/MindExecution.Plugins.PlanMaster.kibqg6rvqh.dll"
|
|
439
439
|
},
|
|
440
440
|
{
|
|
441
|
-
"hash": "sha256-
|
|
442
|
-
"url": "_framework/MindExecution.Plugins.YouTube.
|
|
441
|
+
"hash": "sha256-cK0bYVjWZXAMPuUfyzk9B/P2Ap3FK4RoePFkduiE3XI=",
|
|
442
|
+
"url": "_framework/MindExecution.Plugins.YouTube.089r64n2hv.dll"
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
|
-
"hash": "sha256-
|
|
446
|
-
"url": "_framework/MindExecution.Shared.
|
|
445
|
+
"hash": "sha256-ootX6+43VGUCNh3DpuVwrO0Q2xDwqqmt4WDmzrxXF3U=",
|
|
446
|
+
"url": "_framework/MindExecution.Shared.qigwoeeqrt.dll"
|
|
447
447
|
},
|
|
448
448
|
{
|
|
449
|
-
"hash": "sha256
|
|
450
|
-
"url": "_framework/MindExecution.Web.
|
|
449
|
+
"hash": "sha256-+jKjBygtNF6dsjwsyJ+O2NId2p7HeQk4rYksxd+SqPA=",
|
|
450
|
+
"url": "_framework/MindExecution.Web.aj117i28hy.dll"
|
|
451
451
|
},
|
|
452
452
|
{
|
|
453
453
|
"hash": "sha256-IsZJ91/OW+fHzNqIgEc7Y072ns8z9dGritiSyvR9Wgc=",
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
"url": "_framework/Websocket.Client.vapounvmnl.dll"
|
|
771
771
|
},
|
|
772
772
|
{
|
|
773
|
-
"hash": "sha256
|
|
773
|
+
"hash": "sha256-lrx8OUyomT9XODwOdfdV0usfAL2NBMWtygkYnkZMKKQ=",
|
|
774
774
|
"url": "_framework/blazor.boot.json"
|
|
775
775
|
},
|
|
776
776
|
{
|
|
@@ -834,7 +834,7 @@
|
|
|
834
834
|
"url": "image-manifest.json"
|
|
835
835
|
},
|
|
836
836
|
{
|
|
837
|
-
"hash": "sha256-
|
|
837
|
+
"hash": "sha256-arXjHuMtmw6cPpsHdjAhJ35+a1wkKo5C3gdnQsm4xGw=",
|
|
838
838
|
"url": "index.html"
|
|
839
839
|
},
|
|
840
840
|
{
|
|
Binary file
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"runtimeTarget": {
|
|
3
|
-
"name": ".NETCoreApp,Version=v9.0/osx-arm64",
|
|
4
|
-
"signature": ""
|
|
5
|
-
},
|
|
6
|
-
"compilationOptions": {},
|
|
7
|
-
"targets": {
|
|
8
|
-
".NETCoreApp,Version=v9.0": {},
|
|
9
|
-
".NETCoreApp,Version=v9.0/osx-arm64": {
|
|
10
|
-
"mindexec-remote-fast/1.0.0": {
|
|
11
|
-
"runtime": {
|
|
12
|
-
"mindexec-remote-fast.dll": {}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"libraries": {
|
|
18
|
-
"mindexec-remote-fast/1.0.0": {
|
|
19
|
-
"type": "project",
|
|
20
|
-
"serviceable": false,
|
|
21
|
-
"sha512": ""
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
Binary file
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"runtimeOptions": {
|
|
3
|
-
"tfm": "net9.0",
|
|
4
|
-
"framework": {
|
|
5
|
-
"name": "Microsoft.NETCore.App",
|
|
6
|
-
"version": "9.0.0"
|
|
7
|
-
},
|
|
8
|
-
"configProperties": {
|
|
9
|
-
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
10
|
-
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
Binary file
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"runtimeTarget": {
|
|
3
|
-
"name": ".NETCoreApp,Version=v9.0/osx-x64",
|
|
4
|
-
"signature": ""
|
|
5
|
-
},
|
|
6
|
-
"compilationOptions": {},
|
|
7
|
-
"targets": {
|
|
8
|
-
".NETCoreApp,Version=v9.0": {},
|
|
9
|
-
".NETCoreApp,Version=v9.0/osx-x64": {
|
|
10
|
-
"mindexec-remote-fast/1.0.0": {
|
|
11
|
-
"runtime": {
|
|
12
|
-
"mindexec-remote-fast.dll": {}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"libraries": {
|
|
18
|
-
"mindexec-remote-fast/1.0.0": {
|
|
19
|
-
"type": "project",
|
|
20
|
-
"serviceable": false,
|
|
21
|
-
"sha512": ""
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
Binary file
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"runtimeOptions": {
|
|
3
|
-
"tfm": "net9.0",
|
|
4
|
-
"framework": {
|
|
5
|
-
"name": "Microsoft.NETCore.App",
|
|
6
|
-
"version": "9.0.0"
|
|
7
|
-
},
|
|
8
|
-
"configProperties": {
|
|
9
|
-
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
10
|
-
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"runtimeTarget": {
|
|
3
|
-
"name": ".NETCoreApp,Version=v9.0/win-x64",
|
|
4
|
-
"signature": ""
|
|
5
|
-
},
|
|
6
|
-
"compilationOptions": {},
|
|
7
|
-
"targets": {
|
|
8
|
-
".NETCoreApp,Version=v9.0": {},
|
|
9
|
-
".NETCoreApp,Version=v9.0/win-x64": {
|
|
10
|
-
"mindexec-remote-fast/1.0.0": {
|
|
11
|
-
"runtime": {
|
|
12
|
-
"mindexec-remote-fast.dll": {}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"libraries": {
|
|
18
|
-
"mindexec-remote-fast/1.0.0": {
|
|
19
|
-
"type": "project",
|
|
20
|
-
"serviceable": false,
|
|
21
|
-
"sha512": ""
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|