nodalis-compiler 1.0.14 → 1.0.16
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/CHANGELOG.md +11 -3
- package/package.json +1 -1
- package/src/compilers/st-parser/expressionConverter.js +4 -4
- package/src/compilers/st-parser/gcctranspiler.js +10 -2
- package/src/compilers/st-parser/jstranspiler.js +10 -5
- package/src/compilers/st-parser/parser.js +20 -6
- package/src/compilers/st-parser/tokenizer.js +1 -1
- package/src/compilers/support/jint/nodalis/NodalisEngine/NodalisEngine.cs +48 -24
- package/src/compilers/support/jint/nodalis/NodalisEngine/NodalisEngine.csproj +1 -1
- package/src/compilers/support/jint/nodalis/NodalisEngine/README.md +8 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.5.nupkg +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.6.nupkg +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.7.nupkg +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.8.nupkg +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.9.nupkg +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.deps.json +24 -24
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.dll +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.pdb +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/NodalisEngine.csproj.nuget.dgspec.json +1 -1
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/NodalisEngine.csproj.nuget.g.targets +1 -1
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.5.nuspec +31 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.6.nuspec +31 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.7.nuspec +31 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.8.nuspec +31 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.9.nuspec +31 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.AssemblyInfo.cs +3 -3
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.AssemblyInfoInputs.cache +1 -1
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.assets.cache +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.csproj.AssemblyReference.cache +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.csproj.CoreCompileInputs.cache +1 -1
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.dll +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.pdb +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.sourcelink.json +1 -1
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/ref/NodalisEngine.dll +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/refint/NodalisEngine.dll +0 -0
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/project.assets.json +18 -18
- package/src/compilers/support/jint/nodalis/NodalisEngine/obj/project.nuget.cache +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## [1.0.16] - 2026-02-13
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
- Fixed issues with compiling function blocks in jint.
|
|
6
|
+
- Fixed TP function block in NodalisEngine.
|
|
7
|
+
|
|
8
|
+
## [1.0.15] - 2026-02-10
|
|
9
|
+
|
|
10
|
+
- Fixed issue with calling functions. Changed AND/OR to bitwise operators in JS/C
|
|
11
|
+
|
|
12
|
+
## [1.0.14] - 2026-02-06
|
|
13
|
+
|
|
14
|
+
- Added support for BACNET-IP to Generic C++ and JINT compilers.
|
|
7
15
|
|
|
8
16
|
## [1.0.14] - 2026-02-06
|
|
9
17
|
|
package/package.json
CHANGED
|
@@ -48,8 +48,8 @@ export function convertExpression(expr, isjsfb = false, jsfbVars = [], isjs=fals
|
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
let results = expr
|
|
51
|
-
.replace(/\bAND\b/gi, '
|
|
52
|
-
.replace(/\bOR\b/gi, '
|
|
51
|
+
.replace(/\bAND\b/gi, '&')
|
|
52
|
+
.replace(/\bOR\b/gi, '|')
|
|
53
53
|
.replace(/\bNOT\b/gi, '!')
|
|
54
54
|
.replace(/\bMOD\b/gi, '%')
|
|
55
55
|
.replace(/\bDIV\b/gi, '/')
|
|
@@ -78,7 +78,7 @@ export function convertExpression(expr, isjsfb = false, jsfbVars = [], isjs=fals
|
|
|
78
78
|
if (/^%[IQM][XBWDL]?\d+(\.\d+)?$/i.test(e)) return getReadAddressExpression(e);
|
|
79
79
|
|
|
80
80
|
// Don't wrap literals or operators
|
|
81
|
-
if (/^(true|false|null|\d+|!|&&|\|\||==|!=|[<>=+\-*/()])$/i.test(e)) return e;
|
|
81
|
+
if (/^(true|false|null|\d+|!|&&|\|\||==|!=|[<>=+\-*/(),&|])$/i.test(e)) return e;
|
|
82
82
|
|
|
83
83
|
// Don't wrap known function expressions (e.g., getBit)
|
|
84
84
|
if (/^getBit\(/.test(e)) return e;
|
|
@@ -94,7 +94,7 @@ export function convertExpression(expr, isjsfb = false, jsfbVars = [], isjs=fals
|
|
|
94
94
|
}).join(' ');
|
|
95
95
|
//if (results.indexOf("read") === -1) {
|
|
96
96
|
results = results.replace(/\b(?<!%)(([A-Za-z_]\w*)\.(\d+))\b/g, (_, full, base, bit) => {
|
|
97
|
-
|
|
97
|
+
return `getBit(${isjs ? "" : "&"}${base}, ${bit})`;
|
|
98
98
|
});
|
|
99
99
|
//}
|
|
100
100
|
|
|
@@ -138,8 +138,16 @@ function mapStatement(stmt){
|
|
|
138
138
|
...transpileStatements(stmt.body)?.map(s => ` ${s}`),
|
|
139
139
|
`}`
|
|
140
140
|
];
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
case "CALL": {
|
|
142
|
+
// If args exist, it's a normal function call: Foo(a, b);
|
|
143
|
+
if (stmt.args && stmt.args.length) {
|
|
144
|
+
const argsExpr = convertExpression(stmt.args, infb, fbVars, true);
|
|
145
|
+
return [`${stmt.name}(${argsExpr});`];
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// Otherwise treat as FB instance call: FB1();
|
|
149
|
+
return [stmt.name + "();"];
|
|
150
|
+
}
|
|
143
151
|
default:
|
|
144
152
|
return [`// unsupported: ${stmt.type}`];
|
|
145
153
|
}
|
|
@@ -154,13 +154,18 @@ function mapStatement(stmt, infb = false) {
|
|
|
154
154
|
];
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
-
case 'CALL':
|
|
158
|
-
|
|
159
|
-
if(
|
|
160
|
-
|
|
157
|
+
case 'CALL': {
|
|
158
|
+
// If args exist, it's a normal function call: Foo(a, b);
|
|
159
|
+
if (stmt.args && stmt.args.length) {
|
|
160
|
+
const argsExpr = convertExpression(stmt.args, infb, fbVars, true);
|
|
161
|
+
return [`${stmt.name}(${argsExpr});`];
|
|
161
162
|
}
|
|
162
|
-
return [`${ext}${stmt.name}.call();`];
|
|
163
163
|
|
|
164
|
+
// Otherwise treat as FB instance call: FB1();
|
|
165
|
+
let ext = "";
|
|
166
|
+
if (infb && fbVars.includes(stmt.name)) ext = "this.";
|
|
167
|
+
return [`${ext}${stmt.name}.call();`];
|
|
168
|
+
}
|
|
164
169
|
default:
|
|
165
170
|
return [`// Unsupported statement type: ${stmt.type}`];
|
|
166
171
|
}
|
|
@@ -162,13 +162,27 @@ if (peek(i)?.value === ':=') {
|
|
|
162
162
|
return { type: 'ASSIGN', left: lhs, right };
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
-
//
|
|
166
|
-
if (token.
|
|
167
|
-
const name = consume().value;
|
|
168
|
-
consume(); // (
|
|
169
|
-
|
|
165
|
+
// Call statement like: Foo(...);
|
|
166
|
+
if (token.type === 'IDENTIFIER' && peek(1)?.value === '(') {
|
|
167
|
+
const name = consume().value; // IDENTIFIER
|
|
168
|
+
consume(); // '('
|
|
169
|
+
|
|
170
|
+
const args = [];
|
|
171
|
+
let depth = 1;
|
|
172
|
+
|
|
173
|
+
while (peek() && depth > 0) {
|
|
174
|
+
const t = consume();
|
|
175
|
+
|
|
176
|
+
if (t.value === '(') depth++;
|
|
177
|
+
else if (t.value === ')') depth--;
|
|
178
|
+
|
|
179
|
+
if (depth > 0) args.push(t.value); // don't include final ')'
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
// optional semicolon
|
|
170
183
|
if (peek()?.value === ';') consume();
|
|
171
|
-
|
|
184
|
+
|
|
185
|
+
return { type: 'CALL', name, args };
|
|
172
186
|
}
|
|
173
187
|
|
|
174
188
|
consume(); // Skip unknown
|
|
@@ -36,7 +36,7 @@ export function tokenize(code) {
|
|
|
36
36
|
code = code.replace(/\(\*[\s\S]*?\*\)/g, '');
|
|
37
37
|
|
|
38
38
|
//const regex = /(%[IQM][A-Z]?[0-9]+(?:\.[0-9]+)?)|(:=)|([A-Za-z_]\w*\.\d+)|([A-Za-z_]\w*\.\w+)|([A-Za-z_]\w*)|(\d+)|([:;()<>+\-*/=])/g;
|
|
39
|
-
const regex = /(%[IQM][A-Z]*\d+(?:\.\d+)?)|(:=|>=|<=|<>|!=)|([A-Za-z_]\w*\.\d+)|([A-Za-z_]\w*\.\w+)|([A-Za-z_]\w*)|(\d+)|([<>+\-*/=;()
|
|
39
|
+
const regex = /(%[IQM][A-Z]*\d+(?:\.\d+)?)|(:=|>=|<=|<>|!=)|([A-Za-z_]\w*\.\d+)|([A-Za-z_]\w*\.\w+)|([A-Za-z_]\w*)|(\d+)|([<>+\-*/=;():,])/g;
|
|
40
40
|
|
|
41
41
|
while ((match = regex.exec(code)) !== null) {
|
|
42
42
|
const [_, address, compoundSymbol, bitIdentifier, propIdentifier, identifier, number, symbol] = match;
|
|
@@ -323,8 +323,12 @@ namespace Nodalis
|
|
|
323
323
|
public FunctionBlock(Engine engine, string className)
|
|
324
324
|
{
|
|
325
325
|
_engine = engine;
|
|
326
|
-
var constructor = engine.
|
|
327
|
-
|
|
326
|
+
var constructor = engine.Evaluate(className);
|
|
327
|
+
|
|
328
|
+
if (constructor.IsUndefined() || constructor.IsNull())
|
|
329
|
+
throw new InvalidOperationException($"JS constructor '{className}' was not found (Evaluate returned {constructor}).");
|
|
330
|
+
|
|
331
|
+
_jsObj = engine.Construct(constructor).AsObject();
|
|
328
332
|
}
|
|
329
333
|
/// <summary>
|
|
330
334
|
/// Sets the property of a functionblock.
|
|
@@ -347,8 +351,15 @@ namespace Nodalis
|
|
|
347
351
|
/// </summary>
|
|
348
352
|
public void Call()
|
|
349
353
|
{
|
|
350
|
-
var
|
|
351
|
-
|
|
354
|
+
var obj = _jsObj as ObjectInstance ?? _jsObj.AsObject();
|
|
355
|
+
|
|
356
|
+
var callVal = obj.Get("call");
|
|
357
|
+
|
|
358
|
+
if (callVal.IsUndefined() || callVal.IsNull())
|
|
359
|
+
throw new InvalidOperationException("JS instance has no 'call' property.");
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
callVal.Call(obj, Array.Empty<JsValue>());
|
|
352
363
|
}
|
|
353
364
|
}
|
|
354
365
|
|
|
@@ -442,7 +453,7 @@ namespace Nodalis
|
|
|
442
453
|
protected virtual IOClient? CreateClient(IOMap map)
|
|
443
454
|
{
|
|
444
455
|
IOClient client = null;
|
|
445
|
-
if (map.protocol
|
|
456
|
+
if (map.protocol.StartsWith("MODBUS"))
|
|
446
457
|
client = new ModbusClient();
|
|
447
458
|
else if (map.protocol.Equals("BACNET", StringComparison.InvariantCultureIgnoreCase)
|
|
448
459
|
|| map.protocol.Equals("BACNET-IP", StringComparison.InvariantCultureIgnoreCase))
|
|
@@ -691,14 +702,13 @@ namespace Nodalis
|
|
|
691
702
|
var key = args[0].AsString();
|
|
692
703
|
var jsCtor = args[1];
|
|
693
704
|
|
|
694
|
-
if (
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
return jsInstance;
|
|
699
|
-
}
|
|
705
|
+
if (_staticStore.TryGetValue(key, out var existing))
|
|
706
|
+
return existing;
|
|
707
|
+
|
|
708
|
+
var instance = JsEngine.Construct(jsCtor);
|
|
700
709
|
|
|
701
|
-
|
|
710
|
+
_staticStore[key] = instance;
|
|
711
|
+
return instance;
|
|
702
712
|
}, 2, funcFlags));
|
|
703
713
|
|
|
704
714
|
JsEngine.SetValue("resolve", new ClrFunction(JsEngine, "resolve", (thisObj, args) =>
|
|
@@ -857,26 +867,40 @@ namespace Nodalis
|
|
|
857
867
|
public long ET;
|
|
858
868
|
private bool lastIN = false;
|
|
859
869
|
private long start = 0;
|
|
860
|
-
|
|
870
|
+
private bool running = false;
|
|
861
871
|
public void call()
|
|
862
872
|
{
|
|
863
|
-
|
|
864
|
-
|
|
873
|
+
var now = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
|
|
874
|
+
|
|
875
|
+
// Rising edge starts the pulse
|
|
876
|
+
if (IN && !lastIN)
|
|
865
877
|
{
|
|
866
|
-
|
|
878
|
+
running = true;
|
|
879
|
+
start = now;
|
|
867
880
|
ET = 0;
|
|
868
|
-
start = 0;
|
|
869
881
|
}
|
|
870
|
-
|
|
882
|
+
|
|
883
|
+
lastIN = IN;
|
|
884
|
+
|
|
885
|
+
if (running)
|
|
871
886
|
{
|
|
872
|
-
|
|
887
|
+
ET = now - start;
|
|
888
|
+
|
|
889
|
+
if (ET >= PT)
|
|
890
|
+
{
|
|
891
|
+
Q = false;
|
|
892
|
+
running = false;
|
|
893
|
+
ET = PT; // clamp
|
|
894
|
+
}
|
|
895
|
+
else
|
|
896
|
+
{
|
|
897
|
+
Q = true;
|
|
898
|
+
}
|
|
873
899
|
}
|
|
874
|
-
else
|
|
900
|
+
else
|
|
875
901
|
{
|
|
876
|
-
|
|
877
|
-
ET =
|
|
878
|
-
if (PT >= ET) Q = true;
|
|
879
|
-
else lastIN = false;
|
|
902
|
+
Q = false;
|
|
903
|
+
ET = 0;
|
|
880
904
|
}
|
|
881
905
|
}
|
|
882
906
|
}
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
<PropertyGroup>
|
|
25
25
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
26
26
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <!-- optional -->
|
|
27
|
-
<Version>1.0.
|
|
27
|
+
<Version>1.0.9</Version>
|
|
28
28
|
<Authors>Nathan Skipper</Authors>
|
|
29
29
|
<Company>Montgomery Technology, Inc.</Company>
|
|
30
30
|
<PackageId>NodalisEngine</PackageId>
|
|
@@ -88,6 +88,14 @@ NodalisEngine is distributed under the Apache 2.0 license. See the headers insid
|
|
|
88
88
|
|
|
89
89
|
# Changelog
|
|
90
90
|
|
|
91
|
+
## [1.0.9] - 2026-02-12
|
|
92
|
+
|
|
93
|
+
- Fixed TP function block.
|
|
94
|
+
|
|
95
|
+
## [1.0.8] - 2026-02-11
|
|
96
|
+
|
|
97
|
+
- Fixed issue with constructing a FunctionBlock and calling "newStatic".
|
|
98
|
+
|
|
91
99
|
## [1.0.4] - 2025-02-06
|
|
92
100
|
|
|
93
101
|
- Added support for Bacnet-IP.
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.5.nupkg
ADDED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.6.nupkg
ADDED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.7.nupkg
ADDED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.8.nupkg
ADDED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/NodalisEngine.1.0.9.nupkg
ADDED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.deps.json
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
"compilationOptions": {},
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v8.0": {
|
|
9
|
-
"NodalisEngine/1.0.
|
|
9
|
+
"NodalisEngine/1.0.9": {
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"BACnet": "3.0.2",
|
|
12
12
|
"Jint": "4.4.2",
|
|
13
13
|
"OPCFoundation.NetStandard.Opc.Ua": "1.5.374.118",
|
|
14
14
|
"System.Runtime.InteropServices": "4.3.0",
|
|
15
|
-
"System.Text.Json": "10.0.
|
|
15
|
+
"System.Text.Json": "10.0.3"
|
|
16
16
|
},
|
|
17
17
|
"runtime": {
|
|
18
18
|
"NodalisEngine.dll": {}
|
|
@@ -584,11 +584,11 @@
|
|
|
584
584
|
"runtime.native.System": "4.0.0"
|
|
585
585
|
}
|
|
586
586
|
},
|
|
587
|
-
"System.IO.Pipelines/10.0.
|
|
587
|
+
"System.IO.Pipelines/10.0.3": {
|
|
588
588
|
"runtime": {
|
|
589
589
|
"lib/net8.0/System.IO.Pipelines.dll": {
|
|
590
590
|
"assemblyVersion": "10.0.0.0",
|
|
591
|
-
"fileVersion": "10.0.
|
|
591
|
+
"fileVersion": "10.0.326.7603"
|
|
592
592
|
}
|
|
593
593
|
}
|
|
594
594
|
},
|
|
@@ -1044,11 +1044,11 @@
|
|
|
1044
1044
|
"System.Text.Encoding": "4.3.0"
|
|
1045
1045
|
}
|
|
1046
1046
|
},
|
|
1047
|
-
"System.Text.Encodings.Web/10.0.
|
|
1047
|
+
"System.Text.Encodings.Web/10.0.3": {
|
|
1048
1048
|
"runtime": {
|
|
1049
1049
|
"lib/net8.0/System.Text.Encodings.Web.dll": {
|
|
1050
1050
|
"assemblyVersion": "10.0.0.0",
|
|
1051
|
-
"fileVersion": "10.0.
|
|
1051
|
+
"fileVersion": "10.0.326.7603"
|
|
1052
1052
|
}
|
|
1053
1053
|
},
|
|
1054
1054
|
"runtimeTargets": {
|
|
@@ -1056,19 +1056,19 @@
|
|
|
1056
1056
|
"rid": "browser",
|
|
1057
1057
|
"assetType": "runtime",
|
|
1058
1058
|
"assemblyVersion": "10.0.0.0",
|
|
1059
|
-
"fileVersion": "10.0.
|
|
1059
|
+
"fileVersion": "10.0.326.7603"
|
|
1060
1060
|
}
|
|
1061
1061
|
}
|
|
1062
1062
|
},
|
|
1063
|
-
"System.Text.Json/10.0.
|
|
1063
|
+
"System.Text.Json/10.0.3": {
|
|
1064
1064
|
"dependencies": {
|
|
1065
|
-
"System.IO.Pipelines": "10.0.
|
|
1066
|
-
"System.Text.Encodings.Web": "10.0.
|
|
1065
|
+
"System.IO.Pipelines": "10.0.3",
|
|
1066
|
+
"System.Text.Encodings.Web": "10.0.3"
|
|
1067
1067
|
},
|
|
1068
1068
|
"runtime": {
|
|
1069
1069
|
"lib/net8.0/System.Text.Json.dll": {
|
|
1070
1070
|
"assemblyVersion": "10.0.0.0",
|
|
1071
|
-
"fileVersion": "10.0.
|
|
1071
|
+
"fileVersion": "10.0.326.7603"
|
|
1072
1072
|
}
|
|
1073
1073
|
}
|
|
1074
1074
|
},
|
|
@@ -1164,7 +1164,7 @@
|
|
|
1164
1164
|
}
|
|
1165
1165
|
},
|
|
1166
1166
|
"libraries": {
|
|
1167
|
-
"NodalisEngine/1.0.
|
|
1167
|
+
"NodalisEngine/1.0.9": {
|
|
1168
1168
|
"type": "project",
|
|
1169
1169
|
"serviceable": false,
|
|
1170
1170
|
"sha512": ""
|
|
@@ -1547,12 +1547,12 @@
|
|
|
1547
1547
|
"path": "system.io.filesystem.watcher/4.0.0",
|
|
1548
1548
|
"hashPath": "system.io.filesystem.watcher.4.0.0.nupkg.sha512"
|
|
1549
1549
|
},
|
|
1550
|
-
"System.IO.Pipelines/10.0.
|
|
1550
|
+
"System.IO.Pipelines/10.0.3": {
|
|
1551
1551
|
"type": "package",
|
|
1552
1552
|
"serviceable": true,
|
|
1553
|
-
"sha512": "sha512-
|
|
1554
|
-
"path": "system.io.pipelines/10.0.
|
|
1555
|
-
"hashPath": "system.io.pipelines.10.0.
|
|
1553
|
+
"sha512": "sha512-WMxiA2jGdHnRBmoVK55YUq5VPaxW0Sg2frPtXV+urUMvpqHIga6lleV/YuryHIuGsAKVjQAjv6PrQ6IJpoLohQ==",
|
|
1554
|
+
"path": "system.io.pipelines/10.0.3",
|
|
1555
|
+
"hashPath": "system.io.pipelines.10.0.3.nupkg.sha512"
|
|
1556
1556
|
},
|
|
1557
1557
|
"System.IO.Ports/5.0.1": {
|
|
1558
1558
|
"type": "package",
|
|
@@ -1820,19 +1820,19 @@
|
|
|
1820
1820
|
"path": "system.text.encoding.extensions/4.0.11",
|
|
1821
1821
|
"hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
|
|
1822
1822
|
},
|
|
1823
|
-
"System.Text.Encodings.Web/10.0.
|
|
1823
|
+
"System.Text.Encodings.Web/10.0.3": {
|
|
1824
1824
|
"type": "package",
|
|
1825
1825
|
"serviceable": true,
|
|
1826
|
-
"sha512": "sha512-
|
|
1827
|
-
"path": "system.text.encodings.web/10.0.
|
|
1828
|
-
"hashPath": "system.text.encodings.web.10.0.
|
|
1826
|
+
"sha512": "sha512-l8QNBPp92bVzl9Kw8nNtm1uYRNNhUrdulZjM4a8YK/QGNa8z9utKsC0bDoPB+Vq8LOlbD3fIyGlabtz80jT7cw==",
|
|
1827
|
+
"path": "system.text.encodings.web/10.0.3",
|
|
1828
|
+
"hashPath": "system.text.encodings.web.10.0.3.nupkg.sha512"
|
|
1829
1829
|
},
|
|
1830
|
-
"System.Text.Json/10.0.
|
|
1830
|
+
"System.Text.Json/10.0.3": {
|
|
1831
1831
|
"type": "package",
|
|
1832
1832
|
"serviceable": true,
|
|
1833
|
-
"sha512": "sha512-
|
|
1834
|
-
"path": "system.text.json/10.0.
|
|
1835
|
-
"hashPath": "system.text.json.10.0.
|
|
1833
|
+
"sha512": "sha512-NTUt9DL+maqbgrIYCAmeZUbX0NoXaueySyjW/bdOlFdSUDC1l51XnsbVEuj5tuad12vdq5Sviskp9uMVGgCNLw==",
|
|
1834
|
+
"path": "system.text.json/10.0.3",
|
|
1835
|
+
"hashPath": "system.text.json.10.0.3.nupkg.sha512"
|
|
1836
1836
|
},
|
|
1837
1837
|
"System.Text.RegularExpressions/4.1.0": {
|
|
1838
1838
|
"type": "package",
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.dll
CHANGED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.pdb
CHANGED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/NodalisEngine.csproj.nuget.dgspec.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
},
|
|
6
6
|
"projects": {
|
|
7
7
|
"/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/NodalisEngine.csproj": {
|
|
8
|
-
"version": "1.0.
|
|
8
|
+
"version": "1.0.9",
|
|
9
9
|
"restore": {
|
|
10
10
|
"projectUniqueName": "/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/NodalisEngine.csproj",
|
|
11
11
|
"projectName": "NodalisEngine",
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/NodalisEngine.csproj.nuget.g.targets
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
2
2
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
3
|
<ImportGroup Condition=" '$(TargetFramework)' == 'net8.0' AND '$(ExcludeRestorePackageImports)' != 'true' ">
|
|
4
|
-
<Import Project="$(NuGetPackageRoot)system.text.json/10.0.
|
|
4
|
+
<Import Project="$(NuGetPackageRoot)system.text.json/10.0.3/buildTransitive/net8.0/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/10.0.3/buildTransitive/net8.0/System.Text.Json.targets')" />
|
|
5
5
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.1/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.1/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
|
6
6
|
</ImportGroup>
|
|
7
7
|
</Project>
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.5.nuspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
|
3
|
+
<metadata>
|
|
4
|
+
<id>NodalisEngine</id>
|
|
5
|
+
<version>1.0.5</version>
|
|
6
|
+
<authors>Nathan Skipper</authors>
|
|
7
|
+
<license type="expression">Apache-2.0</license>
|
|
8
|
+
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
|
|
9
|
+
<icon>nodalis.png</icon>
|
|
10
|
+
<readme>README.md</readme>
|
|
11
|
+
<projectUrl>https://github.com/montgomerytechal/nodalis-compiler</projectUrl>
|
|
12
|
+
<description>.NET implementation of the Nodalis PLC engine for use in running PLC programs that have been compiled to Javascript using the Nodalis Compiler.</description>
|
|
13
|
+
<tags>control engineering plc iec-61131-3</tags>
|
|
14
|
+
<repository type="git" url="https://github.com/montgomerytechal/nodalis-compiler" commit="2153e18d1aae3c18b56d9f075c716568b1b1020d" />
|
|
15
|
+
<dependencies>
|
|
16
|
+
<group targetFramework="net8.0">
|
|
17
|
+
<dependency id="BACnet" version="3.0.2" exclude="Build,Analyzers" />
|
|
18
|
+
<dependency id="Jint" version="4.4.2" exclude="Build,Analyzers" />
|
|
19
|
+
<dependency id="OPCFoundation.NetStandard.Opc.Ua" version="1.5.374.118" exclude="Build,Analyzers" />
|
|
20
|
+
<dependency id="System.Runtime.InteropServices" version="4.3.0" exclude="Build,Analyzers" />
|
|
21
|
+
<dependency id="System.Text.Json" version="10.0.3" exclude="Build,Analyzers" />
|
|
22
|
+
</group>
|
|
23
|
+
</dependencies>
|
|
24
|
+
</metadata>
|
|
25
|
+
<files>
|
|
26
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.dll" target="lib/net8.0/NodalisEngine.dll" />
|
|
27
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.xml" target="lib/net8.0/NodalisEngine.xml" />
|
|
28
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/README.md" target="/README.md" />
|
|
29
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/nodalis.png" target="/nodalis.png" />
|
|
30
|
+
</files>
|
|
31
|
+
</package>
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.6.nuspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
|
3
|
+
<metadata>
|
|
4
|
+
<id>NodalisEngine</id>
|
|
5
|
+
<version>1.0.6</version>
|
|
6
|
+
<authors>Nathan Skipper</authors>
|
|
7
|
+
<license type="expression">Apache-2.0</license>
|
|
8
|
+
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
|
|
9
|
+
<icon>nodalis.png</icon>
|
|
10
|
+
<readme>README.md</readme>
|
|
11
|
+
<projectUrl>https://github.com/montgomerytechal/nodalis-compiler</projectUrl>
|
|
12
|
+
<description>.NET implementation of the Nodalis PLC engine for use in running PLC programs that have been compiled to Javascript using the Nodalis Compiler.</description>
|
|
13
|
+
<tags>control engineering plc iec-61131-3</tags>
|
|
14
|
+
<repository type="git" url="https://github.com/montgomerytechal/nodalis-compiler" commit="6a060c814c1c5284aa3592217a37a7e5ffd17cff" />
|
|
15
|
+
<dependencies>
|
|
16
|
+
<group targetFramework="net8.0">
|
|
17
|
+
<dependency id="BACnet" version="3.0.2" exclude="Build,Analyzers" />
|
|
18
|
+
<dependency id="Jint" version="4.4.2" exclude="Build,Analyzers" />
|
|
19
|
+
<dependency id="OPCFoundation.NetStandard.Opc.Ua" version="1.5.374.118" exclude="Build,Analyzers" />
|
|
20
|
+
<dependency id="System.Runtime.InteropServices" version="4.3.0" exclude="Build,Analyzers" />
|
|
21
|
+
<dependency id="System.Text.Json" version="10.0.3" exclude="Build,Analyzers" />
|
|
22
|
+
</group>
|
|
23
|
+
</dependencies>
|
|
24
|
+
</metadata>
|
|
25
|
+
<files>
|
|
26
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.dll" target="lib/net8.0/NodalisEngine.dll" />
|
|
27
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.xml" target="lib/net8.0/NodalisEngine.xml" />
|
|
28
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/README.md" target="/README.md" />
|
|
29
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/nodalis.png" target="/nodalis.png" />
|
|
30
|
+
</files>
|
|
31
|
+
</package>
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.7.nuspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
|
3
|
+
<metadata>
|
|
4
|
+
<id>NodalisEngine</id>
|
|
5
|
+
<version>1.0.7</version>
|
|
6
|
+
<authors>Nathan Skipper</authors>
|
|
7
|
+
<license type="expression">Apache-2.0</license>
|
|
8
|
+
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
|
|
9
|
+
<icon>nodalis.png</icon>
|
|
10
|
+
<readme>README.md</readme>
|
|
11
|
+
<projectUrl>https://github.com/montgomerytechal/nodalis-compiler</projectUrl>
|
|
12
|
+
<description>.NET implementation of the Nodalis PLC engine for use in running PLC programs that have been compiled to Javascript using the Nodalis Compiler.</description>
|
|
13
|
+
<tags>control engineering plc iec-61131-3</tags>
|
|
14
|
+
<repository type="git" url="https://github.com/montgomerytechal/nodalis-compiler" commit="6a060c814c1c5284aa3592217a37a7e5ffd17cff" />
|
|
15
|
+
<dependencies>
|
|
16
|
+
<group targetFramework="net8.0">
|
|
17
|
+
<dependency id="BACnet" version="3.0.2" exclude="Build,Analyzers" />
|
|
18
|
+
<dependency id="Jint" version="4.4.2" exclude="Build,Analyzers" />
|
|
19
|
+
<dependency id="OPCFoundation.NetStandard.Opc.Ua" version="1.5.374.118" exclude="Build,Analyzers" />
|
|
20
|
+
<dependency id="System.Runtime.InteropServices" version="4.3.0" exclude="Build,Analyzers" />
|
|
21
|
+
<dependency id="System.Text.Json" version="10.0.3" exclude="Build,Analyzers" />
|
|
22
|
+
</group>
|
|
23
|
+
</dependencies>
|
|
24
|
+
</metadata>
|
|
25
|
+
<files>
|
|
26
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.dll" target="lib/net8.0/NodalisEngine.dll" />
|
|
27
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.xml" target="lib/net8.0/NodalisEngine.xml" />
|
|
28
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/README.md" target="/README.md" />
|
|
29
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/nodalis.png" target="/nodalis.png" />
|
|
30
|
+
</files>
|
|
31
|
+
</package>
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.8.nuspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
|
3
|
+
<metadata>
|
|
4
|
+
<id>NodalisEngine</id>
|
|
5
|
+
<version>1.0.8</version>
|
|
6
|
+
<authors>Nathan Skipper</authors>
|
|
7
|
+
<license type="expression">Apache-2.0</license>
|
|
8
|
+
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
|
|
9
|
+
<icon>nodalis.png</icon>
|
|
10
|
+
<readme>README.md</readme>
|
|
11
|
+
<projectUrl>https://github.com/montgomerytechal/nodalis-compiler</projectUrl>
|
|
12
|
+
<description>.NET implementation of the Nodalis PLC engine for use in running PLC programs that have been compiled to Javascript using the Nodalis Compiler.</description>
|
|
13
|
+
<tags>control engineering plc iec-61131-3</tags>
|
|
14
|
+
<repository type="git" url="https://github.com/montgomerytechal/nodalis-compiler" commit="6a060c814c1c5284aa3592217a37a7e5ffd17cff" />
|
|
15
|
+
<dependencies>
|
|
16
|
+
<group targetFramework="net8.0">
|
|
17
|
+
<dependency id="BACnet" version="3.0.2" exclude="Build,Analyzers" />
|
|
18
|
+
<dependency id="Jint" version="4.4.2" exclude="Build,Analyzers" />
|
|
19
|
+
<dependency id="OPCFoundation.NetStandard.Opc.Ua" version="1.5.374.118" exclude="Build,Analyzers" />
|
|
20
|
+
<dependency id="System.Runtime.InteropServices" version="4.3.0" exclude="Build,Analyzers" />
|
|
21
|
+
<dependency id="System.Text.Json" version="10.0.3" exclude="Build,Analyzers" />
|
|
22
|
+
</group>
|
|
23
|
+
</dependencies>
|
|
24
|
+
</metadata>
|
|
25
|
+
<files>
|
|
26
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.dll" target="lib/net8.0/NodalisEngine.dll" />
|
|
27
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.xml" target="lib/net8.0/NodalisEngine.xml" />
|
|
28
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/README.md" target="/README.md" />
|
|
29
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/nodalis.png" target="/nodalis.png" />
|
|
30
|
+
</files>
|
|
31
|
+
</package>
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/NodalisEngine.1.0.9.nuspec
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
|
3
|
+
<metadata>
|
|
4
|
+
<id>NodalisEngine</id>
|
|
5
|
+
<version>1.0.9</version>
|
|
6
|
+
<authors>Nathan Skipper</authors>
|
|
7
|
+
<license type="expression">Apache-2.0</license>
|
|
8
|
+
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
|
|
9
|
+
<icon>nodalis.png</icon>
|
|
10
|
+
<readme>README.md</readme>
|
|
11
|
+
<projectUrl>https://github.com/montgomerytechal/nodalis-compiler</projectUrl>
|
|
12
|
+
<description>.NET implementation of the Nodalis PLC engine for use in running PLC programs that have been compiled to Javascript using the Nodalis Compiler.</description>
|
|
13
|
+
<tags>control engineering plc iec-61131-3</tags>
|
|
14
|
+
<repository type="git" url="https://github.com/montgomerytechal/nodalis-compiler" commit="6a060c814c1c5284aa3592217a37a7e5ffd17cff" />
|
|
15
|
+
<dependencies>
|
|
16
|
+
<group targetFramework="net8.0">
|
|
17
|
+
<dependency id="BACnet" version="3.0.2" exclude="Build,Analyzers" />
|
|
18
|
+
<dependency id="Jint" version="4.4.2" exclude="Build,Analyzers" />
|
|
19
|
+
<dependency id="OPCFoundation.NetStandard.Opc.Ua" version="1.5.374.118" exclude="Build,Analyzers" />
|
|
20
|
+
<dependency id="System.Runtime.InteropServices" version="4.3.0" exclude="Build,Analyzers" />
|
|
21
|
+
<dependency id="System.Text.Json" version="10.0.3" exclude="Build,Analyzers" />
|
|
22
|
+
</group>
|
|
23
|
+
</dependencies>
|
|
24
|
+
</metadata>
|
|
25
|
+
<files>
|
|
26
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.dll" target="lib/net8.0/NodalisEngine.dll" />
|
|
27
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/bin/Release/net8.0/NodalisEngine.xml" target="lib/net8.0/NodalisEngine.xml" />
|
|
28
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/README.md" target="/README.md" />
|
|
29
|
+
<file src="/Users/nathanskipper/Projects/imperium-compiler/nodalis.png" target="/nodalis.png" />
|
|
30
|
+
</files>
|
|
31
|
+
</package>
|
|
@@ -14,11 +14,11 @@ using System.Reflection;
|
|
|
14
14
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
|
15
15
|
[assembly: System.Reflection.AssemblyDescriptionAttribute((".NET implementation of the Nodalis PLC engine for use in running PLC programs tha" +
|
|
16
16
|
"t have been compiled to Javascript using the Nodalis Compiler."))]
|
|
17
|
-
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.
|
|
18
|
-
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.
|
|
17
|
+
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.9.0")]
|
|
18
|
+
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.9+6a060c814c1c5284aa3592217a37a7e5ffd17cff")]
|
|
19
19
|
[assembly: System.Reflection.AssemblyProductAttribute("NodalisEngine")]
|
|
20
20
|
[assembly: System.Reflection.AssemblyTitleAttribute("NodalisEngine")]
|
|
21
|
-
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.
|
|
21
|
+
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.9.0")]
|
|
22
22
|
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/montgomerytechal/nodalis-compiler")]
|
|
23
23
|
|
|
24
24
|
// Generated by the MSBuild WriteCodeFragment class.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
0ac7547f719dfb079a6336176f478125230d41937d1f3cc097db73df74c6f97c
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
4cbfc908681a6ddcd99bb80ef2bb8d1b369a9985f3a1beb0fb6b30464e76e374
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.dll
CHANGED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/NodalisEngine.pdb
CHANGED
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"documents":{"/Users/nathanskipper/Projects/imperium-compiler/*":"https://raw.githubusercontent.com/montgomerytechal/nodalis-compiler/
|
|
1
|
+
{"documents":{"/Users/nathanskipper/Projects/imperium-compiler/*":"https://raw.githubusercontent.com/montgomerytechal/nodalis-compiler/6a060c814c1c5284aa3592217a37a7e5ffd17cff/*"}}
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/ref/NodalisEngine.dll
CHANGED
|
Binary file
|
package/src/compilers/support/jint/nodalis/NodalisEngine/obj/Release/net8.0/refint/NodalisEngine.dll
CHANGED
|
Binary file
|
|
@@ -935,7 +935,7 @@
|
|
|
935
935
|
}
|
|
936
936
|
}
|
|
937
937
|
},
|
|
938
|
-
"System.IO.Pipelines/10.0.
|
|
938
|
+
"System.IO.Pipelines/10.0.3": {
|
|
939
939
|
"type": "package",
|
|
940
940
|
"compile": {
|
|
941
941
|
"lib/net8.0/System.IO.Pipelines.dll": {
|
|
@@ -1775,7 +1775,7 @@
|
|
|
1775
1775
|
}
|
|
1776
1776
|
}
|
|
1777
1777
|
},
|
|
1778
|
-
"System.Text.Encodings.Web/10.0.
|
|
1778
|
+
"System.Text.Encodings.Web/10.0.3": {
|
|
1779
1779
|
"type": "package",
|
|
1780
1780
|
"compile": {
|
|
1781
1781
|
"lib/net8.0/System.Text.Encodings.Web.dll": {
|
|
@@ -1797,11 +1797,11 @@
|
|
|
1797
1797
|
}
|
|
1798
1798
|
}
|
|
1799
1799
|
},
|
|
1800
|
-
"System.Text.Json/10.0.
|
|
1800
|
+
"System.Text.Json/10.0.3": {
|
|
1801
1801
|
"type": "package",
|
|
1802
1802
|
"dependencies": {
|
|
1803
|
-
"System.IO.Pipelines": "10.0.
|
|
1804
|
-
"System.Text.Encodings.Web": "10.0.
|
|
1803
|
+
"System.IO.Pipelines": "10.0.3",
|
|
1804
|
+
"System.Text.Encodings.Web": "10.0.3"
|
|
1805
1805
|
},
|
|
1806
1806
|
"compile": {
|
|
1807
1807
|
"lib/net8.0/System.Text.Json.dll": {
|
|
@@ -3842,10 +3842,10 @@
|
|
|
3842
3842
|
"system.io.filesystem.watcher.nuspec"
|
|
3843
3843
|
]
|
|
3844
3844
|
},
|
|
3845
|
-
"System.IO.Pipelines/10.0.
|
|
3846
|
-
"sha512": "
|
|
3845
|
+
"System.IO.Pipelines/10.0.3": {
|
|
3846
|
+
"sha512": "WMxiA2jGdHnRBmoVK55YUq5VPaxW0Sg2frPtXV+urUMvpqHIga6lleV/YuryHIuGsAKVjQAjv6PrQ6IJpoLohQ==",
|
|
3847
3847
|
"type": "package",
|
|
3848
|
-
"path": "system.io.pipelines/10.0.
|
|
3848
|
+
"path": "system.io.pipelines/10.0.3",
|
|
3849
3849
|
"files": [
|
|
3850
3850
|
".nupkg.metadata",
|
|
3851
3851
|
".signature.p7s",
|
|
@@ -3866,7 +3866,7 @@
|
|
|
3866
3866
|
"lib/net9.0/System.IO.Pipelines.xml",
|
|
3867
3867
|
"lib/netstandard2.0/System.IO.Pipelines.dll",
|
|
3868
3868
|
"lib/netstandard2.0/System.IO.Pipelines.xml",
|
|
3869
|
-
"system.io.pipelines.10.0.
|
|
3869
|
+
"system.io.pipelines.10.0.3.nupkg.sha512",
|
|
3870
3870
|
"system.io.pipelines.nuspec",
|
|
3871
3871
|
"useSharedDesignerContext.txt"
|
|
3872
3872
|
]
|
|
@@ -5892,10 +5892,10 @@
|
|
|
5892
5892
|
"system.text.encoding.extensions.nuspec"
|
|
5893
5893
|
]
|
|
5894
5894
|
},
|
|
5895
|
-
"System.Text.Encodings.Web/10.0.
|
|
5896
|
-
"sha512": "
|
|
5895
|
+
"System.Text.Encodings.Web/10.0.3": {
|
|
5896
|
+
"sha512": "l8QNBPp92bVzl9Kw8nNtm1uYRNNhUrdulZjM4a8YK/QGNa8z9utKsC0bDoPB+Vq8LOlbD3fIyGlabtz80jT7cw==",
|
|
5897
5897
|
"type": "package",
|
|
5898
|
-
"path": "system.text.encodings.web/10.0.
|
|
5898
|
+
"path": "system.text.encodings.web/10.0.3",
|
|
5899
5899
|
"files": [
|
|
5900
5900
|
".nupkg.metadata",
|
|
5901
5901
|
".signature.p7s",
|
|
@@ -5924,15 +5924,15 @@
|
|
|
5924
5924
|
"runtimes/wasi/lib/net10.0/System.Text.Encodings.Web.xml",
|
|
5925
5925
|
"runtimes/win/lib/net9.0/System.Text.Encodings.Web.dll",
|
|
5926
5926
|
"runtimes/win/lib/net9.0/System.Text.Encodings.Web.xml",
|
|
5927
|
-
"system.text.encodings.web.10.0.
|
|
5927
|
+
"system.text.encodings.web.10.0.3.nupkg.sha512",
|
|
5928
5928
|
"system.text.encodings.web.nuspec",
|
|
5929
5929
|
"useSharedDesignerContext.txt"
|
|
5930
5930
|
]
|
|
5931
5931
|
},
|
|
5932
|
-
"System.Text.Json/10.0.
|
|
5933
|
-
"sha512": "
|
|
5932
|
+
"System.Text.Json/10.0.3": {
|
|
5933
|
+
"sha512": "NTUt9DL+maqbgrIYCAmeZUbX0NoXaueySyjW/bdOlFdSUDC1l51XnsbVEuj5tuad12vdq5Sviskp9uMVGgCNLw==",
|
|
5934
5934
|
"type": "package",
|
|
5935
|
-
"path": "system.text.json/10.0.
|
|
5935
|
+
"path": "system.text.json/10.0.3",
|
|
5936
5936
|
"files": [
|
|
5937
5937
|
".nupkg.metadata",
|
|
5938
5938
|
".signature.p7s",
|
|
@@ -5996,7 +5996,7 @@
|
|
|
5996
5996
|
"lib/net9.0/System.Text.Json.xml",
|
|
5997
5997
|
"lib/netstandard2.0/System.Text.Json.dll",
|
|
5998
5998
|
"lib/netstandard2.0/System.Text.Json.xml",
|
|
5999
|
-
"system.text.json.10.0.
|
|
5999
|
+
"system.text.json.10.0.3.nupkg.sha512",
|
|
6000
6000
|
"system.text.json.nuspec",
|
|
6001
6001
|
"useSharedDesignerContext.txt"
|
|
6002
6002
|
]
|
|
@@ -6528,7 +6528,7 @@
|
|
|
6528
6528
|
"/Users/nathanskipper/.nuget/packages/": {}
|
|
6529
6529
|
},
|
|
6530
6530
|
"project": {
|
|
6531
|
-
"version": "1.0.
|
|
6531
|
+
"version": "1.0.9",
|
|
6532
6532
|
"restore": {
|
|
6533
6533
|
"projectUniqueName": "/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/NodalisEngine.csproj",
|
|
6534
6534
|
"projectName": "NodalisEngine",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 2,
|
|
3
|
-
"dgSpecHash": "
|
|
3
|
+
"dgSpecHash": "h1RHbxgv6gE=",
|
|
4
4
|
"success": true,
|
|
5
5
|
"projectFilePath": "/Users/nathanskipper/Projects/imperium-compiler/src/compilers/support/jint/nodalis/NodalisEngine/NodalisEngine.csproj",
|
|
6
6
|
"expectedPackageFiles": [
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"/Users/nathanskipper/.nuget/packages/system.io.filesystem/4.0.1/system.io.filesystem.4.0.1.nupkg.sha512",
|
|
59
59
|
"/Users/nathanskipper/.nuget/packages/system.io.filesystem.primitives/4.0.1/system.io.filesystem.primitives.4.0.1.nupkg.sha512",
|
|
60
60
|
"/Users/nathanskipper/.nuget/packages/system.io.filesystem.watcher/4.0.0/system.io.filesystem.watcher.4.0.0.nupkg.sha512",
|
|
61
|
-
"/Users/nathanskipper/.nuget/packages/system.io.pipelines/10.0.
|
|
61
|
+
"/Users/nathanskipper/.nuget/packages/system.io.pipelines/10.0.3/system.io.pipelines.10.0.3.nupkg.sha512",
|
|
62
62
|
"/Users/nathanskipper/.nuget/packages/system.io.ports/5.0.1/system.io.ports.5.0.1.nupkg.sha512",
|
|
63
63
|
"/Users/nathanskipper/.nuget/packages/system.linq/4.1.0/system.linq.4.1.0.nupkg.sha512",
|
|
64
64
|
"/Users/nathanskipper/.nuget/packages/system.linq.expressions/4.1.0/system.linq.expressions.4.1.0.nupkg.sha512",
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
"/Users/nathanskipper/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
|
|
98
98
|
"/Users/nathanskipper/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
|
|
99
99
|
"/Users/nathanskipper/.nuget/packages/system.text.encoding.extensions/4.0.11/system.text.encoding.extensions.4.0.11.nupkg.sha512",
|
|
100
|
-
"/Users/nathanskipper/.nuget/packages/system.text.encodings.web/10.0.
|
|
101
|
-
"/Users/nathanskipper/.nuget/packages/system.text.json/10.0.
|
|
100
|
+
"/Users/nathanskipper/.nuget/packages/system.text.encodings.web/10.0.3/system.text.encodings.web.10.0.3.nupkg.sha512",
|
|
101
|
+
"/Users/nathanskipper/.nuget/packages/system.text.json/10.0.3/system.text.json.10.0.3.nupkg.sha512",
|
|
102
102
|
"/Users/nathanskipper/.nuget/packages/system.text.regularexpressions/4.1.0/system.text.regularexpressions.4.1.0.nupkg.sha512",
|
|
103
103
|
"/Users/nathanskipper/.nuget/packages/system.threading/4.0.11/system.threading.4.0.11.nupkg.sha512",
|
|
104
104
|
"/Users/nathanskipper/.nuget/packages/system.threading.overlapped/4.0.1/system.threading.overlapped.4.0.1.nupkg.sha512",
|