How may I generate a .exe project with c# express edition Beta 2

Hi, everyone I have tried to generate a .exe project in C# EXPRESS EDITION BETA 2. It has been such a problem. I can't find the way to get it. I have cheched the main menu, but there is appear any option to generate a .exe project.

I'll thank your help.

Adolfo

[267 byte] By [adolfo2005] at [2007-12-16]
# 1
Hi,

Start Visual C# Express Edition. Choose File Menu->New Project.
From the template choose either a Windows Application or a Console Application.
The output of this will generate a .EXE. You can goto Build Menu and choose Build Solution to generate the .EXE.

Regards,
Vikram

Vikram at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 2
Or in solution explorer, right click project and click on Publish. This will create an actual installable executable file.
Tryston02 at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 3
Ok, done....My next question:

To run my application (.exe) on another PC, it is necessary to have installed the .net Framework 2.0, or I can create an installer like visual basic 6.0.

thanks

adolfo2005 at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...
# 4
Hi,

Yes it is necessary to have installed the .NET Framework 2.0 on the other PC. You need to have installed the redesitributable available here:
http://www.microsoft.com/downloads/details.aspx?FamilyId=B7ADC595-717C-4EF7-817B-BDEFD6947019&displaylang=en

It is also possible to use a SetUp and Deployment Project and create an installer which will include the .NET redistributable.

Regards,
Vikram

Vikram at 2007-9-9 > top of Msdn Tech,Visual C#,Visual C# General...