fix(BundleConfig): MainPage.cs should disable dev options for ReleaseBundle config (#753)

Fixes #692
This commit is contained in:
Eric Rozell 2016-10-07 13:51:35 -04:00
Родитель 506f13e139
Коммит 510577e250
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -40,7 +40,11 @@ namespace <%= ns %>
{
get
{
#if !BUNDLE || DEBUG
return true;
#else
return false;
#endif
}
}
}