Skip to content

Commit

Permalink
downgrade min winver [ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias Ruemmler committed Aug 27, 2020
1 parent 342d750 commit 5700b88
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions source/EzoGateway/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public App()

Logger.Write("Startup EzoGateway App", SubSystem.App);
Logger.Write("Version " + typeof(App).GetTypeInfo().Assembly.GetName().Version.ToString(), SubSystem.App);
//this.UnhandledException += OnUnhandledException;
this.UnhandledException += OnUnhandledException;

this.Suspending += OnSuspending;
}
Expand All @@ -43,15 +43,15 @@ public App()
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
//private void OnUnhandledException(object sender, UnhandledExceptionEventArgs e)
//{
// Logger.Write(":::::::::::::::::::::::::::::::::::::: START OF UNHANDLED EXCEPTION ::::::::::::::::::::::::::::::::::::::", SubSystem.App);
// Logger.Write(e.Message, SubSystem.App, LoggerLevel.CriticalError);
// Logger.Write(e.Exception.StackTrace, SubSystem.App, LoggerLevel.CriticalError);
// Logger.Write("::::::::::::::::::::::::::::::::::::::: END OF UNHANDLED EXCEPTION :::::::::::::::::::::::::::::::::::::::", SubSystem.App);
private void OnUnhandledException(object sender, UnhandledExceptionEventArgs e)
{
Logger.Write(":::::::::::::::::::::::::::::::::::::: START OF UNHANDLED EXCEPTION ::::::::::::::::::::::::::::::::::::::", SubSystem.App);
Logger.Write(e.Message, SubSystem.App, LoggerLevel.CriticalError);
Logger.Write(e.Exception.StackTrace, SubSystem.App, LoggerLevel.CriticalError);
Logger.Write("::::::::::::::::::::::::::::::::::::::: END OF UNHANDLED EXCEPTION :::::::::::::::::::::::::::::::::::::::", SubSystem.App);

// Logger.Flush();
//}
Logger.Flush();
}

/// <summary>
/// Is called when the application is started normally by the end user. Other entry points
Expand Down
4 changes: 2 additions & 2 deletions source/EzoGateway/EzoGateway.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<DefaultLanguage>de-DE</DefaultLanguage>
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.17134.0</TargetPlatformVersion>
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
<TargetPlatformMinVersion>10.0.15063.0</TargetPlatformMinVersion>
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
Expand Down Expand Up @@ -72,7 +72,7 @@
<UseVSHostingProcess>false</UseVSHostingProcess>
<ErrorReport>prompt</ErrorReport>
<Prefer32Bit>true</Prefer32Bit>
<UseDotNetNativeToolchain>false</UseDotNetNativeToolchain>
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
<DebugSymbols>true</DebugSymbols>
Expand Down

0 comments on commit 5700b88

Please sign in to comment.