I was trying to get some logic to work in a PreBuild script whether the build is a development build or not using the define symbol #DEVELOPMENT_BUILD. It works in regular scripts, but apparently it doesn’t work for PreBuild scripts because the symbol won’t be defined until the build actually starts. So the #DEVELOPMENT_BUILD never actually hits even though you have “Development Build” checked in the Build Settings.
To check whether or not your build is a development build use:
var isDev = (report.summary.options & BuildOptions.Development) != 0;
In the PreBuild script it would look like this:
public void OnPreprocessBuild(BuildReport report) { var isDev = (report.summary.options & BuildOptions.Development) != 0; if (isDev) { // Is development build } else { // Normal build } }
Source: https://qiita.com/Clpsplug/items/c34e8f596e54444623ba
Related Posts
April 3, 2011
Flash AS3 TextField buttonMode
August 10, 2011
[How-to-Fix] Catalyst Control Center & Native Resolution
Native resolution of wide screen not showing up after updating drivers.
July 14, 2011
LEGO Minifigure Catalog Released!
The book went through several checks and has finally been approved and is now available for purchase at CreateSpace and later this month on Amazon.com
March 31, 2013
[FIX] Bioshock: Infinite – Audio Crackling
How to fix audio crackling issue in Bioshock: Infinite by changing .exe compability to Windows Vista SP2