Mrk
Mrk

Reputation: 743

Windows 10 Universal App - Best way to store static application settings

I would like to store some configurable data (hosts, keys etc.) in my universal app. The data would be defined before running the app and never changed at runtime. What is the best way to achieve this? I've come across a similar question, but there must be some built-in mechanism.

Upvotes: 1

Views: 2623

Answers (1)

Sergiu Cojocaru
Sergiu Cojocaru

Reputation: 687

  • Here you will find some info: Store and retrieve settings and other app data

  • If you want to have a file with settings that are known at compile time you can add a json or xml file in your solution and use it as a config file in code.

Upvotes: 1

Related Questions