在Visual Studio online上找不到c# – Microsoft.SqlServer.Types版本10或更高版本

我在几个问题上看到了这个问题,当你在本地构建时,所有解决方案都能正常工作.我目前在visualstudio.com上有我的代码,每当我从我的机器上推送代码时,我都有自动构建.
我知道你必须安装一个nuget包(我有)并从以下链接安装类型:
http://go.microsoft.com/fwlink/?LinkID=239644&clcid=0x409
问题是,我不知道如何从我的浏览器安装它,因为它是在云中构建的.
我错过了什么吗?
解决方法:
毕竟我在网上发现的tipps对我来说没有用,我想要记录对我有用的解决方案:
我安装了Nuget Package并在app / web.config中创建了以下重定向:
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.SqlServer.Types" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-14.0.0.0" newVersion="14.0.0.0" />
</dependentAssembly>
</assemblyBinding>
我在这里找到了必要的信息:
https://github.com/aspnet/EntityFramework6/issues/244