VS .NET 2017是否包含.NET核心工具BinaryFormatter?當我創建一個.NET Core控制檯應用程序時,我找不到BinaryFormatter。有許多Nuget軟件包,但哪一個是使用.NET Core獲得工作BinaryFormatter的正確選擇?VS 2017 .NET Core BinaryFormatter
順便說一下,使用發佈的Visual Studio創建一個不能編譯的項目有點尷尬。我需要在我的.NET Core控制檯應用程序所在的位置啓動一個cmd shell,然後執行
dotnet restore
使其編譯。我在參考菜單中錯過了一個VS命令嗎?
EDIT1
使用Install-Package BinaryFormatter
給了我一個異常
PM> Install-Package BinaryFormatter
Restoring packages for d:\source\vc17\NetCoreApp\ConsoleApp1\ConsoleApp2\ConsoleApp2.csproj...
Install-Package : Package BinaryFormatter 1.0.2 is not compatible with netcoreapp1.1 (.NETCoreApp,Version=v1.1). Package BinaryFormatter 1.0.2 supports:
- dnx451 (DNX,Version=v4.5.1)
- dnxcore50 (DNXCore,Version=v5.0)
At line:1 char:1
+ Install-Package BinaryFormatter
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Install-Package], Exception
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
Install-Package : One or more packages are incompatible with .NETCoreApp,Version=v1.1.
At line:1 char:1
+ Install-Package BinaryFormatter
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Install-Package], Exception
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
Install-Package : Package restore failed. Rolling back package changes for 'ConsoleApp2'.
At line:1 char:1
+ Install-Package BinaryFormatter
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Install-Package], Exception
+ FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand
這是[工作正在進行中(HTTPS:/ /github.com/dotnet/corefx/pull/10144)。似乎目前針對1.2.0版本。在VS2017發行版中仍然存在很多非常基本的錯誤,我將等待衆所周知的版本3. –
似乎是這樣。但由於它是開源的,我可以直接通過源代碼進行編譯。 –