本文介绍了设置的AssemblyInfo.cs的默认值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是改变这种状况的AssemblyInfo.cs与创建的默认值的最佳方式,例如我不想在AssemblyCompany和AssemblyCopyright

  [汇编:AssemblyCompany(微软)微软位
[大会:AssemblyCopyright(版权©微软2011)]


解决方案

大概只在注册表中:

  32位:HKLM\Software\Microsoft\Windows NT\CurrentVersion 
64位:HKLM\Software\Wow6432Node\Microsoft\WindowsNT\CurrentVersion



另外这里是SO帖子:的


What is the best way to change the default values that AssemblyInfo.cs is created with, e.g. I don't want the Microsoft bits in AssemblyCompany and AssemblyCopyright

[assembly: AssemblyCompany("Microsoft")]
[assembly: AssemblyCopyright("Copyright © Microsoft 2011")]
解决方案

Probably only in registry:

32 bit: HKLM\Software\Microsoft\Windows NT\CurrentVersion
64 bit: HKLM\Software\Wow6432Node\Microsoft\WindowsNT\CurrentVersion

Changing the default values for AssemblyInfo.cs

Also here is the post on SO: How to change registration company name for Visual Studio 2008?

这篇关于设置的AssemblyInfo.cs的默认值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 07:16