gpt4 book ai didi

.net - AssemblyInfo.cs 中的 GuidAttribute 错误

转载 作者:行者123 更新时间:2023-12-01 19:24:00 26 4
gpt4 key购买 nike

我使用 .NET Core RC2 编写了一个库,现在我将其更新到 RTM。除了一个问题之外,迁移过程中没有出现任何问题。由于某种原因,Visual Studio(以及 dotnet 实用程序)引发有关 AssemblyInfo.cs 中 Guid 的错误:

The type 'GuidAttribute' exists in both 'System.Runtime.InteropServices.PInvoke, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' and 'System.Runtime.InteropServices, Version=4.1.0.0

我不确定这里发生了什么。

这就是我的 AssemblyInfo.cs 的样子:

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("My.Library")]
[assembly: AssemblyTrademark("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("f89c2fd8-91f3-4f5a-87b6-094ee19712cf")]

它都是通用的,由 Visual Studio 生成。

我的project.json也非常简单:

{
"title": "My Library",
"version": "1.0.0-*",
"dependencies": {
"NETStandard.Library": "1.6.0",
"AWSSDK.Core": "3.2.4.1-beta",
"AWSSDK.EC2": "3.2.4.1-beta",
"System.Net.Primitives": "4.0.11",
"System.Threading.Tasks": "4.0.11",
"System.Collections": "4.0.11"
},
"frameworks": {
"netstandard1.5": {
"imports": [ "dnxcore50", "portable-net45+win8" ]
}
},
"buildOptions": {
"xmlDoc": true
}
}

我真的不确定发生了什么,并且我开始认为该错误可能具有误导性。我是否犯了任何错误,但只是看不到?我该如何调试这个?

最佳答案

System.Runtime.InteropServices.PInvoke 库在 .Net Core 开发期间就已存在,并且 GuidAttribute 类型已移至其中。但是this library was removed before the 1.0 version .

问题是 AWSSDK.Core 3.2.4.1-beta 依赖于它。

我认为解决此问题的最佳方法是升级到 AWSSDK.Core 和 AWSSDK.EC2 3.2.5-beta,它们依赖于 1.0 版本的 .Net Standard 库,因此不会出现此问题。

另一个可能的解决方案是从代码中删除 GuidAttribute(或将其隐藏在 #if 后面),因为您很可能不需要它。

关于.net - AssemblyInfo.cs 中的 GuidAttribute 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38227307/

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