我似乎也无法弄清楚我文件顶部使用的using
语句。
nuget包在这里:https://www.nuget.org/packages/csharp-extensions 我尝试使用的方法是Object#Send
所以,我打电话给
<#objectInstanec>.Send("SomeMethod")
但是编译器说没有在类型对象上定义该方法
Send
在此定义:https://github.com/NullVoxPopuli/csharp-extensions/blob/master/Extensions/Methods.cs#L26
我尝试了各种使用声明:
using csharp_extensions.Extensions.Methods;
using csharp_extensions.Extensions;
using csharp_extensions
似乎没有工作(csharp_extensions
不存在)
我的project.json:
{
"dependencies": {
"System.Reflection": "4.1.0-beta-*",
"Microsoft.Extensions.PlatformAbstractions": "(1.0.0-rc1-final,]",
"xunit": "2.1.0-*",
"xunit.runner.dnx": "2.1.0-*",
"csharp-extensions": "1.0.1"
},
"commands": {
"test": "xunit.runner.dnx"
},
"frameworks": {
"dnxcore50": {
"_": "this is the recommended windows runtime",
"dependencies": {
"System.Console": "4.0.0-beta-*",
"System.Reflection": "4.1.0-beta-*",
"System.Reflection.TypeExtensions": "4.1.0-beta-*",
"System.Runtime.Extensions": "(4.0,]",
"System.IO": "(4.0,]",
"csharp-extensions": "1.0.1"
}
}
}
}
然后我通过
安装依赖项 dnu restore
答案 0 :(得分:1)
你的NuGet包看起来不正确。您的程序集位于 bin \ Debug \ dnxcore50 中。我会看一下NuGet documentation或下载一个有效的现有NuGet包。
NuGet v2样式包包含lib目录中的程序集。 lib目录中的目录以目标框架命名。看一下Microsoft.Extensions.PlatformAbstractions NuGet包,你在两个目录中都有一个程序集:
lib\net451
lib\dotnet5.4
因此,使用您的NuGet包,我认为程序集未被引用,因为它们不在正确的目录中。 dotnet5.4目录具有可与dnxcore目标框架一起使用的程序集。
此外,project.json应该如下所示(没有system.reflection,因为它是多余的)
{
"dependencies": {
"Microsoft.Extensions.PlatformAbstractions": "(1.0.0-rc1-final,]",
"System.Reflection": "4.1.0-beta-*",
"xunit": "2.1.0-*",
"xunit.runner.dnx": "2.1.0-*"
},
"commands": {
"run": "csharp_extensions",
"test": "xunit.runner.dnx"
},
"frameworks": {
"dnxcore50": {
"_": "this is the recommended windows runtime",
"dependencies": {
"System.Console": "4.0.0-beta-*",
"System.Reflection.TypeExtensions": "4.1.0-beta-*",
"System.Runtime.Extensions": "(4.0,]",
"System.Dynamic.Runtime": "(4.0.0,]",
"Microsoft.CSharp": "(4.0.0,]",
"System.IO": "(4.0,]"
}
}
}
}