.FSI 中的 Xamarin Forms -> 找不到 NetStandard
Xamarin Forms In the .FSI -> Can't find NetStandard
我正在为 Mac 使用 Visual Studio,我想在脚本文件中测试我的一些想法。当我尝试在脚本中添加对 Xamarin Forms 的引用时,无法找到 netstandard 程序集。
例如
#r "/packages/Xamarin.Forms.3.0.0.482510/lib/netstandard2.0/Xamarin.Forms.Core.dll"
type Hex(tile: Tile) =
inherit Frame()
member this.Tile = tile
The type "object" is required here and is unavailable. You must and a
reference to assembly .netstandard Version 2.0.0.0
问题是,我找不到它在我的本地文件系统上的位置,只能这样做
#r "NETStandard.Library.dll"
无效
我确信这不是最好的方法,但我进入了 Finder,点击前往 -> 计算机,然后在搜索栏中输入 "net standard"。返回了很多点击,所以我只是选择了一个任意网络 standard.dll 并选择了 "copy path" 并将其粘贴到 fsi 中。可以用,但是我现在想洗个澡....
我正在为 Mac 使用 Visual Studio,我想在脚本文件中测试我的一些想法。当我尝试在脚本中添加对 Xamarin Forms 的引用时,无法找到 netstandard 程序集。
例如
#r "/packages/Xamarin.Forms.3.0.0.482510/lib/netstandard2.0/Xamarin.Forms.Core.dll"
type Hex(tile: Tile) =
inherit Frame()
member this.Tile = tile
The type "object" is required here and is unavailable. You must and a reference to assembly .netstandard Version 2.0.0.0
问题是,我找不到它在我的本地文件系统上的位置,只能这样做
#r "NETStandard.Library.dll"
无效
我确信这不是最好的方法,但我进入了 Finder,点击前往 -> 计算机,然后在搜索栏中输入 "net standard"。返回了很多点击,所以我只是选择了一个任意网络 standard.dll 并选择了 "copy path" 并将其粘贴到 fsi 中。可以用,但是我现在想洗个澡....