Skip to content

Instantly share code, notes, and snippets.

@4E71
Created September 24, 2012 22:19
Show Gist options
  • Save 4E71/3778795 to your computer and use it in GitHub Desktop.
Save 4E71/3778795 to your computer and use it in GitHub Desktop.
vs 2012 express: gotchas!
//Issue: Visual Studio Express 2012 for Web does not come with a console project template.
// Resolution: Create class library project, set project "Output type" to console application, and create a file with
// the following code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ClassLibrary1
{
class Program
{
public static void Main(string[] args)
{
// Do Great Things
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment