Innovenergy_trunk/csharp/App/InnovEnergy.App.props

25 lines
837 B
Plaintext
Raw Permalink Normal View History

2023-02-16 12:57:06 +00:00
<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 -->
2023-05-11 08:20:47 +00:00
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
2023-02-16 12:57:06 +00:00
<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>
2023-03-01 07:02:49 +00:00