Skip to content

Commit 90a3928

Browse files
committed
Add Environ () emulator
Add Shell() interceptor Add CreateObject() interceptor
1 parent e968fd8 commit 90a3928

File tree

81 files changed

+35994
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+35994
-75
lines changed

Resources/samples/sample_11.txt

Lines changed: 208 additions & 0 deletions
Large diffs are not rendered by default.

Sources/vbSparkle.Console/Properties/launchSettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"Sample_7": {
88
"commandName": "Project",
9-
"commandLineArgs": "-p $(SolutionDir)\\Resources\\samples\\sample_7.txt"
9+
"commandLineArgs": "-p $(SolutionDir)\\Resources\\samples\\sample_11.txt"
1010
},
1111
"Sample_10": {
1212
"commandName": "Project",

Sources/vbSparkle.Console/vbSparkle.CLI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<StartupObject>vbSparkle.CLI.Program</StartupObject>
77
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
88
<Authors>Sylvain Bruyere, Airbus CERT</Authors>

Sources/vbSparkle/LanguageStatements/Blocks/VbCaseStatement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using System.Linq;
33
using System.Text;
4-
using static vbSparkle.VBScriptParser;
4+
using static VBScriptParser;
55

66
namespace vbSparkle
77
{

Sources/vbSparkle/LanguageStatements/Blocks/VbCondExpStatement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Linq;
2-
using static vbSparkle.VBScriptParser;
2+
using static VBScriptParser;
33

44
namespace vbSparkle
55
{

Sources/vbSparkle/LanguageStatements/Blocks/VbDoLoopStatement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using System.Text;
2-
using static vbSparkle.VBScriptParser;
2+
using static VBScriptParser;
33

44
namespace vbSparkle
55
{

Sources/vbSparkle/LanguageStatements/Blocks/VbForEachStatement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Linq;
22
using System.Text;
3-
using static vbSparkle.VBScriptParser;
3+
using static VBScriptParser;
44

55
namespace vbSparkle
66
{

Sources/vbSparkle/LanguageStatements/Blocks/VbForNextStatement.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Collections.Generic;
22
using System.Linq;
33
using System.Text;
4-
using static vbSparkle.VBScriptParser;
4+
using static VBScriptParser;
55

66
namespace vbSparkle
77
{

Sources/vbSparkle/LanguageStatements/Blocks/VbIfBlockStmtContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Text;
22
using vbSparkle.NativeMethods;
3-
using static vbSparkle.VBScriptParser;
3+
using static VBScriptParser;
44

55
namespace vbSparkle
66
{

Sources/vbSparkle/LanguageStatements/Blocks/VbIfConditionStmtContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using vbSparkle.EvaluationObjects;
22
using vbSparkle.NativeMethods;
3-
using static vbSparkle.VBScriptParser;
3+
using static VBScriptParser;
44

55
namespace vbSparkle
66
{

0 commit comments

Comments
 (0)