<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>Community for ASP.Net MVC - http://CommunityForMvc.Net</title><link>http://c4mvc.codeplex.com/project/feeds/rss</link><description>The MVC for ASP.NET community is committed to delivering community-created content in support of the ASP.NET MVC platform.  The first releases will include alternate project templates for creating ASP.NET MVC applications.  Later releases will be made based on community demand.</description><item><title>Source code checked in, #40411</title><link>http://c4mvc.codeplex.com/SourceControl/changeset/view/40411</link><description>Add sample script.</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:20:41 GMT</pubDate><guid isPermaLink="false">Source code checked in, #40411 20100210052041A</guid></item><item><title>Updated Wiki: AutomatingWithPowershell</title><link>http://c4mvc.codeplex.com/wikipage?title=AutomatingWithPowershell&amp;version=2</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Automating with Powershell&lt;/h1&gt;
&lt;hr /&gt;
&lt;b&gt;&lt;i&gt;This is a very early version of this code. It appears to work but your mileage may vary. Note that ALL it does is combine media files. That is the only automation at this point.&lt;/i&gt;&lt;/b&gt;
&lt;hr /&gt;
&lt;br /&gt;For Powershell aficionado&amp;#39;s I have wrapped the functionality into a cmdlet. Invoking it is this easy:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Powershell Script Sample&lt;/b&gt;&lt;br /&gt;&lt;pre&gt;import-module C:\Dev\OpenSourceProjects\C4MVC\trunk\ExpressionAutomation\PowershellScripts\ExpressionAutomation.dll

Combine-Media &amp;#39;C:\Dev\PowershellFun\CmdletDemo\livemeeting_cut.wmv&amp;#39; &amp;#39;C:\Dev\PowershellFun\CmdletDemo\&amp;#39; -IntroPath &amp;#39;C:\Dev\PowershellFun\CmdletDemo\IntroVideo.wmv&amp;#39; -OutroPath &amp;#39;C:\Dev\PowershellFun\CmdletDemo\Wildlife.wmv&amp;#39; 
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;There is a sample script checked in with some notes in the source code repository here: \trunk\ExpressionAutomation\PowershellScripts&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:19:33 GMT</pubDate><guid isPermaLink="false">Updated Wiki: AutomatingWithPowershell 20100210051933A</guid></item><item><title>Updated Wiki: AutomatingViaAConsoleApplication</title><link>http://c4mvc.codeplex.com/wikipage?title=AutomatingViaAConsoleApplication&amp;version=2</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Automating Via a Console Application&lt;/h1&gt;
If you would like to automate expression to combine media files via a console application, this is how you would do it with our little helper. Note, as has been said elsewhere, the utility that this uses is only for automating the splicing of a media resource (image or video) to the beginning or end (or both) of a .wmv.&lt;br /&gt;
&lt;hr /&gt;
&lt;b&gt;&lt;i&gt;This is a very early version of this code. It appears to work but your mileage may vary. Note that ALL it does is combine media files. That is the only automation at this point.&lt;/i&gt;&lt;/b&gt;
&lt;hr /&gt;
&lt;br /&gt;To do this...
&lt;ol&gt;&lt;li&gt;Create a console application. &lt;/li&gt;
&lt;li&gt;Then reference the ExpressionAutomation library in the source download for C4MVC.&lt;/li&gt;
&lt;li&gt;Call the MediaItemCombiner class as is exemplified below.&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;pre&gt;using System;
using Microsoft.Expression.Encoder;

namespace ExpressionAutomation.Console
{
    class Program
    {
        static void Main(string[] args)
        {
            string basePath = @&amp;quot;C:\Dev\PowershellFun\&amp;quot;;
            string introPath = basePath + &amp;quot;FirstResource.jpg&amp;quot;;
            string moviePath = basePath + &amp;quot;livemeeting_cut.wmv&amp;quot;;
            string outroPath = basePath + &amp;quot;LastResource.jpg&amp;quot;;
            string destinationPath = basePath;

            var combiner = new MediaItemCombiner();
            combiner.OnCombinerProgress += new EventHandler&amp;lt;EncodeProgressEventArgs&amp;gt;(combiner_OnCombinerProgress);
            combiner.Combine(moviePath, introPath, outroPath, destinationPath);
        }

