Add TShock Launcher project (TShock.exe) with ./bin folder for dependencies
+ submodule update TODO: retest on osx and see if we can include file permissions
This commit is contained in:
parent
404520c789
commit
2b4b6353c2
6 changed files with 195 additions and 23 deletions
105
TShockLauncher/TShockLauncher.csproj
Normal file
105
TShockLauncher/TShockLauncher.csproj
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<AssemblyName>TShock</AssemblyName>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\TerrariaServerAPI\TerrariaServerAPI\TerrariaServerAPI.csproj" />
|
||||
<ProjectReference Include="..\TShockAPI\TShockAPI.csproj">
|
||||
<!-- dont put TShockAPI in the dependencies -->
|
||||
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
||||
</ProjectReference>
|
||||
<Reference Include="HttpServer">
|
||||
<HintPath>..\prebuilts\HttpServer.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- match tshocks dependencies so that publishing outputs all files to ./bin -->
|
||||
<PackageReference Include="BCrypt.Net-Next" Version="4.0.2" />
|
||||
<PackageReference Include="MySql.Data" Version="8.0.27" />
|
||||
<PackageReference Include="SQLite" Version="3.13.0" />
|
||||
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115.5" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="MoveToBinFolderDebug" AfterTargets="FinalCleanup;PostBuildEvent">
|
||||
<ItemGroup>
|
||||
<MoveBinariesForDebug Include="$(TargetDir)*" Exclude="$(TargetDir)\TShock*" />
|
||||
<TShockPluginFiles Include="$(ProjectDir)../TShockAPI/bin/$(Configuration)/$(TargetFramework)/TShockAPI*" />
|
||||
</ItemGroup>
|
||||
<Move SourceFiles="@(MoveBinariesForDebug)" DestinationFolder="$(TargetDir)bin" ContinueOnError="true" />
|
||||
<Copy SourceFiles="@(TShockPluginFiles)" DestinationFolder="$(TargetDir)ServerPlugins" ContinueOnError="true" />
|
||||
</Target>
|
||||
|
||||
<Target Name="MoveToBinFolderPublish" AfterTargets="Publish">
|
||||
<ItemGroup>
|
||||
<MoveBinariesForPublish Include="$(PublishDir)*" Exclude="$(PublishDir)\TShock.exe;$(PublishDir)\TShockAPI*" />
|
||||
<TShockPluginFilesForPublish Include="$(ProjectDir)../TShockAPI/bin/$(Configuration)/$(TargetFramework)/TShockAPI*" />
|
||||
</ItemGroup>
|
||||
<Move SourceFiles="@(MoveBinariesForPublish)" DestinationFolder="$(PublishDir)bin" ContinueOnError="true" />
|
||||
<Copy SourceFiles="@(TShockPluginFilesForPublish)" DestinationFolder="$(PublishDir)ServerPlugins" ContinueOnError="true" />
|
||||
</Target>
|
||||
|
||||
<UsingTask
|
||||
TaskName="PatchAppHost"
|
||||
TaskFactory="RoslynCodeTaskFactory"
|
||||
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll" >
|
||||
<ParameterGroup>
|
||||
<HostExe ParameterType="System.String" Required="true" />
|
||||
</ParameterGroup>
|
||||
<Task>
|
||||
<Code Type="Fragment" Language="cs">
|
||||
/*
|
||||
This is a patch to allow self contained apps to run from the root while having the modules in a ./bin folder.
|
||||
https://github.com/dotnet/sdk/issues/10366
|
||||
|
||||
The script replaces the ./TShock.dll with ./bin/TShock.dll
|
||||
alternates: dnSpy(does this method), NetCoreBeauty
|
||||
*/
|
||||
var find = Encoding.UTF8.GetBytes("TShock.dll\0");
|
||||
var replace = Encoding.UTF8.GetBytes("bin" + Path.DirectorySeparatorChar + "TShock.dll\0");
|
||||
var contents = File.ReadAllBytes(HostExe);
|
||||
|
||||
var matches = 0;
|
||||
var offset = Array.FindIndex(contents, (b) => {
|
||||
matches = (b == find[matches]) ? matches + 1 : 0;
|
||||
return matches == find.Length;
|
||||
});
|
||||
if (offset > -1) offset -= find.Length - 1;
|
||||
|
||||
var x = 0;
|
||||
Array.ForEach(replace, _ => { contents[offset + x] = replace[x++]; });
|
||||
|
||||
File.WriteAllBytes(HostExe, contents);
|
||||
</Code>
|
||||
</Task>
|
||||
</UsingTask>
|
||||
|
||||
<Target Name="PatchAppHostAfterPublish" AfterTargets="Publish" Condition="'$(RuntimeIdentifier)' == 'win-x64'">
|
||||
<PatchAppHost HostExe="$(PublishDir)TShock.exe" />
|
||||
<Message Text="Patched TShock.exe host for ./bin redirect" Importance="High" />
|
||||
</Target>
|
||||
|
||||
<UsingTask
|
||||
TaskName="CreateOsxLauncher"
|
||||
TaskFactory="RoslynCodeTaskFactory"
|
||||
AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.Core.dll" >
|
||||
<ParameterGroup>
|
||||
<OutPath ParameterType="System.String" Required="true" />
|
||||
</ParameterGroup>
|
||||
<Task>
|
||||
<Code Type="Fragment" Language="cs">
|
||||
File.WriteAllText(Path.Combine(OutPath, "TShock.exe"), "#!/bin/bash\n./bin/TShock");
|
||||
</Code>
|
||||
</Task>
|
||||
</UsingTask>
|
||||
|
||||
<Target Name="CreateOsxLauncherAfterPublish" AfterTargets="Publish" Condition="'$(RuntimeIdentifier)' == 'osx-x64'">
|
||||
<CreateOsxLauncher OutPath="$(PublishDir)" />
|
||||
<Message Text="Run the launcher with chmod u+x TShock.exe && ./TShock.exe" Importance="High" />
|
||||
</Target>
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue