Tag Archives: vsts

Reliable and scalable infrastructure: Principles

This is a series of posts: Introduction Principles (this post) Layers Traffic Secrets First and foremost, you have to threat your service’s infrastructure as you threat your service’s code. In other words as infrastructure-as-code. This may include the techniques that … Continue reading

Posted in Infrastructure | Tagged , , , | Leave a comment

How to push NuGet package to VSO feed v3

To push a nuget package to Visual Studio Online feed v3 use the following command: nuget.exe push MyPackage.1.0.0.nupkg -Source https://account.pkgs.visualstudio.com/DefaultCollection/_packaging/My_Feed/nuget/v3/index.json -ConfigFile nuget.config -ApiKey My_Feed The crucial part here is to include -ApiKey My_Feed, otherwise you’ll get 404 Not Found error. … Continue reading

Posted in Programming | Tagged , | Leave a comment