        static void combiner_OnCombinerProgress(object sender, EncodeProgressEventArgs e)
        {
            System.Console.WriteLine(e.Progress);
        }
    }
}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Expression Encoder will create a folder in your destination path folder that will include the newly encoded video.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:19:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: AutomatingViaAConsoleApplication 20100210051916A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://c4mvc.codeplex.com/documentation?version=5</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Minimal MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Azure MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Expression Automation&lt;/h1&gt;
At the moment the only Expression 3 automation implemented is to take a video and add a media element to the beginning and end. This was originally created so we could add some standard content to the beginning and end of the videos of our presentations. We figured we would share the code just in case anyone found it useful.&lt;br /&gt;
&lt;hr /&gt;
&lt;b&gt;&lt;i&gt;This is a very early version of this code. It appears to work but your mileage may vary. Note that ALL it does is combine media files. That is the only automation at this point.&lt;/i&gt;&lt;/b&gt;
&lt;hr /&gt;
&lt;br /&gt;&lt;a href="http://c4mvc.codeplex.com/wikipage?title=AutomatingViaAConsoleApplication&amp;referringTitle=Documentation"&gt;AutomatingViaAConsoleApplication&lt;/a&gt;&lt;br /&gt;&lt;a href="http://c4mvc.codeplex.com/wikipage?title=AutomatingWithPowershell&amp;referringTitle=Documentation"&gt;AutomatingWithPowershell&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:18:58 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20100210051858A</guid></item><item><title>Updated Wiki: AutomatingWithPowershell</title><link>http://c4mvc.codeplex.com/wikipage?title=AutomatingWithPowershell&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Automating with Powershell&lt;/h1&gt;
For Powershell aficionado&amp;#39;s I have wrapped the functionality into a cmdlet. Invoking it is this easy:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Powershell Script Sample&lt;/b&gt;&lt;br /&gt;&lt;pre&gt;import-module C:\Dev\OpenSourceProjects\C4MVC\trunk\ExpressionAutomation\PowershellScripts\ExpressionAutomation.dll

Combine-Media &amp;#39;C:\Dev\PowershellFun\CmdletDemo\livemeeting_cut.wmv&amp;#39; &amp;#39;C:\Dev\PowershellFun\CmdletDemo\&amp;#39; -IntroPath &amp;#39;C:\Dev\PowershellFun\CmdletDemo\IntroVideo.wmv&amp;#39; -OutroPath &amp;#39;C:\Dev\PowershellFun\CmdletDemo\Wildlife.wmv&amp;#39; 
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;There is a sample script checked in with some notes in the source code repository here: \trunk\ExpressionAutomation\PowershellScripts&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:15:10 GMT</pubDate><guid isPermaLink="false">Updated Wiki: AutomatingWithPowershell 20100210051510A</guid></item><item><title>Source code checked in, #40410</title><link>http://c4mvc.codeplex.com/SourceControl/changeset/view/40410</link><description>Sln without console project reference.</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:02:17 GMT</pubDate><guid isPermaLink="false">Source code checked in, #40410 20100210050217A</guid></item><item><title>Source code checked in, #40409</title><link>http://c4mvc.codeplex.com/SourceControl/changeset/view/40409</link><description>Removing console project</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:01:12 GMT</pubDate><guid isPermaLink="false">Source code checked in, #40409 20100210050112A</guid></item><item><title>Updated Wiki: AutomatingViaAConsoleApplication</title><link>http://c4mvc.codeplex.com/wikipage?title=AutomatingViaAConsoleApplication&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Automating Via a Console Application&lt;/h1&gt;
If you would like to automate expression to combine media files via a console application, this is how you would do it with our little helper. Note, as has been said elsewhere, the utility that this uses is only for automating the splicing of a media resource (image or video) to the beginning or end (or both) of a .wmv.&lt;br /&gt;&lt;br /&gt;To do this...
&lt;ol&gt;&lt;li&gt;Create a console application. &lt;/li&gt;
&lt;li&gt;Then reference the ExpressionAutomation library in the source download for C4MVC.&lt;/li&gt;
&lt;li&gt;Call the MediaItemCombiner class as is exemplified below.&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;pre&gt;using System;
using Microsoft.Expression.Encoder;

