[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:
parent
01b2702af5
commit
2e42a3ba10
3 changed files with 2 additions and 2 deletions
|
@ -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-->
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
<PropertyGroup>
|
||||
<PublishTrimmed>true</PublishTrimmed>
|
||||
<InvariantGlobalization>false</InvariantGlobalization>
|
||||
<UseCurrentRuntimeIdentifier>false</UseCurrentRuntimeIdentifier>
|
||||
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue