Created
September 24, 2012 22:19
-
-
Save 4E71/3778795 to your computer and use it in GitHub Desktop.
vs 2012 express: gotchas!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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