简体   繁体   English

Windows 商店应用程序的版本

[英]Version of Windows store application

I set version number for my Windows store application.我为我的 Windows 商店应用程序设置了版本号。 but I found while I pack my application, it only allow me to input the version with 4 digit like 1.2.3.4, but in fact according to my practice requirement, I need to set the version with 5 digit like 1.2.3.4.5但是我发现我在打包我的应用程序时,它只允许我输入4位数的版本,例如1.2.3.4,但实际上根据我的实践要求,我需要设置5位数的版本,例如1.2.3.4.5

May I know anything I can do to customize this?我可以知道我可以做些什么来定制这个吗?

Versions number in Visual Studio have always been in a 4 digits format, with: Visual Studio 中的版本号一直采用 4 位数字格式,其中:

  • 1st digit: version.Major,第 1 位:version.Major,
  • 2nd digit: version.Minor第 2 位:version.Minor
  • 3rd digit: version.Build第 3 位:version.Build
  • 4th digit: version.Revision第 4 位:version.Revision

See Version class: http://msdn.microsoft.com/fr-fr/library/system.version(v=vs.110).aspx请参阅版本类: http : //msdn.microsoft.com/fr-fr/library/system.version(v=vs.110).aspx

So you will have to use a workaround, your number cannot be stored in 5 digits所以你必须使用一种解决方法,你的号码不能以 5 位数字存储

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM