mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
fix: disable transitive Avalonia compilation in project file
- Added a property to the MinecraftClient.csproj to disable the default Avalonia compilation, preventing file-lock races during parallel builds, as the project does not utilize XAML resources.
This commit is contained in:
parent
3073137006
commit
dfefa9d3cc
1 changed files with 3 additions and 0 deletions
|
|
@ -8,6 +8,9 @@
|
|||
<Nullable>enable</Nullable>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
||||
<!-- Consolonia transitively pulls in Avalonia build tasks; MCC has no XAML resources,
|
||||
so disable the transitive Avalonia compilation to avoid file-lock races in parallel builds. -->
|
||||
<EnableAvaloniaCompilationByDefault>false</EnableAvaloniaCompilationByDefault>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<SignManifests>false</SignManifests>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue