VB.NET 在一个文件中为解决方案中的所有项目设置程序集版本 (VS2013)?
VB.NET set the assembly-version in one file for all projects in solution (VS2013)?
我想将我解决方案中所有项目的程序集版本存储在一个文件中。
这样更容易维护配置。
在 C# 中,我可以将 links 添加到项目中的 AssemblyInfo.cs
,并将 Drag & Drop
文件 link 添加到 Properties
。
这样版本在 Properties
=> Application
=> Assembly Information
.
中正确显示
在 VB.Net 中这是不可能的。我不能 Drop
文件到 My Project
。但这是必须放置 AssemblyInfo.vb 的地方。如果存储在其他位置,Visual Studio不会显示在My Project
=> Application
=> Assembly Information
.
通过右键单击 Add existing item...
在项目本身中创建 link(文件),然后 cut & paste
将新的 link 放入 MyProject-Folder
。
我想将我解决方案中所有项目的程序集版本存储在一个文件中。 这样更容易维护配置。
在 C# 中,我可以将 links 添加到项目中的 AssemblyInfo.cs
,并将 Drag & Drop
文件 link 添加到 Properties
。
这样版本在 Properties
=> Application
=> Assembly Information
.
在 VB.Net 中这是不可能的。我不能 Drop
文件到 My Project
。但这是必须放置 AssemblyInfo.vb 的地方。如果存储在其他位置,Visual Studio不会显示在My Project
=> Application
=> Assembly Information
.
通过右键单击 Add existing item...
在项目本身中创建 link(文件),然后 cut & paste
将新的 link 放入 MyProject-Folder
。