[sln] Set DebugType to embedded in Release configuration

This commit is contained in:
Laura Hausmann 2024-04-17 00:38:15 +02:00
parent 7529ebea72
commit dca09cef56
No known key found for this signature in database
GPG key ID: D044E84C5BE01605
5 changed files with 17 additions and 0 deletions

View file

@ -15,6 +15,7 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<BlazorWebAssemblyOmitDebugProxyOutput>true</BlazorWebAssemblyOmitDebugProxyOutput>
<PreserveCompilationContext>false</PreserveCompilationContext>
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>

View file

@ -9,6 +9,10 @@
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(EnableAOT)' == 'true'">
<RunAOTCompilation>true</RunAOTCompilation>
</PropertyGroup>

View file

@ -6,6 +6,10 @@
<SatelliteResourceLanguages>none</SatelliteResourceLanguages>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Include="SearchQuery.fs"/>
<Compile Include="Mfm.fs" />

View file

@ -6,4 +6,8 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>embedded</DebugType>
</PropertyGroup>
</Project>

View file

@ -8,6 +8,10 @@
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>embedded</DebugType>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Iceshrimp.Backend\Iceshrimp.Backend.csproj"/>
</ItemGroup>