I'm working on a new WPF project and I'm going to label the version as 1.0.0
, but on Properties it only says Assembly Name, Default Namespace, Target Framework. but no Version. Where can I find this? (Along with the project name, description, contributors, etc.
“WPF would be dead in 2022 because Microsoft doesn't need to be promoting non-mobile and non-cloud technology. But WPF might be alive in that sense if it's the best solution for fulfilling specific customer needs today. Therefore, having a hefty desktop application needs to run on Windows 7 PCs with IE 8.
Step 01 : Open Visual Studio 2019. On the start window, choose Create new project. Step 02 : Select a project type as your preference( I used to choose WPF App (. NET Framework), for this project), rename the project and click “OK”.
As of . NET 6.0 WPF supports ARM64. See the WPF Roadmap to learn about project priorities, status and ship dates. WinForms is another UI framework for building Windows desktop applications that is supported on .
You are close, it is under your Project Properties--> Application tab --> Assembly Properties button.
There is an AssemblyInfo.cs
file in your project. (under Properties
folder).
There are two attributes there, you can use them.
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
To keep the versions aligned for all the projects in your solution you can have one CommonAssemblyInfo
file and link it to every project.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With