我目前有一个VersionInfo.cs
包含以下内容的文件。
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
//Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Version
// Revision
//
//You can specify all the values or you can defaul the Revision and Build Numbers
//by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
此文件作为链接添加到我的解决方案中的所有项目,因此将版本号更新为一个,更新所有项目。这工作正常。
但我想知道是否可以从环境变量中检索版本号,然后在VersionInfo.cs
文件中使用它?这可以在VersionInfo.cs
文件本身中完成吗?
我搜索了类似的东西,但到目前为止一无所获。