Look Mom, I share…
Check out the sidebar. Just added links to my public projects on CodePlex (downloadable via NuGet). Don’t say I never gave you anything. Also visit my friends’ pages, they’re down at the bottom (I’m a...
View ArticleInternal (private) NuGet servers
I just posted this to my blog at work but thought I’d also pass it along to my .Netitude readers. Hope you find it useful! If you’re familiar with NuGet you know the benefits it provides .Net...
View ArticlePython’s namedtuple… for .Net!
One of the things I have seen people applaud about Python is its “namedtuple” class. If you could describe this in terms of .Net’s Tuple (and <T1, T2, etc>) it would be to basically say that it’s...
View ArticleAuto-update your NuGet packages at build time
NuGet is great. So great, in fact, that I’ve set up my own NuGet server in Azure to use during my personal development to share Common projects, etc. It’s insanely nice as now I can do my builds using...
View ArticleCreate your own hosted NuGet server in Azure
Some time ago I wrote about how you could create your own local (private) NuGet server by simply putting your .nupkg files out on a server share to which you had access. But there’s a better way still!...
View ArticleServe up Debug Symbols for your NuGet packages? Heck yeah!
While playing around with NuGet as much as I have been, I noticed something in the ‘nuget pack’ command that I thought was pretty interesting. A ‘-symbols’ flag. “What’s this do?” I thought. So,...
View ArticleApplication Insights in your WinForms? Yup!
Microsoft’s Application Insights is one hell of a tool. It was showcased a number of times throughout BUILD 2015 at the end of April and continues to make my jaw drop every time I see it shown off and...
View ArticleMonitoring the Nuget feed using Microsoft Flow
As the author of a few packages on nuget.org I often find myself needing to know if/when any of the dependencies of my packages are updated. Since nuget doesn’t (readily) have an RSS feed – and even if...
View ArticleMonitoring the Nuget feed using Azure Functions
In my previous post, I showed you a serverless way to accomplish this using Microsoft Flow. Today, let’s explore another one. Namely, Azure Functions. To start, you’ll need an account on Azure. A...
View Article