gpt4 book ai didi

c# - 如何将程序集版本设置为 Web 应用程序?

转载 作者:太空狗 更新时间:2023-10-30 00:33:50 25 4
gpt4 key购买 nike

我用 C# 在 ASP.NET 中开发了应用程序。我想将程序集版本设置为该项目,但在属性页中无法显示此选项。如何将程序集版本设置为 Web 应用程序?

最佳答案

有一个 Properties/AssemblyInfo.cs 文件,您可以在其中设置程序集版本:

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

虽然通常您应该能够在 Visual Studio 中的项目属性中执行此操作。

如果您创建了 ASP.NET 站点(而不是 ASP.NET 应用程序),则无法设置程序集版本,因为没有程序集。 ASP.NET 站点未预编译。 ASP.NET 将在运行时动态发出程序集。

关于c# - 如何将程序集版本设置为 Web 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9964301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com