Standartization of Core.UWP project file for NET8 WinUI

This commit is contained in:
Burak Kaan Köse
2024-07-11 16:38:43 +02:00
parent dec5d2b2b7
commit 9edb06c1cc
8 changed files with 95 additions and 15 deletions

View File

@@ -1,8 +1,15 @@
using Windows.System;
using Windows.System;
using Windows.UI.Core;
using Windows.UI.Xaml;
using Wino.Core.Domain.Interfaces;
#if NET8_0
using Microsoft.UI.Xaml;
#else
using Windows.UI.Xaml;
#endif
namespace Wino.Core.UWP.Services
{
public class KeyPressService : IKeyPressService