-
Notifications
You must be signed in to change notification settings - Fork 2
Using the Compiler
mystborn edited this page Jun 22, 2018
·
4 revisions
Compiling a project is extremely easy. In a console, use this command:
path/to/tsc.exe [path/to/project/dir] [options]
This will search all directories and files in the project directory all for files that end in .tfs
, which will all be compiled into one assembly. If the project path is omitted, it will look for the project file in the current directory.
Currently there are only a few commands, but more are planned for nuget integration. | Command | Action | | r | Runs the output assembly if it's an exe. | | bcl | Compiles a new version of the TaffyScript Base Class Library. | | build | Creates a default build.cfg file. | | t | Times how long it takes to compile the project. |