如何强制dotnet
在Windows 10 64位计算机上以32位模式运行项目? dotnet restore
和dotnet build
都支持--runtime
转换,例如:
dotnet restore --runtime win-x86
dotnet build --runtime win-x86
dotnet run
子命令不支持--runtime
切换。
答案 0 :(得分:4)
dotnet run
没有--runtime
/ -r
支持但不放弃兄弟,有希望!
如果您只希望以32位运行,则可以在构建到32位(publish
或build
之后)轻松使用dotnet your_app.dll
。 dotnet run
命令从源代码
如果你想在VS中使用force x86转到Properties > Build
并将Platform target
从Any CPU
更改为x86
答案 1 :(得分:3)