Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an equivelant to 'AssemblyInfo.cs' in a Win32 DLL project?

I already looked at this topic, but I need the answer flipped around. How would I set the assembly information attributes* in a Win32 DLL?

like image 911
David Anderson Avatar asked Jul 29 '09 04:07

David Anderson


People also ask

How do I create AssemblyInfo CS Visual Studio 2019?

You can generate an assemblyInfo. cs by right clicking the project and chosing properties. In the application tab fill in the details and press save, this will generate the assemblyInfo.

How do I find the Assembly version of a DLL?

If you reference the dll in Visual Studio right click it (in ProjectName/References folder) and select "Properties" you have "Version" and "Runtime Version" there. In File Explorer when you right click the dll file and select properties there is a "File Version" and "Product Version" there.

Where is assembly information Visual Studio 2019?

In Solution Explorer, the AssemblyInfo file is located in the My Project node for Visual Basic projects (click Show All files to view it). For C# projects, it's located under Properties. For more information, see Attributes (C#).


1 Answers

Okay, I figured it out with a little more looking.

  • Right click the Visual Studio Project, and select Add -> Resource..
  • Select 'Version', then click 'New...'

Visual Studio will generate the files for you, and you can simply edit the information.

like image 153
David Anderson Avatar answered Sep 28 '22 06:09

David Anderson