Created
April 24, 2018 18:10
-
-
Save dansiegel/96248c06388ea43b1e8f88f08d0fac63 to your computer and use it in GitHub Desktop.
Mobile BuildTools Secrets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
secrets.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using AwesomeApp.Helpers; | |
namespace AwesomeApp | |
{ | |
public class Foo | |
{ | |
public void DoFoo() | |
{ | |
if(Secrets.SomeBool) | |
{ | |
Console.WriteLine(Secrets.SomeVar); | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"SomeVar": "A Value", | |
"SomeBool": true, | |
"SomeInt": 1, | |
"SomeDouble": 2.0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment