Skip to content

Commit

Permalink
added netcoreapp 3.1; added info to testapp for which framework you a…
Browse files Browse the repository at this point in the history
…re testing
  • Loading branch information
djonasdev committed Feb 3, 2020
1 parent 17f4117 commit 272c371
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/NLogViewer.TestApp/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:dj="clr-namespace:DJ;assembly=NLogViewer"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
mc:Ignorable="d" Height="450" Width="800">
<Grid>
<dj:NLogViewer MaxCount="1000"/>
</Grid>
Expand Down
1 change: 1 addition & 0 deletions src/NLogViewer.TestApp/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public partial class MainWindow : Window
private readonly Logger _Logger = LogManager.GetCurrentClassLogger();
public MainWindow()
{
Title = $"Testing v{AppDomain.CurrentDomain.SetupInformation.TargetFrameworkName}";
InitializeComponent();
Random random = new Random();
Observable.Interval(TimeSpan.FromMilliseconds(250)).ObserveOnDispatcher().Subscribe(l =>
Expand Down
2 changes: 1 addition & 1 deletion src/NLogViewer.TestApp/NLogViewer.TestApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.0;net461</TargetFrameworks>
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net461</TargetFrameworks>
<UseWPF>true</UseWPF>
<StartupObject>TestApplication.App</StartupObject>
<RootNamespace>TestApplication</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion src/NLogViewer/NLogViewer.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.0;net461</TargetFrameworks>
<TargetFrameworks>netcoreapp3.0;netcoreapp3.1;net461</TargetFrameworks>
<UseWPF>true</UseWPF>
<RootNamespace>DJ</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down

0 comments on commit 272c371

Please sign in to comment.