Typical C# project

This sample shows a typical C# project. It builds a console application, using all of the source code files in the current directory and any subdirectories. Works with the sample solution.

project "MyProject"
  language  "C#"
  kind      "ConsoleApp"
  defines   { "TRACE" }
  files     { "**.cs" }
  links     { "System" }
 
  configuration { "Debug*" }
    defines { "DEBUG" }
    flags   { "Symbols" }
 
  configuration { "Release*" }
    flags   { "Optimize" }