我想在我的MVC 6應用程序中包含Google Analytics API package。我試圖包含所有的依賴或讓它安裝槽NuGet包管理器。無論哪種情況,當我構建解決方案時,出現以下錯誤:Error CS0246 The type or namespace name 'Google' could not be found (are you missing a using directive or an assembly reference?) ProjectName.ASP.NET Core 5.0
在ASP.NET Core 5.0中構建Google Analytics包
任何想法我需要包含哪些依賴項以便在ASP.Net Core 5.0中構建?
以下是我在我的project.json
文件:
"dependencies": {
...
"Microsoft.Net.Http": "2.2.28.0",
"Microsoft.Bcl": "1.1.9.0",
"Microsoft.Bcl.Build": "1.0.21.0",
"Microsoft.Bcl.Async": "1.0.168.0",
"Google.Apis.Analytics.v3": "1.9.0.1100"
},
...
"frameworks": {
"aspnet50": {
"dependencies": {
}
},
"aspnetcore50": {
"dependencies": {
"Newtonsoft.Json": "6.0.8.0"
}
}
},
我終於明白了[Frameworks](https://github.com/aspnet/Home/wiki/Project.json-file#frameworks)部分的文檔。 – aredkid 2015-02-10 05:17:55
謝謝你的幫助,但我想知道是否有依賴可以讓GA在CoreCLR中編譯。 – Alkasai 2015-02-10 16:21:43
這是隻有GA作者才能弄清楚的東西:)它不僅僅是不同的依賴關係,還包括代碼 – 2015-02-10 16:45:41