You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,27 +58,33 @@ See [wiki](https://github.com/msgpack/msgpack-cli/wiki)
58
58
1. Install Visual Studio 2017 (Community edition is OK) and 2015 (for MsgPack.Windows.sln).
59
59
* You must install .NET Framework 3.5, 4.x, .NET Core, and Xamarin dev tools to build all builds successfully.
60
60
If you do not want to install options, edit `<TargetFrameworks>` element in `*.csproj` files to exclude platforms you want to exclude.
61
-
2. Run with Visual Studio Developer Command Prompt:
61
+
2. Install latest .NET Core SDK.
62
+
3. Run with Visual Studio Developer Command Prompt:
62
63
64
+
msbuild MsgPack.sln /t:Restore
63
65
msbuild MsgPack.sln
64
66
65
67
Or (for Unity 3D drops):
66
68
69
+
msbuild MsgPack.compats.sln /t:Restore
67
70
msbuild MsgPack.compats.sln
68
71
69
72
Or (for Windows Runtime/Phone drops and Silverlight 5 drops):
70
73
74
+
msbuild MsgPack.Windows.sln /t:Restore
71
75
msbuild MsgPack.Windows.sln
72
76
73
77
Or (for Xamarin unit testing, you must have Xamarin Business or upper license and Mac machine on the LAN to build on Windows):
74
78
79
+
msbuild MsgPack.Xamarin.sln /t:Restore
75
80
msbuild MsgPack.Xamarin.sln
76
81
77
82
Or open one of above solution files in your IDE and run build command in it.
78
83
79
84
### For Mono
80
85
81
-
You can build MsgPack.sln and MsgPack.Xamarin.sln with `msbuild` in latest Mono. Note that `xbuild` does not work because it does not support latest csproj format.
86
+
1. Install latest Mono and .NET Core SDK.
87
+
2. Now, you can build MsgPack.sln and MsgPack.Xamarin.sln with above instructions and `msbuild` in latest Mono. Note that `xbuild` does not work because it does not support latest csproj format.
0 commit comments