gpt4 book ai didi

f# - 在 Visual Studio 代码中构建项目时如何指定目标体系结构?

转载 作者:行者123 更新时间:2023-12-04 14:08:42 27 4
gpt4 key购买 nike

我是 VS 代码/F# 的新手,我正在尝试构建一个 F# 控制台应用程序(在 Windows 工作站和我的 Linux 计算机上)。

我和 FAKE 一起安装了 Ionide 扩展。

我正在考虑的代码是 Iris 示例(参见 How to translate the intro ML.Net demo to F#?),使用 Ionide 创建一个新的 F# 项目并使用 Microsoft.ML。

我的 iris.fsproj

<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net461</TargetFramework>
<DebugType>portable</DebugType>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Compile Include="iris.fs" />
<None Include="App.config" />
</ItemGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
</Project>

运行脚本时(我使用“播放”按钮,又名 F#:运行 VS Code/Ionide 提供的脚本)我得到:
C:\Users\MyUser\.nuget\packages\microsoft.ml\0.2.0\build\Microsoft.ML.targets(16,5): error : Microsoft.ML currently supports 'x64' processor architectures. Please ensure your application is targeting 'x64'.
和...一起
Running build failed.
Error:
System.Exception: dotnet build failed

如何使用 Ionide 提供的项目结构定位 x64?

最佳答案

它应该像将以下行添加到您的 PropertyGroup 一样简单部分:

<PlatformTarget>x64</PlatformTarget>

使用 Condition 可以进行更复杂的设置。属性根据编译器的各种命令行参数设置平台目标,但这应该是让您启动和运行的最简单方法。

关于f# - 在 Visual Studio 代码中构建项目时如何指定目标体系结构?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50963829/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com