26 lines
802 B
XML
26 lines
802 B
XML
<Project>
|
|
|
|
<Import Project="../InnovEnergy.props" />
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' != 'Debug' ">
|
|
<!-- https://learn.microsoft.com/en-us/dotnet/core/deploying/trimming/trimming-options?pivots=dotnet-7-0 -->
|
|
|
|
<SelfContained>true</SelfContained>
|
|
<PublishTrimmed>true</PublishTrimmed>
|
|
<DebuggerSupport>false</DebuggerSupport>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
|
|
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
<DebugType>full</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|