net汇编最佳实践问题

net汇编最佳实践问题

本文介绍了asp.net汇编最佳实践问题...的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 您好, 我正在尝试使用vs.net 2005迁移最初在vs.net中的项目 2003.我开始创建一个网站,然后为网站的每个组件创建了 的文件夹。 我在某个地方读到了网站下的每个文件夹;编译在 单独汇编中。然而,我没有找到网站。创建在 vs.net 2005中创建了任何AssemblyInfo.cs文件。 如果我手动包含这样的文件,我是否能够控制程序集 这样的版本?如果没有,这样做的正确方法是什么。 我注意到任何其他类型的项目(如C#库) 确实创造了一个属性文件夹和AssemblyInfo.cs。 谢谢 - -jojobarHello,I am trying to use vs.net 2005 to migrate a project originally in vs.net2003. I started with creation of a "web site", and then created folders foreach component of the site.I read somewhere that each folder under the "web site" is compiled inseparate assembly. I however, did not find that the "web site" creation invs.net 2005 created any AssemblyInfo.cs file.If I include such a file manually, will I be able to control the assemblyversion in this way? if not, what is the correct way of doing this.I have however noticed that any other type of projects (like C# library)indeed creates a property folder and the AssemblyInfo.cs in it.Thanks---jojobar推荐答案 你必须在App_Code中拥有独立的代码文件运行时要编译并从Web程序集中正确引用它们。只需在App_Code或App_Code的子目录中删除 .cs / .vb文件,然后在运行时完成剩下的工作。 。如果你想在逻辑上组织 文件,你可以将它们放在App_Code的子目录中,或者放在单独的 类库中。 有意义吗? - Scott http://www.OdeToCode.com/blogs/scott/ 这篇关于asp.net汇编最佳实践问题...的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-23 02:30