namespace ExpressionAutomation.Console
{
    class Program
    {
        static void Main(string[] args)
        {
            string basePath = @&amp;quot;C:\Dev\PowershellFun\&amp;quot;;
            string introPath = basePath + &amp;quot;FirstResource.jpg&amp;quot;;
            string moviePath = basePath + &amp;quot;livemeeting_cut.wmv&amp;quot;;
            string outroPath = basePath + &amp;quot;LastResource.jpg&amp;quot;;
            string destinationPath = basePath;

            var combiner = new MediaItemCombiner();
            combiner.OnCombinerProgress += new EventHandler&amp;lt;EncodeProgressEventArgs&amp;gt;(combiner_OnCombinerProgress);
            combiner.Combine(moviePath, introPath, outroPath, destinationPath);
        }

        static void combiner_OnCombinerProgress(object sender, EncodeProgressEventArgs e)
        {
            System.Console.WriteLine(e.Progress);
        }
    }
}
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Expression Encoder will create a folder in your destination path folder that will include the newly encoded video.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 05:00:13 GMT</pubDate><guid isPermaLink="false">Updated Wiki: AutomatingViaAConsoleApplication 20100210050013A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://c4mvc.codeplex.com/documentation?version=4</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Minimal MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Azure MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Expression Automation&lt;/h1&gt;&lt;a href="http://c4mvc.codeplex.com/wikipage?title=AutomatingViaAConsoleApplication&amp;referringTitle=Documentation"&gt;AutomatingViaAConsoleApplication&lt;/a&gt;&lt;br /&gt;&lt;a href="http://c4mvc.codeplex.com/wikipage?title=AutomatingWithPowershell&amp;referringTitle=Documentation"&gt;AutomatingWithPowershell&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 04:53:11 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20100210045311A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://c4mvc.codeplex.com/documentation?version=3</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Minimal MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Azure MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Expression Automation&lt;/h1&gt;&lt;a name="anchorName"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 04:51:07 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20100210045107A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://c4mvc.codeplex.com/documentation?version=2</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Minimal MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Azure MVC Template&lt;/h1&gt;No documentation yet.&lt;br /&gt;
&lt;h1&gt;Expression Automation&lt;/h1&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 04:49:24 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20100210044924A</guid></item><item><title>Updated Wiki: Documentation</title><link>http://c4mvc.codeplex.com/documentation?version=1</link><description>&lt;div class="wikidoc"&gt;Getting started on the documentation for the Expression automation stuff.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 04:48:22 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20100210044822A</guid></item><item><title>Source code checked in, #40406</title><link>http://c4mvc.codeplex.com/SourceControl/changeset/view/40406</link><description>First commit of expression automation code.</description><author>Mallioch</author><pubDate>Wed, 10 Feb 2010 04:47:11 GMT</pubDate><guid isPermaLink="false">Source code checked in, #40406 20100210044711A</guid></item><item><title>Created Issue: Do not run in Visual Web Developer</title><link>http://mvc4aspnet.codeplex.com/WorkItem/View.aspx?WorkItemId=3130</link><description>Do not run in Visual Web Developer 2008 Express Edition. Error in the screenshot&lt;br /&gt;</description><author>olegsk</author><pubDate>Wed, 27 May 2009 18:53:55 GMT</pubDate><guid isPermaLink="false">Created Issue: Do not run in Visual Web Developer 20090527065355P</guid></item><item><title>Updated Release: Azure MVC V1 - CSharp (May 11, 2009)</title><link>http://c4mvc.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27239</link><description>&lt;div&gt;In order to run the Azure MVC template, you will need the following tools on your development machine:&lt;br&gt;&lt;br&gt;!!Windows Azure SDK (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;displaylang=en"&gt;http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuresdk-marchctp"&gt;http://tinyurl.com/azuresdk-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;!!Windows Azure Tools for Visual Studio (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azurevstools-marchctp"&gt;http://tinyurl.com/azurevstools-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;Also, you will need a Windows Azure account for you to publish your application unto. For more information&lt;br&gt;about developing on the Windows Azure Platform and registratrion, please go to&lt;br&gt;&lt;br&gt;&lt;a href="http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx"&gt;http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuredev-registration"&gt;http://tinyurl.com/azuredev-registration&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you have any further questions, please post them on the forums so we could keep track of them!&lt;br&gt;&lt;br&gt;We're currently working on document on how to publish a simple MVC application the Azure Platform, so staay tuned!&lt;/div&gt;</description><author>jglozano</author><pubDate>Tue, 12 May 2009 14:23:36 GMT</pubDate><guid isPermaLink="false">Updated Release: Azure MVC V1 - CSharp (May 11, 2009) 20090512022336P</guid></item><item><title>Released: Azure MVC V1 - CSharp (May 11, 2009)</title><link>http://c4mvc.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27239</link><description>&lt;div&gt;In order to run the Azure MVC template, you will need the following tools on your development machine:&lt;br&gt;&lt;br&gt;!!Windows Azure SDK (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;displaylang=en"&gt;http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuresdk-marchctp"&gt;http://tinyurl.com/azuresdk-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;!!Windows Azure Tools for Visual Studio (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azurevstools-marchctp"&gt;http://tinyurl.com/azurevstools-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;Also, you will need a Windows Azure account for you to publish your application unto. For more information&lt;br&gt;about developing on the Windows Azure Platform and registratrion, please go to&lt;br&gt;&lt;br&gt;&lt;a href="http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx"&gt;http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuredev-registration"&gt;http://tinyurl.com/azuredev-registration&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you have any further questions, please post them on the forums so we could keep track of them!&lt;br&gt;&lt;br&gt;We're currently working on document on how to publish a simple MVC application the Azure Platform, so staay tuned!&lt;/div&gt;</description><author></author><pubDate>Tue, 12 May 2009 14:23:36 GMT</pubDate><guid isPermaLink="false">Released: Azure MVC V1 - CSharp (May 11, 2009) 20090512022336P</guid></item><item><title>Updated Release: Azure MVC V1 - CSharp (May 11, 2009)</title><link>http://c4mvc.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27239</link><description>&lt;div&gt;In order to run the Azure MVC template, you will need the following tools on your development machine:&lt;br&gt;&lt;br&gt;!!Windows Azure SDK (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;displaylang=en"&gt;http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuresdk-marchctp"&gt;http://tinyurl.com/azuresdk-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;!!Windows Azure Tools for Visual Studio (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azurevstools-marchctp"&gt;http://tinyurl.com/azurevstools-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;Also, you will need a Windows Azure account for you to publish your application unto. For more information&lt;br&gt;about developing on the Windows Azure Platform and registratrion, please go to&lt;br&gt;&lt;br&gt;&lt;a href="http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx"&gt;http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuredev-registration"&gt;http://tinyurl.com/azuredev-registration&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you have any further questions, please post them on the forums so we could keep track of them!&lt;br&gt;&lt;br&gt;We're currently working on document on how to publish a simple MVC application the Azure Platform, so staay tuned!&lt;/div&gt;</description><author>jglozano</author><pubDate>Tue, 12 May 2009 14:23:02 GMT</pubDate><guid isPermaLink="false">Updated Release: Azure MVC V1 - CSharp (May 11, 2009) 20090512022302P</guid></item><item><title>Updated Wiki: Home</title><link>http://c4mvc.codeplex.com/Wiki/View.aspx?title=Home&amp;version=9</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;The MVC for ASP.NET community is committed to delivering community-created content in support of the ASP.NET MVC platform.  The first releases will include alternate project templates for creating ASP.NET MVC applications.  Later releases will be made based on community demand.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Releases&lt;/b&gt;&lt;br /&gt;To see all releases, go to &lt;a href="http://www.codeplex.com/mvc4aspnet/Release/ProjectReleases.aspx" class="externalLink"&gt;Releases&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;
&lt;ul&gt;&lt;li&gt;&lt;b&gt;&lt;a href="http://c4mvc.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=23822" class="externalLink"&gt;Minimal ASP.NET MVC Template V1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/li&gt;
&lt;li&gt;&lt;b&gt;&lt;a href="http://c4mvc.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27239" class="externalLink"&gt;Azure MVC Template V1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/b&gt; (Default Release)&lt;/li&gt;&lt;/ul&gt;
&lt;br /&gt;This project was started by members of the community.  The following Individuals, Groups, and Companies have dedicated resources to help make this happen:&lt;br /&gt;&lt;br /&gt;Eric Hexter &lt;a href="http://Hex.LosTechies.com/" class="externalLink"&gt;http://Hex.LosTechies.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Javier Lozano &lt;a href="http://blog.lozanotek.com/" class="externalLink"&gt;http://blog.lozanotek.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Steve Smith &lt;a href="http://SteveSmithBlog.com/" class="externalLink"&gt;http://SteveSmithBlog.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Asp Insiders &lt;a href="http://aspinsiders.com/" class="externalLink"&gt;http://aspinsiders.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Headspring Systems &lt;a href="http://headspringsystems.com/" class="externalLink"&gt;http://headspringsystems.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Lake Quincy Media &lt;a href="http://lakequincy.com/" class="externalLink"&gt;http://lakequincy.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;Nimble Software Professionals &lt;a href="http://nimblepros.com/" class="externalLink"&gt;http://nimblepros.com/&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;</description><author>jglozano</author><pubDate>Tue, 12 May 2009 14:06:26 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090512020626P</guid></item><item><title>Updated Release: Azure MVC V1 - CSharp (May 11, 2009)</title><link>http://c4mvc.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27239</link><description>&lt;div&gt;In order to run the Azure MVC template, you will need the following tools on your development machine:&lt;br&gt;&lt;br&gt;!!Windows Azure SDK (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;displaylang=en"&gt;http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuresdk-marchctp"&gt;http://tinyurl.com/azuresdk-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;!!Windows Azure Tools for Visual Studio (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azurevstools-marchctp"&gt;http://tinyurl.com/azurevstools-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;Also, you will need a Windows Azure account for you to publish your application unto. For more information&lt;br&gt;about developing on the Windows Azure Platform and registratrion, please go to&lt;br&gt;&lt;br&gt;&lt;a href="http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx"&gt;http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuredev-registration"&gt;http://tinyurl.com/azuredev-registration&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you have any further questions, please post them on the forums so we could keep track of them!&lt;br&gt;&lt;br&gt;We're currently working on document on how to publish a simple MVC application the Azure Platform, so staay tuned!&lt;/div&gt;</description><author>jglozano</author><pubDate>Tue, 12 May 2009 14:00:01 GMT</pubDate><guid isPermaLink="false">Updated Release: Azure MVC V1 - CSharp (May 11, 2009) 20090512020001P</guid></item><item><title>Updated Release: Azure MVC V1 - CSharp (May 11, 2009)</title><link>http://c4mvc.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=27239</link><description>&lt;div&gt;In order to run the Azure MVC template, you will need the following tools on your development machine:&lt;br&gt;&lt;br&gt;!!Windows Azure SDK (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;displaylang=en"&gt;http://www.microsoft.com/Downloads/details.aspx?familyid=B44C10E8-425C-417F-AF10-3D2839A5A362&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuresdk-marchctp"&gt;http://tinyurl.com/azuresdk-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;!!Windows Azure Tools for Visual Studio (March 2009 CTP)&lt;br&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=59e8fc0c-c399-4ab7-8a93-882d8e74b67a&amp;amp;displaylang=en&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azurevstools-marchctp"&gt;http://tinyurl.com/azurevstools-marchctp&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;Also, you will need a Windows Azure account for you to publish your application unto. For more information&lt;br&gt;about developing on the Windows Azure Platform and registratrion, please go to&lt;br&gt;&lt;br&gt;&lt;a href="http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx"&gt;http://www.microsoft.com/azure/windowsazurefordevelopers/default.aspx&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;a href="http://tinyurl.com/azuredev-registration"&gt;http://tinyurl.com/azuredev-registration&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;If you have any further questions, please post them on the forums so we could keep track of them!&lt;br&gt;&lt;br&gt;We're currently working on document on how to publish a simple MVC application the Azure Platform, so staay tuned!&lt;/div&gt;</description><author>jglozano</author><pubDate>Mon, 11 May 2009 15:22:40 GMT</pubDate><guid isPermaLink="false">Updated Release: Azure MVC V1 - CSharp (May 11, 2009) 20090511032240P</guid></item></channel></rss>
