a1331212cb
Self-hosted Minecraft modpack distribution + administration system.
- launcher/ Avalonia 12 desktop client; single-file win-x64 publish.
Microsoft auth via XboxAuthNet, manifest+SHA-1 mod sync,
portable install path, sidecar settings.
- server/ brass-sigil-server daemon (.NET 8, linux-x64). Wraps the
MC subprocess, embedded Kestrel admin panel with cookie
auth + rate limiting, RCON bridge, scheduled backups,
BlueMap CLI integration with player markers + skin proxy,
friend-side whitelist request flow, world wipe with seed
selection (keep current / random / custom).
- pack/ pack.lock.json (Modrinth + manual CurseForge entries),
data-only tweak source under tweaks/, build outputs in
overrides/ (gitignored).
- scripts/ Build-Pack / Build-Tweaks / Update-Pack / Check-Updates
plus Deploy-Brass.ps1 unified one-shot deploy with
version-bump pre-flight and daemon-state detection.
41 lines
1.8 KiB
XML
41 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>BrassAndSigil.Server</RootNamespace>
|
|
<AssemblyName>brass-sigil-server</AssemblyName>
|
|
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
|
|
|
|
<!-- Single-file self-contained publish defaults -->
|
|
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == ''">linux-x64</RuntimeIdentifier>
|
|
<RuntimeIdentifiers>linux-x64;win-x64</RuntimeIdentifiers>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>true</SelfContained>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
|
|
<DebugType>embedded</DebugType>
|
|
|
|
<!-- Embed wwwroot/* into the assembly so the published exe is truly single-file. -->
|
|
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
|
|
<StaticWebAssetsEnabled>false</StaticWebAssetsEnabled>
|
|
<IsTransformWebConfigDisabled>true</IsTransformWebConfigDisabled>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.7" />
|
|
<PackageReference Include="Spectre.Console.Cli" Version="0.49.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Replace the implicit Web SDK Content rule for wwwroot with EmbeddedResource. -->
|
|
<Content Remove="wwwroot\**" />
|
|
<EmbeddedResource Include="wwwroot\**" />
|
|
<!-- Server-list icon dropped into <serverDir>/server-icon.png on first install. -->
|
|
<EmbeddedResource Include="Assets\server-icon.png">
|
|
<LogicalName>BrassAndSigil.Server.Assets.server-icon.png</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
</Project>
|