Merge pull request #713 from andrei-zgirvaci/feat/mac-support

Add MacOS support
This commit is contained in:
Chomp
2025-12-21 19:28:52 +00:00
committed by GitHub
2 changed files with 8 additions and 0 deletions
@@ -9,6 +9,11 @@
"commandName": "Project", "commandName": "Project",
"hotReloadEnabled": false, "hotReloadEnabled": false,
"workingDirectory": "bin/$(Configuration)/$(TargetFramework)" "workingDirectory": "bin/$(Configuration)/$(TargetFramework)"
},
"Spt Server (Mac)": {
"commandName": "Project",
"hotReloadEnabled": false,
"workingDirectory": "bin/$(Configuration)/$(TargetFramework)/osx-arm64"
} }
} }
} }
+3
View File
@@ -25,6 +25,9 @@
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'"> <PropertyGroup Condition="'$(RuntimeIdentifier)' == 'linux-x64'">
<AssemblyName>SPT.Server.Linux</AssemblyName> <AssemblyName>SPT.Server.Linux</AssemblyName>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'osx-arm64'">
<AssemblyName>SPT.Server.Mac</AssemblyName>
</PropertyGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Libraries\SPTarkov.Reflection\SPTarkov.Reflection.csproj" /> <ProjectReference Include="..\Libraries\SPTarkov.Reflection\SPTarkov.Reflection.csproj" />
<ProjectReference Include="..\Libraries\SPTarkov.Server.Core\SPTarkov.Server.Core.csproj" /> <ProjectReference Include="..\Libraries\SPTarkov.Server.Core\SPTarkov.Server.Core.csproj" />