Where to put the software version for the WPF application?

I'm working on a new WPF project, and I'm going to mark as a version 1.0.0, but in the properties it says only the name of the assembly , the default namespace , target structure . but not Version . Where can i find this? (Along with the project name, description, contributors, etc.

+4
source share
2 answers

You are close, this is under the tab "Project Properties" → "Application" → "Assembly Properties".

enter image description here

+4
source

There is a file in your project AssemblyInfo.cs. (in the folder Properties).

, .

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

, CommonAssemblyInfo .

+2

All Articles