I have NUnit
test project which is testing gateway for some remote service.
And I have public/private keys to manage my account on that service.
Now I store those keys in code. But it's wrong way for user specific and secret data. I must hide it from version control system and other people.
So, where is better to store a such data?
My ideas:
- environment variables
- *.csproj.user (if it's possible?)
- *.resx
- .runsettings (if it's possible?)
I'd like to use *.csproj.user
but is it possible to store and access custom data in this file?