@mindexec/cli 0.2.195 → 0.2.197

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.
Files changed (21) hide show
  1. package/package.json +1 -1
  2. package/wwwroot/_content/MindExecution.Shared/css/mind-map-overrides.css +37 -5
  3. package/wwwroot/_content/MindExecution.Shared/js/mind-map-menu-manager.js +44 -0
  4. package/wwwroot/_framework/{MindExecution.Plugins.Concept.3mpew6v5hz.dll → MindExecution.Plugins.Concept.u9kzsgf64o.dll} +0 -0
  5. package/wwwroot/_framework/{MindExecution.Plugins.PlanMaster.xt4y5gj8yw.dll → MindExecution.Plugins.PlanMaster.kibqg6rvqh.dll} +0 -0
  6. package/wwwroot/_framework/{MindExecution.Plugins.YouTube.kz0lju94md.dll → MindExecution.Plugins.YouTube.089r64n2hv.dll} +0 -0
  7. package/wwwroot/_framework/{MindExecution.Shared.7rwzquw93z.dll → MindExecution.Shared.qigwoeeqrt.dll} +0 -0
  8. package/wwwroot/_framework/{MindExecution.Web.7on7otq3do.dll → MindExecution.Web.aj117i28hy.dll} +0 -0
  9. package/wwwroot/_framework/blazor.boot.json +11 -11
  10. package/wwwroot/index.html +3 -3
  11. package/wwwroot/service-worker-assets.js +15 -15
  12. package/wwwroot/service-worker.js +1 -1
  13. package/remote-fast/osx-arm64/mindexec-remote-fast +0 -0
  14. package/remote-fast/osx-arm64/mindexec-remote-fast.deps.json +0 -24
  15. package/remote-fast/osx-arm64/mindexec-remote-fast.dll +0 -0
  16. package/remote-fast/osx-arm64/mindexec-remote-fast.runtimeconfig.json +0 -13
  17. package/remote-fast/osx-x64/mindexec-remote-fast +0 -0
  18. package/remote-fast/osx-x64/mindexec-remote-fast.deps.json +0 -24
  19. package/remote-fast/osx-x64/mindexec-remote-fast.dll +0 -0
  20. package/remote-fast/osx-x64/mindexec-remote-fast.runtimeconfig.json +0 -13
  21. package/remote-fast/win-x64/mindexec-remote-fast.deps.json +0 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindexec/cli",
3
- "version": "0.2.195",
3
+ "version": "0.2.197",
4
4
  "description": "MindExec local runtime and bridge CLI",
5
5
  "main": "server.js",
6
6
  "type": "module",
@@ -1217,11 +1217,8 @@ body.is-node-dragging * {
1217
1217
  overflow: hidden !important;
1218
1218
  }
1219
1219
 
1220
- /* Note/Image hard edge lives on the inner CSS3D card in app.css.
1221
- Node glow/shadow is retired; keep only crisp borders. */
1222
- .map-node-note,
1223
- .map-node-note.selected,
1224
- .map-node-note:focus-within,
1220
+ /* Image hard edge lives on its own media surface.
1221
+ Text nodes keep a crisp border so overlapping nodes remain readable. */
1225
1222
  .map-node-image-container,
