生成卫星程序集时警告 AL1073
在 Visual Studio 2010 下,我在为项目生成本地化附属程序集时收到编译器警告。我运行的是 Windows 7 64 位。
该项目正在 x86 中构建(它必须是因为它间接引用非托管 DLL - 通过 Oracle ODP.NET)。
MSBuild 日志生成以下警告:
(生成卫星组件目标)->
ALINK:警告 AL1073:引用的程序集“mscorlib.dll”针对不同的处理器 [xxx.csproj]
有没有办法强制它使用与其生成的程序集相同版本的框架?
这是非常令人沮丧的,因为我喜欢在我们的构建中出现零警告,而且这种情况始终存在。
Under Visual Studio 2010, I am getting a compiler warning when generating a localized satellite assembly for a project. I am running Windows 7 64-bit.
The project is being built in x86 (it has to be as it indirectly references an unmanaged DLL - via Oracle ODP.NET).
The MSBuild log generates the following warning:
(GenerateSatelliteAssemblies target) ->
ALINK : warning AL1073: Referenced assembly 'mscorlib.dll' targets a different processor [xxx.csproj]
Is there any way to force this to use the same version of the framework as the assembly it is being generated from?
It is very frustrating as I like to have zero warnings in our build, and this is always there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我重现了这个错误(错误地)。我的项目以 x86 为目标(因为第 3 方 DLL),但我在 VSx64 2010 命令窗口中运行 MSBuild。这设置了 Platform=X64 等。
当我在 VS 2010 命令窗口(针对 x86)下运行它时,我没有收到此警告。
I reproduced this error (by mistake). My projects target x86 (because of 3rd party DLLs), but I ran MSBuild in VSx64 2010 command window. That sets Platform=X64 among other things.
When I ran it under VS 2010 command window (for x86), I didn't get this warning.