<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <!-- The clr v4 which we are using is supported out of the box by all net versions greater than 4 and thus we could live without a startup section like the one below   -->
  <!-- The reason we are forced to nevertheless use a startup section despite the above fact is that we need to somehow blocklist dotnet 4 client profile installations because these specific -->
  <!-- flavours of dotnet simply dont cut it for our product  Until these flavours of dotnet have drifted sufficiently deep into irrelevancy we need to take their presence into account -->
  <!-- Thus every time a new dotnet version comes out unfortunately we need to go through the chores of revisiting and updating accordingly all appconfigs in our product -->
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
  </startup>
  <appSettings>
    <add key="EnableWindowsFormsHighDpiAutoResizing" value="true" />
  </appSettings>
</configuration>