[sln] Prevent unnecessary frontend rebuilds during CI runs

Technically we could've overridden this to false in the parsing and shared projects for the same effect, but it's imo more sensible to opt in to it in the one project where we actually want rebuilds when the architecture changes.
This commit is contained in:
Laura Hausmann 2024-09-13 04:55:01 +02:00
parent 01b2702af5
commit 2e42a3ba10
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
3 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,6 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<InvariantGlobalization>true</InvariantGlobalization>
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
<UseCurrentRuntimeIdentifier>true</UseCurrentRuntimeIdentifier>
</PropertyGroup>
<!-- Analyze dependencies for all dependencies, not just direct ones. Remove when upgrading to net90-->

View file

@ -3,6 +3,8 @@
<PropertyGroup>
<!-- ASP.NET MVC & Razor Pages don't support trimming yet (and everything else might also break) -->
<PublishTrimmed>false</PublishTrimmed>
<!-- Makes sure that we compile against the correct native dependency -->
<UseCurrentRuntimeIdentifier>true</UseCurrentRuntimeIdentifier>
<!-- Enables DATAS - https://www.thinktecture.com/en/net/optimize-asp-net-core-memory-with-datas -->
<GarbageCollectionAdaptationMode>1</GarbageCollectionAdaptationMode>
</PropertyGroup>

View file

@ -3,7 +3,6 @@
<PropertyGroup>
<PublishTrimmed>true</PublishTrimmed>
<InvariantGlobalization>false</InvariantGlobalization>
<UseCurrentRuntimeIdentifier>false</UseCurrentRuntimeIdentifier>
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
</PropertyGroup>