@@ -126,7 +126,7 @@ public void SimplePublishDllTest()
126
126
var dllPath = Path . Combine ( "publish" , "main.dll" ) ;
127
127
var dllRunResult = ScriptTestRunner . Default . Execute ( $ "exec { dllPath } ", workspaceFolder . Path ) ;
128
128
129
- Assert . Equal ( 0 , dllRunResult . exitCode ) ;
129
+ Assert . Equal ( 0 , dllRunResult . ExitCode ) ;
130
130
}
131
131
132
132
[ Fact ]
@@ -143,7 +143,7 @@ public void SimplePublishDllFromCurrentDirectoryTest()
143
143
144
144
var dllRunResult = ScriptTestRunner . Default . Execute ( $ "exec { dllPath } ", workspaceFolder . Path ) ;
145
145
146
- Assert . Equal ( 0 , dllRunResult . exitCode ) ;
146
+ Assert . Equal ( 0 , dllRunResult . ExitCode ) ;
147
147
}
148
148
149
149
[ Fact ]
@@ -160,7 +160,7 @@ public void SimplePublishDllToOtherFolderTest()
160
160
var dllPath = Path . Combine ( publishFolder . Path , "main.dll" ) ;
161
161
var dllRunResult = ScriptTestRunner . Default . Execute ( $ "exec { dllPath } ", publishFolder . Path ) ;
162
162
163
- Assert . Equal ( 0 , dllRunResult . exitCode ) ;
163
+ Assert . Equal ( 0 , dllRunResult . ExitCode ) ;
164
164
}
165
165
166
166
[ Fact ]
@@ -178,7 +178,7 @@ public void CustomDllNameTest()
178
178
var dllPath = Path . Combine ( workspaceFolder . Path , "publish" , assemblyName ) ;
179
179
var dllRunResult = ScriptTestRunner . Default . Execute ( $ "exec { dllPath } ", workspaceFolder . Path ) ;
180
180
181
- Assert . Equal ( 0 , dllRunResult . exitCode ) ;
181
+ Assert . Equal ( 0 , dllRunResult . ExitCode ) ;
182
182
}
183
183
184
184
[ Fact ]
@@ -211,8 +211,8 @@ public void DllWithArgsTests()
211
211
var dllPath = Path . Combine ( workspaceFolder . Path , "publish" , "main.dll" ) ;
212
212
var dllRunResult = ScriptTestRunner . Default . Execute ( $ "exec { dllPath } -- w o r l d", workspaceFolder . Path ) ;
213
213
214
- Assert . Equal ( 0 , dllRunResult . exitCode ) ;
215
- Assert . Contains ( "Hello world" , dllRunResult . output ) ;
214
+ Assert . Equal ( 0 , dllRunResult . ExitCode ) ;
215
+ Assert . Contains ( "Hello world" , dllRunResult . Output ) ;
216
216
}
217
217
218
218
[ Fact ]
0 commit comments