I'm setting up TeamCity for Continuous Integration and (hopefully) Continuous Deployment. Some of the build steps will involve private files, e.g.
- .snk files for strong naming .NET assemblies
- password/token files for publishing artifacts (for example to NuGet or CodePlex)
Since these files contain private data I don't want to put them into the (publicly accessible) source control system.
I'm setting up http://teamcity.codebetter.com for AutoFixture so I don't have physical access to the server. I was hoping for a feature that would let me upload such files, but can't find anything of the kind.
What would be the most appropriate solution?
See Question&Answers more detail:os