1226
1223
  .map-node-image-container.selected {
1227
1224
  border: none !important;
@@ -3431,3 +3428,38 @@ html body .css3d-resolution-wrapper.node-type-embed .map-node.selected {
3431
3428
  filter: none !important;
3432
3429
  outline-offset: 0 !important;
3433
3430
  }
3431
+
3432
+ /* Text nodes need a visible hard edge now that decorative glow/shadow is gone.
3433
+ Keep this scoped away from template, MDM, media, CSV, and remote-control cards. */
3434
+ html body .css3d-resolution-wrapper > .map-node-bubble,
3435
+ html body .css3d-resolution-wrapper > .map-node-note,
3436
+ html body .css3d-resolution-wrapper > .map-node-code,
3437
+ html body .css3d-resolution-wrapper > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
3438
+ html body .css3d-resolution-wrapper > .map-node-memo:not(.map-node-template-card):not(.map-node-remote-fleet) {
3439
+ border: 1px solid rgba(17, 24, 39, 0.88) !important;
3440
+ -webkit-box-shadow: none !important;
3441
+ box-shadow: none !important;
3442
+ -webkit-filter: none !important;
3443
+ filter: none !important;
3444
+ }
3445
+
3446
+ html body .css3d-resolution-wrapper.selected > .map-node-bubble,
3447
+ html body .css3d-resolution-wrapper.selected > .map-node-note,
3448
+ html body .css3d-resolution-wrapper.selected > .map-node-code,
3449
+ html body .css3d-resolution-wrapper.selected > .map-node-agent:not(.map-node-template-card):not(.map-node-remote-fleet),
3450
+ html body .css3d-resolution-wrapper.selected > .map-node-memo:not(.map-node-template-card):not(.map-node-remote-fleet),
3451
+ html body .css3d-resolution-wrapper > .map-node-bubble.selected,
3452
+ html body .css3d-resolution-wrapper > .map-node-note.selected,
3453
+ html body .css3d-resolution-wrapper > .map-node-note:focus-within,
3454
+ html body .css3d-resolution-wrapper > .map-node-code.selected,
3455
+ html body .css3d-resolution-wrapper > .map-node-code:focus-within,
3456
+ html body .css3d-resolution-wrapper > .map-node-agent.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
3457
+ html body .css3d-resolution-wrapper > .map-node-agent:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet),
3458
+ html body .css3d-resolution-wrapper > .map-node-memo.selected:not(.map-node-template-card):not(.map-node-remote-fleet),
3459
+ html body .css3d-resolution-wrapper > .map-node-memo:focus-within:not(.map-node-template-card):not(.map-node-remote-fleet) {
3460
+ border-color: var(--mind-node-selection-edge) !important;
3461
+ -webkit-box-shadow: none !important;
3462
+ box-shadow: none !important;
3463
+ -webkit-filter: none !important;
3464
+ filter: none !important;
3465
+ }
@@ -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;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "mainAssemblyName": "MindExecution.Web",
3
3
  "resources": {
4
- "hash": "sha256-e0n1RLLtx0J+Ffwaa005iSuhZrI+q9OH/azLs6RFJdE=",
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.3mpew6v5hz.dll": "MindExecution.Plugins.Concept.dll",
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.xt4y5gj8yw.dll": "MindExecution.Plugins.PlanMaster.dll",
133
- "MindExecution.Plugins.YouTube.kz0lju94md.dll": "MindExecution.Plugins.YouTube.dll",
134
- "MindExecution.Shared.7rwzquw93z.dll": "MindExecution.Shared.dll",
135
- "MindExecution.Web.7on7otq3do.dll": "MindExecution.Web.dll",
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.3mpew6v5hz.dll": "sha256-K6GVU9mkcEQatq6shNKDO9xtahvaLBOhrIOzYda8lAI=",
285
- "MindExecution.Plugins.PlanMaster.xt4y5gj8yw.dll": "sha256-Cx47VicQk4brENQ4Y/9SMJ81sawy9AkvnrxuDnqoAYI=",
286
- "MindExecution.Shared.7rwzquw93z.dll": "sha256-bZ2rx8V2aQu7Ff4nl/mgbEOg3P/3YNjMmFpIXWcu3cQ=",
287
- "MindExecution.Web.7on7otq3do.dll": "sha256-l3+AdCxkmuRdpmgy+hg5tQBsNft43p/QZ1jFKlJAz2A="
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.kz0lju94md.dll": "sha256-wExATtRAB1G/dn7Z+OicstGK9jt0LmSeUfcfIm/CT34="
292
+ "MindExecution.Plugins.YouTube.089r64n2hv.dll": "sha256-cK0bYVjWZXAMPuUfyzk9B/P2Ap3FK4RoePFkduiE3XI="
293
293
  }
294
294
  },
295
295
  "cacheBootResources": true,
