This is ringing. I encountered a similar problem in the past,
- If you open the project’s “Properties” folder, you will see “AssemblyInfo.cs” if this is not a problem. The build information file consists of all build options for the project, including version, company name, GUID, compiler options .... etc.
You can create assemblyInfo.cs by right-clicking the project and selecting properties. On the application tab, fill in the data and click "Save", this will create the assemblyInfo.cs file for you. If after that you create your project, it should work.
Cheers, Tarun
Update 2016-07-08 :
For Visual Studio 2010 using the most recent version (2015 at the time of writing), LandedGently comments still apply:
After selecting the project properties and the Application tab as the mentioned @Tarun, there is a button "Assembly Information ...", which opens another dialog box. You should at least fill out the Title here. VS will add the GUID and versions, but if the title is empty, it will not create the AssemblyInfo.cs file.
Tarun Arora Jun 27 '11 at 17:38 2011-06-27 17:38
source share