@codemuster/win32-x64 0.2.8 → 0.2.9
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/bin/CodeMuster.Application.dll +0 -0
- package/bin/CodeMuster.Application.xml +23 -14
- package/bin/CodeMuster.Domain.dll +0 -0
- package/bin/CodeMuster.Domain.xml +9 -3
- package/bin/CodeMuster.Infrastructure.dll +0 -0
- package/bin/CodeMuster.Mapping.CSharp.dll +0 -0
- package/bin/CodeMuster.Mapping.TypeScript.dll +0 -0
- package/bin/codemuster.deps.json +30 -30
- package/bin/codemuster.dll +0 -0
- package/bin/codemuster.exe +0 -0
- package/package.json +1 -1
|
Binary file
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
<member name="T:CodeMuster.Application.Config">
|
|
71
71
|
<summary>The committed per-repo configuration (D04).</summary>
|
|
72
72
|
<param name="Lenses">Named lenses; at least one is expected.</param>
|
|
73
|
-
<param name="SliceTokenBudget">Approximate tokens of code
|
|
73
|
+
<param name="SliceTokenBudget">Approximate tokens of code shown in full: oversized whole-file packs are skipped, and farther slice members shrink to signatures (D07).</param>
|
|
74
74
|
<param name="ResolutionThreshold">Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</param>
|
|
75
75
|
<param name="Verify">Whether every recorded finding gets a verify unit, costing about one more agent call per finding (D27, D28).</param>
|
|
76
76
|
<param name="Vulnerabilities">Whether <c>scan</c> runs each ecosystem's audit tool over the repository's manifests (D38); costs no agent calls.</param>
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
<member name="M:CodeMuster.Application.Config.#ctor(System.Collections.Generic.IReadOnlyList{CodeMuster.Application.Lens},System.Int32,System.Double,System.Boolean,System.Boolean)">
|
|
79
79
|
<summary>The committed per-repo configuration (D04).</summary>
|
|
80
80
|
<param name="Lenses">Named lenses; at least one is expected.</param>
|
|
81
|
-
<param name="SliceTokenBudget">Approximate tokens of code
|
|
81
|
+
<param name="SliceTokenBudget">Approximate tokens of code shown in full: oversized whole-file packs are skipped, and farther slice members shrink to signatures (D07).</param>
|
|
82
82
|
<param name="ResolutionThreshold">Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</param>
|
|
83
83
|
<param name="Verify">Whether every recorded finding gets a verify unit, costing about one more agent call per finding (D27, D28).</param>
|
|
84
84
|
<param name="Vulnerabilities">Whether <c>scan</c> runs each ecosystem's audit tool over the repository's manifests (D38); costs no agent calls.</param>
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
<summary>Named lenses; at least one is expected.</summary>
|
|
88
88
|
</member>
|
|
89
89
|
<member name="P:CodeMuster.Application.Config.SliceTokenBudget">
|
|
90
|
-
<summary>Approximate tokens of code
|
|
90
|
+
<summary>Approximate tokens of code shown in full: oversized whole-file packs are skipped, and farther slice members shrink to signatures (D07).</summary>
|
|
91
91
|
</member>
|
|
92
92
|
<member name="P:CodeMuster.Application.Config.ResolutionThreshold">
|
|
93
93
|
<summary>Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</summary>
|
|
@@ -436,6 +436,9 @@
|
|
|
436
436
|
<member name="F:CodeMuster.Application.DoneOutcome.InvalidResponse">
|
|
437
437
|
<summary>The response was not valid JSON for the schema; a failed analysis was stored and the unit is Failed (D10).</summary>
|
|
438
438
|
</member>
|
|
439
|
+
<member name="F:CodeMuster.Application.DoneOutcome.Skipped">
|
|
440
|
+
<summary>The unit was skipped without an agent call because its pack exceeded the budget.</summary>
|
|
441
|
+
</member>
|
|
439
442
|
<member name="T:CodeMuster.Application.DoneResult">
|
|
440
443
|
<summary>The outcome of <see cref="T:CodeMuster.Application.Done"/> and a one-line message for the console.</summary>
|
|
441
444
|
<param name="Outcome">What happened.</param>
|
|
@@ -686,7 +689,7 @@
|
|
|
686
689
|
<member name="T:CodeMuster.Application.Next">
|
|
687
690
|
<summary>Hands out the next units that need work, each as one markdown pack (D01). A verify unit's pack asks the model to refute its finding instead of auditing (D27).</summary>
|
|
688
691
|
</member>
|
|
689
|
-
<member name="M:CodeMuster.Application.Next.#ctor(CodeMuster.Domain.ILedger,CodeMuster.Domain.ISourceTree,CodeMuster.Application.Config,System.Boolean,System.Nullable{CodeMuster.Domain.UnitKind},System.String)">
|
|
692
|
+
<member name="M:CodeMuster.Application.Next.#ctor(CodeMuster.Domain.ILedger,CodeMuster.Domain.ISourceTree,CodeMuster.Application.Config,System.Boolean,System.Nullable{CodeMuster.Domain.UnitKind},System.String,System.IProgress{System.String})">
|
|
690
693
|
<summary>Hands out the next units that need work, each as one markdown pack (D01). A verify unit's pack asks the model to refute its finding instead of auditing (D27).</summary>
|
|
691
694
|
</member>
|
|
692
695
|
<member name="M:CodeMuster.Application.Next.RunAsync(System.Int32,System.Threading.CancellationToken)">
|
|
@@ -819,22 +822,22 @@
|
|
|
819
822
|
<param name="UnitId">The unit attempted.</param>
|
|
820
823
|
<param name="Kind">The unit's kind.</param>
|
|
821
824
|
<param name="Key">The unit's short human name, for the console.</param>
|
|
822
|
-
<param name="Attempt">How many times this run has tried the unit, counting this one.</param>
|
|
823
|
-
<param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed.</param>
|
|
825
|
+
<param name="Attempt">How many times this run has tried the unit, counting this one; zero for a skipped pack.</param>
|
|
826
|
+
<param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed, Skipped when the pack exceeded the budget.</param>
|
|
824
827
|
<param name="Message">One line for the console: the Done message, the adapter error, or why the run gave up.</param>
|
|
825
828
|
<param name="Completed">Units recorded so far this run.</param>
|
|
826
|
-
<param name="Total">Units recorded so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
|
|
829
|
+
<param name="Total">Units recorded or skipped so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
|
|
827
830
|
</member>
|
|
828
831
|
<member name="M:CodeMuster.Application.RunProgress.#ctor(System.String,CodeMuster.Domain.UnitKind,System.String,System.Int32,CodeMuster.Application.DoneOutcome,System.String,System.Int32,System.Int32)">
|
|
829
832
|
<summary>One attempt on one unit, reported by <see cref="T:CodeMuster.Application.Run"/> as soon as it finishes.</summary>
|
|
830
833
|
<param name="UnitId">The unit attempted.</param>
|
|
831
834
|
<param name="Kind">The unit's kind.</param>
|
|
832
835
|
<param name="Key">The unit's short human name, for the console.</param>
|
|
833
|
-
<param name="Attempt">How many times this run has tried the unit, counting this one.</param>
|
|
834
|
-
<param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed.</param>
|
|
836
|
+
<param name="Attempt">How many times this run has tried the unit, counting this one; zero for a skipped pack.</param>
|
|
837
|
+
<param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed, Skipped when the pack exceeded the budget.</param>
|
|
835
838
|
<param name="Message">One line for the console: the Done message, the adapter error, or why the run gave up.</param>
|
|
836
839
|
<param name="Completed">Units recorded so far this run.</param>
|
|
837
|
-
<param name="Total">Units recorded so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
|
|
840
|
+
<param name="Total">Units recorded or skipped so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
|
|
838
841
|
</member>
|
|
839
842
|
<member name="P:CodeMuster.Application.RunProgress.UnitId">
|
|
840
843
|
<summary>The unit attempted.</summary>
|
|
@@ -846,10 +849,10 @@
|
|
|
846
849
|
<summary>The unit's short human name, for the console.</summary>
|
|
847
850
|
</member>
|
|
848
851
|
<member name="P:CodeMuster.Application.RunProgress.Attempt">
|
|
849
|
-
<summary>How many times this run has tried the unit, counting this one.</summary>
|
|
852
|
+
<summary>How many times this run has tried the unit, counting this one; zero for a skipped pack.</summary>
|
|
850
853
|
</member>
|
|
851
854
|
<member name="P:CodeMuster.Application.RunProgress.Outcome">
|
|
852
|
-
<summary>What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed.</summary>
|
|
855
|
+
<summary>What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed, Skipped when the pack exceeded the budget.</summary>
|
|
853
856
|
</member>
|
|
854
857
|
<member name="P:CodeMuster.Application.RunProgress.Message">
|
|
855
858
|
<summary>One line for the console: the Done message, the adapter error, or why the run gave up.</summary>
|
|
@@ -858,7 +861,7 @@
|
|
|
858
861
|
<summary>Units recorded so far this run.</summary>
|
|
859
862
|
</member>
|
|
860
863
|
<member name="P:CodeMuster.Application.RunProgress.Total">
|
|
861
|
-
<summary>Units recorded so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</summary>
|
|
864
|
+
<summary>Units recorded or skipped so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</summary>
|
|
862
865
|
</member>
|
|
863
866
|
<member name="T:CodeMuster.Application.RunResult">
|
|
864
867
|
<summary>How a <see cref="T:CodeMuster.Application.Run"/> ended.</summary>
|
|
@@ -881,6 +884,9 @@
|
|
|
881
884
|
<member name="P:CodeMuster.Application.RunResult.Cancelled">
|
|
882
885
|
<summary>True when the run stopped because its token was cancelled; in-flight units were left as they were.</summary>
|
|
883
886
|
</member>
|
|
887
|
+
<member name="P:CodeMuster.Application.RunResult.Skipped">
|
|
888
|
+
<summary>Units skipped for exceeding the pack budget, without spending agent attempts.</summary>
|
|
889
|
+
</member>
|
|
884
890
|
<member name="T:CodeMuster.Application.Scan">
|
|
885
891
|
<summary>
|
|
886
892
|
Discovers the tree, refreshes file rows through the stat cache (D05), plans units, retires every live unit the plan no longer holds, and records a <see cref="T:CodeMuster.Domain.ScanRun"/>.
|
|
@@ -901,7 +907,7 @@
|
|
|
901
907
|
<summary>Runs one scan, in slice mode when mappers were given.</summary>
|
|
902
908
|
</member>
|
|
903
909
|
<member name="M:CodeMuster.Application.Scan.AuditPaths(System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.FileRecord})">
|
|
904
|
-
<summary>Files the audit may look at: everything not excluded, plus
|
|
910
|
+
<summary>Files the audit may look at: everything not excluded, plus data manifests and lockfiles, which are excluded as code but are exactly what the audit tools read (D38).</summary>
|
|
905
911
|
</member>
|
|
906
912
|
<member name="T:CodeMuster.Application.ScanResult">
|
|
907
913
|
<summary>What one <see cref="T:CodeMuster.Application.Scan"/> found and changed.</summary>
|
|
@@ -1104,6 +1110,9 @@
|
|
|
1104
1110
|
<member name="P:CodeMuster.Application.StatusReport.VulnerablePackages">
|
|
1105
1111
|
<summary>Outstanding vulnerable packages by severity, from the last dependency audit (D38).</summary>
|
|
1106
1112
|
</member>
|
|
1113
|
+
<member name="P:CodeMuster.Application.StatusReport.Skipped">
|
|
1114
|
+
<summary>Units skipped without being analyzed because their pack exceeded the budget.</summary>
|
|
1115
|
+
</member>
|
|
1107
1116
|
<member name="P:CodeMuster.Application.StatusReport.UxStatus">
|
|
1108
1117
|
<summary>Browser review applicability and recorded evidence, separate from code coverage.</summary>
|
|
1109
1118
|
</member>
|
|
Binary file
|
|
@@ -623,6 +623,9 @@
|
|
|
623
623
|
<member name="M:CodeMuster.Domain.ILedger.NextAsync(System.Int32,System.Nullable{CodeMuster.Domain.UnitKind},System.String,System.Threading.CancellationToken)">
|
|
624
624
|
<summary>Up to <paramref name="batch"/> units that need work (pending, stale, or failed), only of <paramref name="kind"/> when it is given, oldest first by insertion order. Dependencies are excluded; fixes require explicit kind selection.</summary>
|
|
625
625
|
</member>
|
|
626
|
+
<member name="M:CodeMuster.Domain.ILedger.SkipUnitAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
|
|
627
|
+
<summary>Marks the matching current unit skipped with its reason, preserving analyses, findings and members.</summary>
|
|
628
|
+
</member>
|
|
626
629
|
<member name="M:CodeMuster.Domain.ILedger.RecordAnalysisAsync(CodeMuster.Domain.Analysis,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.Finding},System.Threading.CancellationToken,CodeMuster.Domain.VerifyResponse)">
|
|
627
630
|
<summary>Stores an analysis and its findings atomically and moves the unit to Done (with summary, summary hash, and lens hash) or Failed.</summary>
|
|
628
631
|
</member>
|
|
@@ -907,7 +910,7 @@
|
|
|
907
910
|
<param name="Status">Where the unit stands in the loop.</param>
|
|
908
911
|
<param name="Fidelity">Trust in the map that built it.</param>
|
|
909
912
|
<param name="LensHash">Hash of the lenses the last successful analysis used, or null.</param>
|
|
910
|
-
<param name="Summary">One-line summary from the last successful analysis.</param>
|
|
913
|
+
<param name="Summary">One-line summary from the last successful analysis, or the current skip reason.</param>
|
|
911
914
|
<param name="SummaryHash">Fingerprint the summary was generated from.</param>
|
|
912
915
|
</member>
|
|
913
916
|
<member name="M:CodeMuster.Domain.Unit.#ctor(System.String,CodeMuster.Domain.UnitKind,System.String,System.String,CodeMuster.Domain.UnitStatus,CodeMuster.Domain.Fidelity,System.String,System.String,System.String)">
|
|
@@ -919,7 +922,7 @@
|
|
|
919
922
|
<param name="Status">Where the unit stands in the loop.</param>
|
|
920
923
|
<param name="Fidelity">Trust in the map that built it.</param>
|
|
921
924
|
<param name="LensHash">Hash of the lenses the last successful analysis used, or null.</param>
|
|
922
|
-
<param name="Summary">One-line summary from the last successful analysis.</param>
|
|
925
|
+
<param name="Summary">One-line summary from the last successful analysis, or the current skip reason.</param>
|
|
923
926
|
<param name="SummaryHash">Fingerprint the summary was generated from.</param>
|
|
924
927
|
</member>
|
|
925
928
|
<member name="P:CodeMuster.Domain.Unit.Id">
|
|
@@ -944,7 +947,7 @@
|
|
|
944
947
|
<summary>Hash of the lenses the last successful analysis used, or null.</summary>
|
|
945
948
|
</member>
|
|
946
949
|
<member name="P:CodeMuster.Domain.Unit.Summary">
|
|
947
|
-
<summary>One-line summary from the last successful analysis.</summary>
|
|
950
|
+
<summary>One-line summary from the last successful analysis, or the current skip reason.</summary>
|
|
948
951
|
</member>
|
|
949
952
|
<member name="P:CodeMuster.Domain.Unit.SummaryHash">
|
|
950
953
|
<summary>Fingerprint the summary was generated from.</summary>
|
|
@@ -1098,6 +1101,9 @@
|
|
|
1098
1101
|
<member name="F:CodeMuster.Domain.UnitStatus.Retired">
|
|
1099
1102
|
<summary>No longer part of the tree; kept for history, never handed out.</summary>
|
|
1100
1103
|
</member>
|
|
1104
|
+
<member name="F:CodeMuster.Domain.UnitStatus.Skipped">
|
|
1105
|
+
<summary>Not reviewed because its pack exceeded the budget; requeued by scan or force.</summary>
|
|
1106
|
+
</member>
|
|
1101
1107
|
<member name="T:CodeMuster.Domain.Verdict">
|
|
1102
1108
|
<summary>What a verify unit concluded about one finding.</summary>
|
|
1103
1109
|
</member>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/codemuster.deps.json
CHANGED
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v10.0": {},
|
|
9
9
|
".NETCoreApp,Version=v10.0/win-x64": {
|
|
10
|
-
"codemuster/0.2.
|
|
10
|
+
"codemuster/0.2.9": {
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"CodeMuster.Application": "0.2.
|
|
13
|
-
"CodeMuster.Infrastructure": "0.2.
|
|
14
|
-
"CodeMuster.Mapping.CSharp": "0.2.
|
|
15
|
-
"CodeMuster.Mapping.TypeScript": "0.2.
|
|
12
|
+
"CodeMuster.Application": "0.2.9",
|
|
13
|
+
"CodeMuster.Infrastructure": "0.2.9",
|
|
14
|
+
"CodeMuster.Mapping.CSharp": "0.2.9",
|
|
15
|
+
"CodeMuster.Mapping.TypeScript": "0.2.9",
|
|
16
16
|
"runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "10.0.12"
|
|
17
17
|
},
|
|
18
18
|
"runtime": {
|
|
@@ -1036,65 +1036,65 @@
|
|
|
1036
1036
|
}
|
|
1037
1037
|
}
|
|
1038
1038
|
},
|
|
1039
|
-
"CodeMuster.Application/0.2.
|
|
1039
|
+
"CodeMuster.Application/0.2.9": {
|
|
1040
1040
|
"dependencies": {
|
|
1041
|
-
"CodeMuster.Domain": "0.2.
|
|
1041
|
+
"CodeMuster.Domain": "0.2.9"
|
|
1042
1042
|
},
|
|
1043
1043
|
"runtime": {
|
|
1044
1044
|
"CodeMuster.Application.dll": {
|
|
1045
|
-
"assemblyVersion": "0.2.
|
|
1046
|
-
"fileVersion": "0.2.
|
|
1045
|
+
"assemblyVersion": "0.2.9.0",
|
|
1046
|
+
"fileVersion": "0.2.9.0"
|
|
1047
1047
|
}
|
|
1048
1048
|
}
|
|
1049
1049
|
},
|
|
1050
|
-
"CodeMuster.Domain/0.2.
|
|
1050
|
+
"CodeMuster.Domain/0.2.9": {
|
|
1051
1051
|
"runtime": {
|
|
1052
1052
|
"CodeMuster.Domain.dll": {
|
|
1053
|
-
"assemblyVersion": "0.2.
|
|
1054
|
-
"fileVersion": "0.2.
|
|
1053
|
+
"assemblyVersion": "0.2.9.0",
|
|
1054
|
+
"fileVersion": "0.2.9.0"
|
|
1055
1055
|
}
|
|
1056
1056
|
}
|
|
1057
1057
|
},
|
|
1058
|
-
"CodeMuster.Infrastructure/0.2.
|
|
1058
|
+
"CodeMuster.Infrastructure/0.2.9": {
|
|
1059
1059
|
"dependencies": {
|
|
1060
|
-
"CodeMuster.Domain": "0.2.
|
|
1060
|
+
"CodeMuster.Domain": "0.2.9",
|
|
1061
1061
|
"Microsoft.Data.Sqlite": "10.0.12"
|
|
1062
1062
|
},
|
|
1063
1063
|
"runtime": {
|
|
1064
1064
|
"CodeMuster.Infrastructure.dll": {
|
|
1065
|
-
"assemblyVersion": "0.2.
|
|
1066
|
-
"fileVersion": "0.2.
|
|
1065
|
+
"assemblyVersion": "0.2.9.0",
|
|
1066
|
+
"fileVersion": "0.2.9.0"
|
|
1067
1067
|
}
|
|
1068
1068
|
}
|
|
1069
1069
|
},
|
|
1070
|
-
"CodeMuster.Mapping.CSharp/0.2.
|
|
1070
|
+
"CodeMuster.Mapping.CSharp/0.2.9": {
|
|
1071
1071
|
"dependencies": {
|
|
1072
|
-
"CodeMuster.Domain": "0.2.
|
|
1072
|
+
"CodeMuster.Domain": "0.2.9",
|
|
1073
1073
|
"Microsoft.CodeAnalysis.CSharp.Workspaces": "5.9.0",
|
|
1074
1074
|
"Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.9.0"
|
|
1075
1075
|
},
|
|
1076
1076
|
"runtime": {
|
|
1077
1077
|
"CodeMuster.Mapping.CSharp.dll": {
|
|
1078
|
-
"assemblyVersion": "0.2.
|
|
1079
|
-
"fileVersion": "0.2.
|
|
1078
|
+
"assemblyVersion": "0.2.9.0",
|
|
1079
|
+
"fileVersion": "0.2.9.0"
|
|
1080
1080
|
}
|
|
1081
1081
|
}
|
|
1082
1082
|
},
|
|
1083
|
-
"CodeMuster.Mapping.TypeScript/0.2.
|
|
1083
|
+
"CodeMuster.Mapping.TypeScript/0.2.9": {
|
|
1084
1084
|
"dependencies": {
|
|
1085
|
-
"CodeMuster.Domain": "0.2.
|
|
1085
|
+
"CodeMuster.Domain": "0.2.9"
|
|
1086
1086
|
},
|
|
1087
1087
|
"runtime": {
|
|
1088
1088
|
"CodeMuster.Mapping.TypeScript.dll": {
|
|
1089
|
-
"assemblyVersion": "0.2.
|
|
1090
|
-
"fileVersion": "0.2.
|
|
1089
|
+
"assemblyVersion": "0.2.9.0",
|
|
1090
|
+
"fileVersion": "0.2.9.0"
|
|
1091
1091
|
}
|
|
1092
1092
|
}
|
|
1093
1093
|
}
|
|
1094
1094
|
}
|
|
1095
1095
|
},
|
|
1096
1096
|
"libraries": {
|
|
1097
|
-
"codemuster/0.2.
|
|
1097
|
+
"codemuster/0.2.9": {
|
|
1098
1098
|
"type": "project",
|
|
1099
1099
|
"serviceable": false,
|
|
1100
1100
|
"sha512": ""
|
|
@@ -1286,27 +1286,27 @@
|
|
|
1286
1286
|
"path": "system.composition.typedparts/10.0.1",
|
|
1287
1287
|
"hashPath": "system.composition.typedparts.10.0.1.nupkg.sha512"
|
|
1288
1288
|
},
|
|
1289
|
-
"CodeMuster.Application/0.2.
|
|
1289
|
+
"CodeMuster.Application/0.2.9": {
|
|
1290
1290
|
"type": "project",
|
|
1291
1291
|
"serviceable": false,
|
|
1292
1292
|
"sha512": ""
|
|
1293
1293
|
},
|
|
1294
|
-
"CodeMuster.Domain/0.2.
|
|
1294
|
+
"CodeMuster.Domain/0.2.9": {
|
|
1295
1295
|
"type": "project",
|
|
1296
1296
|
"serviceable": false,
|
|
1297
1297
|
"sha512": ""
|
|
1298
1298
|
},
|
|
1299
|
-
"CodeMuster.Infrastructure/0.2.
|
|
1299
|
+
"CodeMuster.Infrastructure/0.2.9": {
|
|
1300
1300
|
"type": "project",
|
|
1301
1301
|
"serviceable": false,
|
|
1302
1302
|
"sha512": ""
|
|
1303
1303
|
},
|
|
1304
|
-
"CodeMuster.Mapping.CSharp/0.2.
|
|
1304
|
+
"CodeMuster.Mapping.CSharp/0.2.9": {
|
|
1305
1305
|
"type": "project",
|
|
1306
1306
|
"serviceable": false,
|
|
1307
1307
|
"sha512": ""
|
|
1308
1308
|
},
|
|
1309
|
-
"CodeMuster.Mapping.TypeScript/0.2.
|
|
1309
|
+
"CodeMuster.Mapping.TypeScript/0.2.9": {
|
|
1310
1310
|
"type": "project",
|
|
1311
1311
|
"serviceable": false,
|
|
1312
1312
|
"sha512": ""
|
package/bin/codemuster.dll
CHANGED
|
Binary file
|
package/bin/codemuster.exe
CHANGED
|
Binary file
|