Skip to content

Commit 2f0f3c3

Browse files
committed
Add .NET 5 support
1 parent e7d8350 commit 2f0f3c3

File tree

116 files changed

+14205
-271
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+14205
-271
lines changed

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/AnalogClockFace.cs

Lines changed: 218 additions & 111 deletions
Large diffs are not rendered by default.

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/BionicCode.Controls.Net.Core.Wpf.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFrameworks>netcoreapp3.1;net48</TargetFrameworks>
55
<UseWPF>true</UseWPF>
66
<ApplicationIcon>logo.ico</ApplicationIcon>
77
</PropertyGroup>

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/BionicCode.Controls.Net.Core.Wpf.xml

Lines changed: 46 additions & 82 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/Controls/ClosableTabControl.cs renamed to BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/ClosableTabControl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Windows.Controls;
44
using System.Windows.Input;
55

6-
namespace BionicCode.Controls.Net.Core.Wpf.Controls
6+
namespace BionicCode.Controls.Net.Core.Wpf
77
{
88
/// <summary>
99
/// Follow steps 1a or 1b and then 2 to use this custom control in a XAML file.

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/Converters/DiameterToRadiusConverter.cs

Lines changed: 0 additions & 26 deletions
This file was deleted.

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/Controls/HighlightRichTextBox.cs renamed to BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/HighlightRichTextBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
#endregion
1414

15-
namespace BionicCode.Controls.Net.Core.Wpf.Controls
15+
namespace BionicCode.Controls.Net.Core.Wpf
1616
{
1717
/// <summary>
1818
/// Implement this interface to apply a custom highlight style for more complex scenarios e.g., code editors.

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/Controls/NormalizingNumericTextBox.cs renamed to BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/NormalizingNumericTextBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Windows.Data;
99
using System.Windows.Input;
1010

11-
namespace BionicCode.Controls.Net.Core.Wpf.Controls
11+
namespace BionicCode.Controls.Net.Core.Wpf
1212
{
1313
/// <summary>
1414
/// Follow steps 1a or 1b and then 2 to use this custom control in a XAML file.

BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/Controls/ScrollModeListBox.cs renamed to BionicCode.Net/BionicCode.Controls.Net.Core.Wpf/ScrollModeListBox.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Windows.Controls;
44
using System.Windows.Media;
55

6-
namespace BionicCode.Controls.Net.Core.Wpf.Controls
6+
namespace BionicCode.Controls.Net.Core.Wpf
77
{
88
public enum ItemsUpdatingScrollMode
99
{

0 commit comments

Comments
 (0)