@@ -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-node-no-glow-v612" />
11
- <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-node-no-glow-v612" />
10
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/app.css?v=20260618-node-run-state-v614-a" />
11
+ <link rel="stylesheet" href="_content/MindExecution.Shared/css/mind-map-overrides.css?v=20260618-node-run-state-v614-a" />
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-node-no-glow-v612';
582
+ const scriptVersion = '20260618-node-run-state-v614-a';
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": "mgN72BWo",
2
+ "version": "pXPOq5hH",
3
3
  "assets": [
4
4
  {
5
5
  "hash": "sha256-+CSYMcqLNTsq3VnH11jgYyOCCdxvHzL74CBmo4sCmMU=",
@@ -42,7 +42,7 @@
42
42
  "url": "_content/MindExecution.Shared/css/app.css"
43
43
  },
44
44
  {
45
- "hash": "sha256-HZKOm11YuA4O+epDepAIOICiWR2Umvw/0RQw3R0/gL8=",
45
+ "hash": "sha256-Uz0yKoS3dqQn6Wub7Z5Xz4QwJ/wysZ7EKB2fs01V31U=",
46
46
  "url": "_content/MindExecution.Shared/css/mind-map-overrides.css"
47
47
  },
48
48
  {
@@ -122,7 +122,7 @@
122
122
  "url": "_content/MindExecution.Shared/js/mind-map-logic-workers.js"
123
123
  },
124
124
  {
125
- "hash": "sha256-SdjTYIgIbQWWX5sXSsxiK0GbNA1xBmqMr1vi8mi8Bmc=",
125
+ "hash": "sha256-Qcf3y8yXcec7mgC01o0l2jz5CqtjZFbeTmoXEqy1aJU=",
126
126
  "url": "_content/MindExecution.Shared/js/mind-map-menu-manager.js"
127
127
  },
128
128
  {
@@ -426,28 +426,28 @@
426
426
  "url": "_framework/MindExecution.Plugins.Business.asckvekct8.dll"
427
427
  },
428
428
  {
429
- "hash": "sha256-K6GVU9mkcEQatq6shNKDO9xtahvaLBOhrIOzYda8lAI=",
430
- "url": "_framework/MindExecution.Plugins.Concept.3mpew6v5hz.dll"
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-Cx47VicQk4brENQ4Y/9SMJ81sawy9AkvnrxuDnqoAYI=",
438
- "url": "_framework/MindExecution.Plugins.PlanMaster.xt4y5gj8yw.dll"
437
+ "hash": "sha256-NOtEHR8Y0rO8BguFvD1soa8jfB4YVQFydten0SzqBEg=",
438
+ "url": "_framework/MindExecution.Plugins.PlanMaster.kibqg6rvqh.dll"
439
439
  },
440
440
  {
441
- "hash": "sha256-wExATtRAB1G/dn7Z+OicstGK9jt0LmSeUfcfIm/CT34=",
442
- "url": "_framework/MindExecution.Plugins.YouTube.kz0lju94md.dll"
441
+ "hash": "sha256-cK0bYVjWZXAMPuUfyzk9B/P2Ap3FK4RoePFkduiE3XI=",
442
+ "url": "_framework/MindExecution.Plugins.YouTube.089r64n2hv.dll"
443
443
  },
444
444
  {
445
- "hash": "sha256-bZ2rx8V2aQu7Ff4nl/mgbEOg3P/3YNjMmFpIXWcu3cQ=",
446
- "url": "_framework/MindExecution.Shared.7rwzquw93z.dll"
445
+ "hash": "sha256-ootX6+43VGUCNh3DpuVwrO0Q2xDwqqmt4WDmzrxXF3U=",
446
+ "url": "_framework/MindExecution.Shared.qigwoeeqrt.dll"
447
447
  },
448
448
  {
449
- "hash": "sha256-l3+AdCxkmuRdpmgy+hg5tQBsNft43p/QZ1jFKlJAz2A=",
450
- "url": "_framework/MindExecution.Web.7on7otq3do.dll"
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-/VqlSl0soIWMyeyUaHS8719wDwRJJLAk6Wh9TJo4PVU=",
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-vbKJG7msZYn5IzSiN29u6RPsHviqxMMwqvXaNkcCU/U=",
837
+ "hash": "sha256-J6zw+ivDTI8JZdnAcoasgHIH5XctMVfe9Wg4m6v985o=",
838
838
  "url": "index.html"
839
839
  },
840
840
  {
@@ -1,4 +1,4 @@
1
- /* Manifest version: mgN72BWo */
1
+ /* Manifest version: pXPOq5hH */
2
2
  // Hosted deployments should prefer the network over stale offline caches.
3
3
  // This service worker immediately clears old Blazor offline caches and unregisters itself.
4
4
 
@@ -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
- }
@@ -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/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
- }
@@ -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
- }