From 65a7340171660c092c249adc68e58088d9266dba Mon Sep 17 00:00:00 2001
From: Markus Hofknecht <Markus@Hofknecht.eu>
Date: Mon, 28 Aug 2023 14:37:51 +0200
Subject: [PATCH] [Feature] Framework Self-Contained, not more necessary to
 install .Net 6/7 sdk (#277)

---
 SystemTrayMenu.csproj | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/SystemTrayMenu.csproj b/SystemTrayMenu.csproj
index bf2684fe..a42c8af9 100644
--- a/SystemTrayMenu.csproj
+++ b/SystemTrayMenu.csproj
@@ -1,7 +1,7 @@
 <Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
-    <TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
-	<SelfContained>true</SelfContained>
+    <TargetFramework>net7.0-windows</TargetFramework>
+    <SelfContained>true</SelfContained>
     <RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
     <UseWPF>True</UseWPF>
     <Platform Condition=" '$(Platform)' == '' ">x64</Platform>
@@ -20,7 +20,7 @@
     <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
     <UseApplicationTrust>true</UseApplicationTrust>
     <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
-	<Nullable>enable</Nullable>
+    <Nullable>enable</Nullable>
     <Platforms>x64;x86;AnyCPU</Platforms>
     <Configurations>Debug;Release;ReleasePackage</Configurations>
   </PropertyGroup>