We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4f795e + bc7aefc commit b472915Copy full SHA for b472915
src/UnityScript.Tests/UsTestFixture.boo
@@ -17,6 +17,16 @@ class UsTestFixture:
17
ResolvePath("warnings-1.js"), )
18
AssertSuccessfulCompilation(argv)
19
20
+ [Test]
21
+ def ExeTarget():
22
+ argv = (
23
+ "-r:${GetAssemblyLocation()}",
24
+ "-b:UnityScript.Tests.MonoBehaviour",
25
+ "-m:Awake",
26
+ "-target:exe",
27
+ ResolvePath("target-exe.js"), )
28
+ AssertSuccessfulCompilation(argv)
29
+
30
[Test]
31
def Pragmas():
32
argv = (
tests/us/target-exe.js
@@ -0,0 +1,3 @@
1
+static function Main() {
2
+ print("Hello");
3
+}
0 commit comments