Visual Studio 2010 - Visual C#
/win32icon (C# Compiler Options)
The /win32icon option inserts an .ico file in the output file, which gives the output file the desired appearance in the Windows Explorer.
/win32icon:filename
Arguments
Remarks
An .ico file can be created with the Resource Compiler. The Resource Compiler is invoked when you compile a Visual C++ program; an .ico file is created from the .rc file.
See /linkresource (to reference) or /resource (to attach) a .NET Framework resource file. See /win32res to import a .res file.
To set this compiler option in the Visual Studio development environment
-
Open the project's Properties pages.
-
Click the Application property page.
-
Modify the Application icon property.
For information on how to set this compiler option programmatically, see ApplicationIcon.
Example
Compile in.cs and attach an .ico file rf.ico to produce in.exe:
csc /win32icon:rf.ico in.cs
See Also