13 lines
548 B
XML
Executable File
13 lines
548 B
XML
Executable File
<Project>
|
|
<PropertyGroup>
|
|
<!-- Ensure referenced project DLLs (even outside folder structure) are copied on publish -->
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
|
|
<!-- Set default runtime for Release builds if not specified -->
|
|
<RuntimeIdentifier Condition="'$(RuntimeIdentifier)' == '' and '$(Configuration)' == 'Release'">linux-x64</RuntimeIdentifier>
|
|
|
|
<!-- Disable ReadyToRun to avoid Azure Linux compatibility issues -->
|
|
<PublishReadyToRun>false</PublishReadyToRun>
|
|
</PropertyGroup>
|
|
</Project>
|