Xamarin.Auth
我的WindowsPhone
项目需要Xamarin
. 上有一个实验分支GitHub
:https ://github.com/xamarin/Xamarin.Auth.git
如何将此添加为对我的项目的引用?我什么都找不到DLL
?
提前致谢!
Xamarin.Auth
我的WindowsPhone
项目需要Xamarin
. 上有一个实验分支GitHub
:https ://github.com/xamarin/Xamarin.Auth.git
如何将此添加为对我的项目的引用?我什么都找不到DLL
?
提前致谢!
从这里GitHub
项目中的这个页面来看,这个特定的 GitHub 项目似乎没有版本作为其中的一部分。WindowsPhone
在这里的官方Xamarin.Auth
组件上,看起来这仅适用于目前。v1.2.3.1
iOS
Android
我认为您需要的“实验”分支在这里,该src
文件夹包含一个WindowsPhone
版本。
如果您下载它并包含它,Xamarin.Auth.WindowsPhone.csproj
您将能够编译它并在引用后使用它。
更新1:-
对于“实验”分支,下载源代码不足以加载WindowsPhone
项目,因为它会抱怨Import
语句不正确。
您需要手动编辑Xamarin.Auth.WindowsPhone.csproj
并删除该行:-
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.7\tools\Microsoft.Bcl.Build.targets" />
此外,默认情况下,解决方案Xamarin.Auth.sln
不包括该WindowsPhone
项目。
完成之前删除 的更改后Import
,您将能够将WindowsPhone
项目添加到解决方案中,并且它将加载而不会抱怨。
当您对Xamarin.Auth.WindowsPhone
项目进行编译时,它将检索最新的Microsoft.BCL
参考并恢复它NuGet
的形式并为 WindowsPhone 成功编译项目。
然后,您DLL
的 s 将保存在Bin
您可以从其他项目中引用的文件夹中。