Jon Galloway
-
Converting a Powershell script to a NuGet command
Last week I posted about the NuGet.Downloader package, which had begun life as a Powershell script. If you've got a Powershell commands that you'd like to make available in NuGet packages, here's how.
-
Nuget.Downloader package - Download a local NuGet repository using Nuget
NuGet supports multiple feeds, running against either a server or a simple folder / fileshare. See Phil Haack's post explaining both options for more information. I'm a big believer in running your own local NuGet feed for a lot of reasons - offline access, control over updates, and as an absolute must-have for demonstrations and training. I previously wrote up a NuGet Powershell script which pages through the NuGet OData feed and downloads local copies of the packages. It's a little more complex than you'd guess, since the script needs to follow redirections and page links, plus I added in some options to skip downloads for features you've got, only grab the most popular X packages, etc.
-
Tips on installing Visual Studio 2010 SP1
UPDATED 3/14/2011 with Web Platform Installer links
-
Generating EF Code First model classes from an existing database
Entity Framework Code First is a lightweight way to "turn on" data access for a simple CLR class. As the name implies, the intended use is that you're writing the code first and thinking about the database later.
-
IE9 RC fixed the “Internet Explorer cannot display the webpage” error when running an ASP.NET application in Visual Studio
One of the obstacles ASP.NET developers faced in using the Internet Explorer 9 Beta was the dreaded “Internet Explorer cannot display the webpage” error when running an ASP.NET application in Visual Studio.
-
Download mvcConf session videos with a PowerShell script (should work with other Channel 9 feeds, too)
I tweaked my NuGet downloader PowerShell script to handle the Channel 9 media feeds, so you can grab a local copy of all session videos in the format of your choice:
-
mvcConf 2 - All session videos are up, time for a recap
Thanks for making mvcConf 2 a much bigger success than we'd ever anticipated! mvcConf grew out of the C4MVC meetings, with the first mvcConf event in July 2010. Following that event, we talked about what went well and what we'd like to do for the next event, and we all agreed that we wanted to go for it and see how big we could expand. Here's how the progression went:
-
Learn ASP.NET MVC 3 with the MVC Music Store tutorial
Now is a great time to learn ASP.NET MVC. ASP.NET MVC 3 combined with NuGet have made the start-to-finish process of building out a website a lot simpler. If you’d like to see what’s new in ASP.NET MVC 3 and NuGet, or if you’ve never done ASP.NET MVC development, I think the MVC Music Store is a great place to start.