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
+15-13Lines changed: 15 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,25 +38,27 @@ For the names of the translation file, please see [this comment](https://github.
38
38
39
39
_The recommended development environment is [Visual Studio](https://visualstudio.microsoft.com/). If you want to build the project without installing a development environment, you may also follow these instructions:_
40
40
41
-
First of all, get a [zip of source code](https://github.com/MCCTeam/Minecraft-Console-Client/archive/master.zip), extract it and navigate to the `MinecraftClient` folder.
41
+
First of all, download the .NET 6.0 SDK [here](https://dotnet.microsoft.com/en-us/download)and follow the install instructions.
42
42
43
-
Edit `MinecraftClient.csproj` to set the Build target to `Release` on [line 4](https://github.com/MCCTeam/Minecraft-Console-Client/blob/master/MinecraftClient/MinecraftClient.csproj#L4):
Get a [zip of source code](https://github.com/MCCTeam/Minecraft-Console-Client/archive/master.zip), extract it and navigate to the `MinecraftClient` folder.
48
44
49
45
### On Windows 🪟
50
46
51
-
1. Locate `MSBuild.exe` for .NET 4 inside `C:\Windows\Microsoft.NET\Framework\v4.X.XXXXX`
52
-
2. Drag and drop `MinecraftClient.csproj` over `MSBuild.exe` to launch the build
53
-
3. If the build succeeds, you can find `MinecraftClient.exe` under `MinecraftClient\bin\Release`
47
+
1. Open a Terminal / Command Prompt.
48
+
2. Type in `dotnet publish --no-self-contained -r win-x64 -c Release`.
49
+
3. If the build succeeds, you can find `MinecraftClient.exe` under `MinecraftClient\bin\Release\net6.0\win-x64\publish\`
50
+
51
+
### On Linux 🐧
52
+
53
+
1. Open a Terminal / Command Prompt.
54
+
2. Type in `dotnet publish --no-self-contained -r linux-x64 -c Release`.
55
+
3. If the build succeeds, you can find `MinecraftClient` under `MinecraftClient\bin\Release\net6.0\linux-x64\publish\`
54
56
55
-
### On Mac and Linux 🐧
57
+
### On Mac 🍎
56
58
57
-
1.Install the [Mono Framework](https://www.mono-project.com/download/stable/#download-lin) if not already installed
58
-
2.Run `msbuild MinecraftClient.csproj` in a terminal
59
-
3. If the build succeeds, you can find `MinecraftClient.exe` under `MinecraftClient\bin\Release`
59
+
1.Open a Terminal / Command Prompt.
60
+
2.Type in `dotnet publish --no-self-contained -r osx-x64 -c Release`.
61
+
3. If the build succeeds, you can find `MinecraftClient` under `MinecraftClient\bin\Release\net6.0\osx-x64\publish\`
0 commit comments