Switched main form from Form1 to frmMain. Removed the ApplicationType element. Added MinimumSplashScreenDisplayTime and HighDpiMode settings to support splash screen timing and high DPI configuration. Reordered XML namespaces for consistency.
12 lines
561 B
XML
12 lines
561 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<MyApplicationData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<MySubMain>true</MySubMain>
|
|
<MainForm>frmMain</MainForm>
|
|
<SingleInstance>false</SingleInstance>
|
|
<ShutdownMode>0</ShutdownMode>
|
|
<EnableVisualStyles>true</EnableVisualStyles>
|
|
<AuthenticationMode>0</AuthenticationMode>
|
|
<MinimumSplashScreenDisplayTime>0</MinimumSplashScreenDisplayTime>
|
|
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
|
<HighDpiMode>0</HighDpiMode>
|
|
</MyApplicationData> |