Skip to content

Instantly share code, notes, and snippets.

@hjerpbakk
Last active January 15, 2016 10:42
Show Gist options
  • Save hjerpbakk/155acdef9b350f5d9898 to your computer and use it in GitHub Desktop.
Save hjerpbakk/155acdef9b350f5d9898 to your computer and use it in GitHub Desktop.
Example of enabling XAML compilation for an entire assembly in Xamarin.Forms
using Xamarin.Forms.Xaml;
[assembly: XamlCompilation (XamlCompilationOptions.Compile)]
namespace GoldenRatioCalculator {
public class App : Application {
public const string ValueColorString = "#929292";
public static readonly Color ValueColor = new Color(146D, 146D, 146D);
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment