sprint/SprintLib/testers/CSharpTester.py
2021-08-29 21:43:34 +03:00

12 lines
234 B
Python

from SprintLib.testers import BaseTester
class CSharpTester(BaseTester):
@property
def build_command(self):
return "csc /out:executable.exe"
@property
def command(self):
return "mono executable.exe"