Skip to content

Creating a Project

mystborn edited this page Apr 22, 2018 · 2 revisions

Creating a Project

Creating a new TaffyScript is easy. All you need to do is create a folder with a build.cfg file in it and it can be compiled.

To see what the build.cfg file looks like, here is an example:

<Build>
  <Output>bin\ProjectName</Output>
  <References>
    <Reference>taffybcl.dll</Reference>
  </References>
  <Mode>Debug</Mode>
</Build>

If you don't want to copy and paste that, or handwrite the build file, you can have the compiler auto-generate one like so:

path/to/tsc [desired/build/path] /build

If you omit the desired path it will generate the build file in the current directory.

For more info on the build file, check this out.

Clone this wiki locally