Migrated the project to dotnet core 3.0

This commit is contained in:
Robin Krom
2019-09-25 23:30:41 +02:00
parent 4fc0a4960e
commit 3d3bb142e2
126 changed files with 235 additions and 174 deletions

View File

@@ -0,0 +1,20 @@
using System.Runtime.InteropServices;
namespace Hardcodet.Wpf.TaskbarNotification.Interop
{
/// <summary>
/// Win API struct providing coordinates for a single point.
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public struct Point
{
/// <summary>
/// X coordinate.
/// </summary>
public int X;
/// <summary>
/// Y coordinate.
/// </summary>
public int Y;
}
}