sprint/CheckerExecutor/testers/CSharpTester.py
2022-02-16 17:40:46 +03:00

12 lines
228 B
Python

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