1

I am using Visual Studio 2022 and have just created a new Win Form Application. Currently the version number of my newly created app is 1.0.0

How can I change this in the designer

I have looked under properties of the project but cannot see anything related to these properties.

NineBerry
  • 26,306
  • 3
  • 62
  • 93
Ian Barber
  • 133
  • 8
  • https://stackoverflow.com/questions/43274254/setting-the-version-number-for-net-core-projects-csproj-not-json-projects – Hans Passant Nov 28 '22 at 23:24
  • I appreciate the link but I wanted to do it via the designer rather then in the file – Ian Barber Nov 28 '22 at 23:28
  • Clearly you are not used to .NETCore projects, editing the project file is considered entirely normal and often a hard necessity. Right-click the project in the Solution Explorer window and select "Edit Project File". – Hans Passant Nov 28 '22 at 23:38

1 Answers1

4

Under Project -> Properties go to Package -> General and there you can enter Assembly Version and File Version.

enter image description here

NineBerry
  • 26,306
  • 3
  • 62
  • 93
  • Thank You, I think they have changed this since I last used VS 2019 as it looks different in some areas. Got there in the end, thanks for the quick reply. – Ian Barber Nov 28 '22 at 23:26