From 02d8e77e0de215a3c16e207017ffa67f8b03751f Mon Sep 17 00:00:00 2001 From: dbzfanatic Date: Fri, 2 Feb 2024 09:25:30 -0600 Subject: [PATCH] Fixed references to Core in x84 and x86 --- OotD.x86/OotD.x86.csproj | 1 + OotD.x86/TrackBarMenuItem.cs | 28 ---------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 OotD.x86/TrackBarMenuItem.cs diff --git a/OotD.x86/OotD.x86.csproj b/OotD.x86/OotD.x86.csproj index 3920fc3..1cafb96 100644 --- a/OotD.x86/OotD.x86.csproj +++ b/OotD.x86/OotD.x86.csproj @@ -73,6 +73,7 @@ Resources.resx + diff --git a/OotD.x86/TrackBarMenuItem.cs b/OotD.x86/TrackBarMenuItem.cs deleted file mode 100644 index a3adcc7..0000000 --- a/OotD.x86/TrackBarMenuItem.cs +++ /dev/null @@ -1,28 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. -// See the LICENSE file in the project root for more information. - -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms.Design; -using System.Windows.Forms; - -namespace OotD.Utility -{ - [ToolStripItemDesignerAvailability(ToolStripItemDesignerAvailability.MenuStrip | - ToolStripItemDesignerAvailability.ContextMenuStrip)] - public class TrackBarMenuItem : ToolStripControlHost - { - private readonly TrackBar? trackBar; - - public TrackBarMenuItem() : base(new TrackBar()) - { - trackBar = Control as TrackBar; - } - - // Add properties, events etc. you want to expose... - } -}