From 379c3eab46fff5a3f0769456061d2e06ef815a2e Mon Sep 17 00:00:00 2001 From: Stefan Andres Charsley Date: Sat, 13 Apr 2019 14:49:28 +1200 Subject: [PATCH] Fixes - Upgrades projects to C# 7.2 - Fixes bug in Size property in ConstrainedPointer --- Source/Mosa.ClassLib/Mosa.ClassLib.csproj | 2 + .../Mosa.Compiler.Common.csproj | 1 + .../Mosa.Compiler.Extension.Dwarf.csproj | 1 + .../Mosa.Compiler.Framework.xUnit.csproj | 2 + .../Mosa.Compiler.Framework.csproj | 1 + .../Mosa.Compiler.MosaTypeSystem.csproj | 1 + .../Mosa.CoolWorld.x86.csproj | 3 + .../Mosa.DeviceDriver.csproj | 2 + .../Mosa.DeviceSystem/ConstrainedPointer.cs | 2 +- .../Mosa.DeviceSystem.csproj | 3 +- Source/Mosa.DeviceSystem/RegionalPointer.cs | 143 ------------------ Source/Mosa.FileSystem/Mosa.FileSystem.csproj | 2 + .../Mosa.HelloWorld.x86.csproj | 2 + .../Mosa.Kernel.ARMv6.csproj | 2 + .../Mosa.Kernel.ESP32.csproj | 2 + Source/Mosa.Kernel.x64/Mosa.Kernel.x64.csproj | 4 +- Source/Mosa.Kernel.x86/Mosa.Kernel.x86.csproj | 2 + Source/Mosa.Korlib/Mosa.Korlib.csproj | 2 + .../Mosa.Platform.ARMv6.csproj | 2 + .../Mosa.Platform.ESP32.csproj | 2 + .../Mosa.Platform.Intel.csproj | 2 + .../Mosa.Platform.x64.csproj | 2 + .../Mosa.Platform.x86.csproj | 2 + .../Mosa.Plug.Korlib.ARMv6.csproj | 2 + .../Mosa.Plug.Korlib.ESP32.csproj | 2 + .../Mosa.Plug.Korlib.x64.csproj | 2 + .../Mosa.Plug.Korlib.x86.csproj | 2 + .../Mosa.Plug.Korlib/Mosa.Plug.Korlib.csproj | 2 + .../Mosa.Runtime.ARMv6.csproj | 2 + .../Mosa.Runtime.ESP32.csproj | 2 + .../Mosa.Runtime.x64/Mosa.Runtime.x64.csproj | 2 + .../Mosa.Runtime.x86/Mosa.Runtime.x86.csproj | 2 + Source/Mosa.Runtime/Mosa.Runtime.csproj | 2 + .../Mosa.TestWorld.ARMv6.csproj | 2 + .../Mosa.TestWorld.x64.csproj | 2 + .../Mosa.TestWorld.x86.csproj | 2 + .../Mosa.Tool.Bootstrap.csproj | 2 + .../Mosa.Tool.Compiler.csproj | 2 + .../Mosa.Tool.CreateBootImage.csproj | 2 + .../Mosa.Tool.Disassembler.Intel.csproj | 2 + .../Mosa.Tool.Explorer.csproj | 2 + .../Mosa.Tool.GDBDebugger.csproj | 2 + .../Mosa.Tool.Launcher.csproj | 2 + .../Mosa.Tools.Package.csproj | 2 + .../Mosa.UnitTests.x86.csproj | 2 + Source/Mosa.UnitTests/Mosa.UnitTests.csproj | 3 +- .../Mosa.Utility.BootImage.csproj | 2 + .../Mosa.Utility.CodeCompiler.csproj | 2 + .../Mosa.Utility.DebugEngine.csproj | 2 + .../Mosa.Utility.GUI.Common.csproj | 2 + .../Mosa.Utility.Launcher.csproj | 2 + .../Mosa.Utility.RSP/Mosa.Utility.RSP.csproj | 2 + .../Mosa.Utility.SourceCodeGenerator.csproj | 2 + .../Mosa.Utility.UnitTests.csproj | 2 + .../Mosa.VBEWorld.x86.csproj | 2 + .../Mosa.VisualStudio.Template.csproj | 4 +- .../Mosa.Workspace.Experiment.Debug.csproj | 2 + .../Mosa.Workspace.FileSystem.Debug.csproj | 4 +- .../Mosa.Workspace.GDB.Debug.csproj | 2 + 59 files changed, 115 insertions(+), 149 deletions(-) delete mode 100644 Source/Mosa.DeviceSystem/RegionalPointer.cs diff --git a/Source/Mosa.ClassLib/Mosa.ClassLib.csproj b/Source/Mosa.ClassLib/Mosa.ClassLib.csproj index 2be5560f18..2ac2eb133b 100644 --- a/Source/Mosa.ClassLib/Mosa.ClassLib.csproj +++ b/Source/Mosa.ClassLib/Mosa.ClassLib.csproj @@ -41,6 +41,7 @@ false true false + 7.2 True @@ -58,6 +59,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Compiler.Common/Mosa.Compiler.Common.csproj b/Source/Mosa.Compiler.Common/Mosa.Compiler.Common.csproj index 7576e4190c..f710937c00 100644 --- a/Source/Mosa.Compiler.Common/Mosa.Compiler.Common.csproj +++ b/Source/Mosa.Compiler.Common/Mosa.Compiler.Common.csproj @@ -1,6 +1,7 @@  netstandard2.0 + 7.2 diff --git a/Source/Mosa.Compiler.Extension.Dwarf/Mosa.Compiler.Extension.Dwarf.csproj b/Source/Mosa.Compiler.Extension.Dwarf/Mosa.Compiler.Extension.Dwarf.csproj index 991219c3ab..7cef7a1b87 100644 --- a/Source/Mosa.Compiler.Extension.Dwarf/Mosa.Compiler.Extension.Dwarf.csproj +++ b/Source/Mosa.Compiler.Extension.Dwarf/Mosa.Compiler.Extension.Dwarf.csproj @@ -3,6 +3,7 @@ netstandard2.0 Mosa.Compiler.Extensions.Dwarf + 7.2 diff --git a/Source/Mosa.Compiler.Framework.xUnit/Mosa.Compiler.Framework.xUnit.csproj b/Source/Mosa.Compiler.Framework.xUnit/Mosa.Compiler.Framework.xUnit.csproj index ff5edcf4b9..b7b4ecea2d 100644 --- a/Source/Mosa.Compiler.Framework.xUnit/Mosa.Compiler.Framework.xUnit.csproj +++ b/Source/Mosa.Compiler.Framework.xUnit/Mosa.Compiler.Framework.xUnit.csproj @@ -60,6 +60,7 @@ full x86 false + 7.2 True @@ -79,6 +80,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Compiler.Framework/Mosa.Compiler.Framework.csproj b/Source/Mosa.Compiler.Framework/Mosa.Compiler.Framework.csproj index 5d6070e1f1..7227129941 100644 --- a/Source/Mosa.Compiler.Framework/Mosa.Compiler.Framework.csproj +++ b/Source/Mosa.Compiler.Framework/Mosa.Compiler.Framework.csproj @@ -1,6 +1,7 @@  netstandard2.0 + 7.2 diff --git a/Source/Mosa.Compiler.MosaTypeSystem/Mosa.Compiler.MosaTypeSystem.csproj b/Source/Mosa.Compiler.MosaTypeSystem/Mosa.Compiler.MosaTypeSystem.csproj index 09a2674093..0dc1dba5c5 100644 --- a/Source/Mosa.Compiler.MosaTypeSystem/Mosa.Compiler.MosaTypeSystem.csproj +++ b/Source/Mosa.Compiler.MosaTypeSystem/Mosa.Compiler.MosaTypeSystem.csproj @@ -1,6 +1,7 @@  netstandard2.0 + 7.2 diff --git a/Source/Mosa.CoolWorld.x86/Mosa.CoolWorld.x86.csproj b/Source/Mosa.CoolWorld.x86/Mosa.CoolWorld.x86.csproj index db3d905492..435bb28fb7 100644 --- a/Source/Mosa.CoolWorld.x86/Mosa.CoolWorld.x86.csproj +++ b/Source/Mosa.CoolWorld.x86/Mosa.CoolWorld.x86.csproj @@ -60,6 +60,7 @@ full 1685,227 false + 7.2 True @@ -80,6 +81,7 @@ 2 1685 false + 7.2 @@ -96,6 +98,7 @@ + diff --git a/Source/Mosa.DeviceDriver/Mosa.DeviceDriver.csproj b/Source/Mosa.DeviceDriver/Mosa.DeviceDriver.csproj index 21d3ba8dc8..4f0f0f5aba 100644 --- a/Source/Mosa.DeviceDriver/Mosa.DeviceDriver.csproj +++ b/Source/Mosa.DeviceDriver/Mosa.DeviceDriver.csproj @@ -45,6 +45,7 @@ true false ..\Common.ruleset + 7.2 True @@ -64,6 +65,7 @@ 1685,219,414 true false + 7.2 diff --git a/Source/Mosa.DeviceSystem/ConstrainedPointer.cs b/Source/Mosa.DeviceSystem/ConstrainedPointer.cs index df3a29b9d6..2892f8a01e 100644 --- a/Source/Mosa.DeviceSystem/ConstrainedPointer.cs +++ b/Source/Mosa.DeviceSystem/ConstrainedPointer.cs @@ -23,7 +23,7 @@ namespace Mosa.DeviceSystem /// Gets the size. /// /// The size. - public uint Size { get { return Size; } } + public uint Size { get { return size; } } public ConstrainedPointer(IntPtr address, uint size) { diff --git a/Source/Mosa.DeviceSystem/Mosa.DeviceSystem.csproj b/Source/Mosa.DeviceSystem/Mosa.DeviceSystem.csproj index 0e979cbcbf..1e862ec1b5 100644 --- a/Source/Mosa.DeviceSystem/Mosa.DeviceSystem.csproj +++ b/Source/Mosa.DeviceSystem/Mosa.DeviceSystem.csproj @@ -41,6 +41,7 @@ full 1685 false + 7.2 True @@ -59,6 +60,7 @@ 2 1685 false + 7.2 @@ -72,7 +74,6 @@ - diff --git a/Source/Mosa.DeviceSystem/RegionalPointer.cs b/Source/Mosa.DeviceSystem/RegionalPointer.cs deleted file mode 100644 index f8ceb3e92b..0000000000 --- a/Source/Mosa.DeviceSystem/RegionalPointer.cs +++ /dev/null @@ -1,143 +0,0 @@ -// Copyright (c) MOSA Project. Licensed under the New BSD License. - -using Mosa.Runtime; -using System; - -namespace Mosa.DeviceSystem -{ - /// - /// Provides indirect access to a block of memory - /// - public readonly struct RegionalPointer - { - private readonly IntPtr address; - private readonly uint size; - - /// - /// Gets the address. - /// - /// The address. - public IntPtr Address { get { return address; } } - - /// - /// Gets the size. - /// - /// The size. - public uint Size { get { return Size; } } - - public RegionalPointer(IntPtr address, uint size) - { - this.address = address; - this.size = size; - } - - public RegionalPointer(Pointer pointer, uint size) - { - this.address = pointer.Address; - this.size = size; - } - - private void CheckOffset(uint offset) - { - if (offset >= size) - { - throw new ArgumentOutOfRangeException(nameof(offset)); - } - } - - public byte this[uint offset] - { - get { CheckOffset(offset); return Intrinsic.Load8(address, offset); } - set { CheckOffset(offset); Intrinsic.Store8(address, offset, value); } - } - - /// - /// Reads the specified offset. - /// - /// The offset. - /// - public byte Read8(uint offset) - { - CheckOffset(offset); - return Intrinsic.Load8(address, offset); - } - - /// - /// Writes the specified offset. - /// - /// The offset. - /// The value. - public void Write8(uint offset, byte value) - { - CheckOffset(offset); - Intrinsic.Store8(address, offset, value); - } - - /// - /// Reads the specified offset. - /// - /// The offset. - /// - public ushort Read16(uint offset) - { - CheckOffset(offset); - return Intrinsic.Load16(address, offset); - } - - /// - /// Writes the specified offset. - /// - /// The offset. - /// The value. - public void Write16(uint offset, ushort value) - { - CheckOffset(offset); - Intrinsic.Store16(address, offset, value); - } - - /// - /// Reads the specified offset. - /// - /// The offset. - /// - public uint Read24(uint offset) - { - CheckOffset(offset); - return Intrinsic.Load16(address, offset) | (uint)(Intrinsic.Load8(address, offset + 2) << 16); - } - - /// - /// Writes the specified offset. - /// - /// The offset. - /// The value. - public void Write24(uint offset, uint value) - { - CheckOffset(offset); - Intrinsic.Store16(address, offset, (ushort)(value & 0xFFFF)); - Intrinsic.Store8(address, offset + 2, (byte)((value >> 16) & 0xFF)); - } - - /// - /// Reads the specified offset. - /// - /// The offset. - /// - public uint Read32(uint offset) - { - CheckOffset(offset); - return Intrinsic.Load32(address, offset); - } - - /// - /// Writes the specified offset. - /// - /// The offset. - /// The value. - public void Write32(uint offset, uint value) - { - CheckOffset(offset); - Intrinsic.Store32(address, offset, value); - } - } -} diff --git a/Source/Mosa.FileSystem/Mosa.FileSystem.csproj b/Source/Mosa.FileSystem/Mosa.FileSystem.csproj index 2a911ca8ed..0038c93998 100644 --- a/Source/Mosa.FileSystem/Mosa.FileSystem.csproj +++ b/Source/Mosa.FileSystem/Mosa.FileSystem.csproj @@ -42,6 +42,7 @@ full 0219,0414 false + 7.2 True @@ -59,6 +60,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.HelloWorld.x86/Mosa.HelloWorld.x86.csproj b/Source/Mosa.HelloWorld.x86/Mosa.HelloWorld.x86.csproj index 72571e9c46..c4febad4c6 100644 --- a/Source/Mosa.HelloWorld.x86/Mosa.HelloWorld.x86.csproj +++ b/Source/Mosa.HelloWorld.x86/Mosa.HelloWorld.x86.csproj @@ -58,6 +58,7 @@ 4 full false + 7.2 True @@ -77,6 +78,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Kernel.ARMv6/Mosa.Kernel.ARMv6.csproj b/Source/Mosa.Kernel.ARMv6/Mosa.Kernel.ARMv6.csproj index 9ec78e7ab5..e51e28fa5d 100644 --- a/Source/Mosa.Kernel.ARMv6/Mosa.Kernel.ARMv6.csproj +++ b/Source/Mosa.Kernel.ARMv6/Mosa.Kernel.ARMv6.csproj @@ -43,6 +43,7 @@ full 0219,0414 false + 7.2 True @@ -61,6 +62,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Kernel.ESP32/Mosa.Kernel.ESP32.csproj b/Source/Mosa.Kernel.ESP32/Mosa.Kernel.ESP32.csproj index 417a194079..b20686e3de 100644 --- a/Source/Mosa.Kernel.ESP32/Mosa.Kernel.ESP32.csproj +++ b/Source/Mosa.Kernel.ESP32/Mosa.Kernel.ESP32.csproj @@ -43,6 +43,7 @@ full 0219,0414 false + 7.2 True @@ -61,6 +62,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Kernel.x64/Mosa.Kernel.x64.csproj b/Source/Mosa.Kernel.x64/Mosa.Kernel.x64.csproj index 187377d0ab..764b343c9f 100644 --- a/Source/Mosa.Kernel.x64/Mosa.Kernel.x64.csproj +++ b/Source/Mosa.Kernel.x64/Mosa.Kernel.x64.csproj @@ -43,6 +43,7 @@ full 0219,0414 false + 7.2 True @@ -62,6 +63,7 @@ true 2 false + 7.2 @@ -82,4 +84,4 @@ - + \ No newline at end of file diff --git a/Source/Mosa.Kernel.x86/Mosa.Kernel.x86.csproj b/Source/Mosa.Kernel.x86/Mosa.Kernel.x86.csproj index 3b5dafe981..99f8ee7b6c 100644 --- a/Source/Mosa.Kernel.x86/Mosa.Kernel.x86.csproj +++ b/Source/Mosa.Kernel.x86/Mosa.Kernel.x86.csproj @@ -44,6 +44,7 @@ full 1685,0219,0414 false + 7.2 True @@ -63,6 +64,7 @@ 2 1685 false + 7.2 diff --git a/Source/Mosa.Korlib/Mosa.Korlib.csproj b/Source/Mosa.Korlib/Mosa.Korlib.csproj index 2001f6585a..eaa6fcd28d 100644 --- a/Source/Mosa.Korlib/Mosa.Korlib.csproj +++ b/Source/Mosa.Korlib/Mosa.Korlib.csproj @@ -32,6 +32,7 @@ false 4 false + 7.2 True @@ -39,6 +40,7 @@ True 2 false + 7.2 diff --git a/Source/Mosa.Platform.ARMv6/Mosa.Platform.ARMv6.csproj b/Source/Mosa.Platform.ARMv6/Mosa.Platform.ARMv6.csproj index f375d61ef5..541bf61dd3 100644 --- a/Source/Mosa.Platform.ARMv6/Mosa.Platform.ARMv6.csproj +++ b/Source/Mosa.Platform.ARMv6/Mosa.Platform.ARMv6.csproj @@ -42,6 +42,7 @@ full 0414 false + 7.2 True @@ -60,6 +61,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Platform.ESP32/Mosa.Platform.ESP32.csproj b/Source/Mosa.Platform.ESP32/Mosa.Platform.ESP32.csproj index 8f14a4a384..ac4d73940e 100644 --- a/Source/Mosa.Platform.ESP32/Mosa.Platform.ESP32.csproj +++ b/Source/Mosa.Platform.ESP32/Mosa.Platform.ESP32.csproj @@ -42,6 +42,7 @@ full 0414 false + 7.2 True @@ -60,6 +61,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Platform.Intel/Mosa.Platform.Intel.csproj b/Source/Mosa.Platform.Intel/Mosa.Platform.Intel.csproj index 7fa4eda3dd..83d71bb27c 100644 --- a/Source/Mosa.Platform.Intel/Mosa.Platform.Intel.csproj +++ b/Source/Mosa.Platform.Intel/Mosa.Platform.Intel.csproj @@ -42,6 +42,7 @@ full 0414 false + 7.2 True @@ -60,6 +61,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Platform.x64/Mosa.Platform.x64.csproj b/Source/Mosa.Platform.x64/Mosa.Platform.x64.csproj index bcbb4f6c03..13867e9b71 100644 --- a/Source/Mosa.Platform.x64/Mosa.Platform.x64.csproj +++ b/Source/Mosa.Platform.x64/Mosa.Platform.x64.csproj @@ -42,6 +42,7 @@ full 0414 false + 7.2 True @@ -60,6 +61,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Platform.x86/Mosa.Platform.x86.csproj b/Source/Mosa.Platform.x86/Mosa.Platform.x86.csproj index b96f096bf9..858b7f1811 100644 --- a/Source/Mosa.Platform.x86/Mosa.Platform.x86.csproj +++ b/Source/Mosa.Platform.x86/Mosa.Platform.x86.csproj @@ -42,6 +42,7 @@ full 0414 false + 7.2 True @@ -60,6 +61,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Plug.Korlib.ARMv6/Mosa.Plug.Korlib.ARMv6.csproj b/Source/Mosa.Plug.Korlib.ARMv6/Mosa.Plug.Korlib.ARMv6.csproj index 04d59557a4..dc990c788e 100644 --- a/Source/Mosa.Plug.Korlib.ARMv6/Mosa.Plug.Korlib.ARMv6.csproj +++ b/Source/Mosa.Plug.Korlib.ARMv6/Mosa.Plug.Korlib.ARMv6.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Plug.Korlib.ESP32/Mosa.Plug.Korlib.ESP32.csproj b/Source/Mosa.Plug.Korlib.ESP32/Mosa.Plug.Korlib.ESP32.csproj index 8fe7721cd3..c8075eca54 100644 --- a/Source/Mosa.Plug.Korlib.ESP32/Mosa.Plug.Korlib.ESP32.csproj +++ b/Source/Mosa.Plug.Korlib.ESP32/Mosa.Plug.Korlib.ESP32.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Plug.Korlib.x64/Mosa.Plug.Korlib.x64.csproj b/Source/Mosa.Plug.Korlib.x64/Mosa.Plug.Korlib.x64.csproj index 20996531d2..f77298ea6b 100644 --- a/Source/Mosa.Plug.Korlib.x64/Mosa.Plug.Korlib.x64.csproj +++ b/Source/Mosa.Plug.Korlib.x64/Mosa.Plug.Korlib.x64.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Plug.Korlib.x86/Mosa.Plug.Korlib.x86.csproj b/Source/Mosa.Plug.Korlib.x86/Mosa.Plug.Korlib.x86.csproj index 35d0e938a2..dbeaee2322 100644 --- a/Source/Mosa.Plug.Korlib.x86/Mosa.Plug.Korlib.x86.csproj +++ b/Source/Mosa.Plug.Korlib.x86/Mosa.Plug.Korlib.x86.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Plug.Korlib/Mosa.Plug.Korlib.csproj b/Source/Mosa.Plug.Korlib/Mosa.Plug.Korlib.csproj index 42d52d040f..d86f4359e1 100644 --- a/Source/Mosa.Plug.Korlib/Mosa.Plug.Korlib.csproj +++ b/Source/Mosa.Plug.Korlib/Mosa.Plug.Korlib.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Runtime.ARMv6/Mosa.Runtime.ARMv6.csproj b/Source/Mosa.Runtime.ARMv6/Mosa.Runtime.ARMv6.csproj index 15f2b5dedf..fbe9e77010 100644 --- a/Source/Mosa.Runtime.ARMv6/Mosa.Runtime.ARMv6.csproj +++ b/Source/Mosa.Runtime.ARMv6/Mosa.Runtime.ARMv6.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Runtime.ESP32/Mosa.Runtime.ESP32.csproj b/Source/Mosa.Runtime.ESP32/Mosa.Runtime.ESP32.csproj index f1a9af6a06..46c0a01411 100644 --- a/Source/Mosa.Runtime.ESP32/Mosa.Runtime.ESP32.csproj +++ b/Source/Mosa.Runtime.ESP32/Mosa.Runtime.ESP32.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Runtime.x64/Mosa.Runtime.x64.csproj b/Source/Mosa.Runtime.x64/Mosa.Runtime.x64.csproj index 6078e6a9e3..912a9aea7e 100644 --- a/Source/Mosa.Runtime.x64/Mosa.Runtime.x64.csproj +++ b/Source/Mosa.Runtime.x64/Mosa.Runtime.x64.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -65,6 +66,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Runtime.x86/Mosa.Runtime.x86.csproj b/Source/Mosa.Runtime.x86/Mosa.Runtime.x86.csproj index 1f1d1a87ff..afd0e36811 100644 --- a/Source/Mosa.Runtime.x86/Mosa.Runtime.x86.csproj +++ b/Source/Mosa.Runtime.x86/Mosa.Runtime.x86.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.Runtime/Mosa.Runtime.csproj b/Source/Mosa.Runtime/Mosa.Runtime.csproj index 56e056e631..cbd3c9e30f 100644 --- a/Source/Mosa.Runtime/Mosa.Runtime.csproj +++ b/Source/Mosa.Runtime/Mosa.Runtime.csproj @@ -44,6 +44,7 @@ true 1685 false + 7.2 True @@ -64,6 +65,7 @@ true 1685 false + 7.2 diff --git a/Source/Mosa.TestWorld.ARMv6/Mosa.TestWorld.ARMv6.csproj b/Source/Mosa.TestWorld.ARMv6/Mosa.TestWorld.ARMv6.csproj index 69f3d59810..add36d80c8 100644 --- a/Source/Mosa.TestWorld.ARMv6/Mosa.TestWorld.ARMv6.csproj +++ b/Source/Mosa.TestWorld.ARMv6/Mosa.TestWorld.ARMv6.csproj @@ -43,6 +43,7 @@ 4 full false + 7.2 True @@ -62,6 +63,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.TestWorld.x64/Mosa.TestWorld.x64.csproj b/Source/Mosa.TestWorld.x64/Mosa.TestWorld.x64.csproj index 62dc0f7f5c..f40cf93740 100644 --- a/Source/Mosa.TestWorld.x64/Mosa.TestWorld.x64.csproj +++ b/Source/Mosa.TestWorld.x64/Mosa.TestWorld.x64.csproj @@ -60,6 +60,7 @@ full 1685 false + 7.2 True @@ -80,6 +81,7 @@ 2 1685 false + 7.2 diff --git a/Source/Mosa.TestWorld.x86/Mosa.TestWorld.x86.csproj b/Source/Mosa.TestWorld.x86/Mosa.TestWorld.x86.csproj index 310e72af35..a27293681e 100644 --- a/Source/Mosa.TestWorld.x86/Mosa.TestWorld.x86.csproj +++ b/Source/Mosa.TestWorld.x86/Mosa.TestWorld.x86.csproj @@ -60,6 +60,7 @@ full 1685 false + 7.2 True @@ -80,6 +81,7 @@ 2 1685 false + 7.2 diff --git a/Source/Mosa.Tool.Bootstrap/Mosa.Tool.Bootstrap.csproj b/Source/Mosa.Tool.Bootstrap/Mosa.Tool.Bootstrap.csproj index 3b56f01adc..f24389e08b 100644 --- a/Source/Mosa.Tool.Bootstrap/Mosa.Tool.Bootstrap.csproj +++ b/Source/Mosa.Tool.Bootstrap/Mosa.Tool.Bootstrap.csproj @@ -42,6 +42,7 @@ full true false + 7.2 True @@ -60,6 +61,7 @@ 2 true false + 7.2 Mosa.Tool.Bootstrap.Program diff --git a/Source/Mosa.Tool.Compiler/Mosa.Tool.Compiler.csproj b/Source/Mosa.Tool.Compiler/Mosa.Tool.Compiler.csproj index 5390c9051e..452a67f412 100644 --- a/Source/Mosa.Tool.Compiler/Mosa.Tool.Compiler.csproj +++ b/Source/Mosa.Tool.Compiler/Mosa.Tool.Compiler.csproj @@ -42,6 +42,7 @@ full true false + 7.2 True @@ -60,6 +61,7 @@ 2 true false + 7.2 Mosa.Tool.Compiler.Program diff --git a/Source/Mosa.Tool.CreateBootImage/Mosa.Tool.CreateBootImage.csproj b/Source/Mosa.Tool.CreateBootImage/Mosa.Tool.CreateBootImage.csproj index 4d6672cfbb..f8a83f7cfe 100644 --- a/Source/Mosa.Tool.CreateBootImage/Mosa.Tool.CreateBootImage.csproj +++ b/Source/Mosa.Tool.CreateBootImage/Mosa.Tool.CreateBootImage.csproj @@ -30,6 +30,7 @@ false + 7.2 True @@ -41,6 +42,7 @@ 4 ..\..\bin\Mosa.Tool.CreateBootImage.xml false + 7.2 diff --git a/Source/Mosa.Tool.Disassembler.Intel/Mosa.Tool.Disassembler.Intel.csproj b/Source/Mosa.Tool.Disassembler.Intel/Mosa.Tool.Disassembler.Intel.csproj index fbf775254a..60fd509aec 100644 --- a/Source/Mosa.Tool.Disassembler.Intel/Mosa.Tool.Disassembler.Intel.csproj +++ b/Source/Mosa.Tool.Disassembler.Intel/Mosa.Tool.Disassembler.Intel.csproj @@ -47,6 +47,7 @@ true false false + 7.2 True @@ -60,6 +61,7 @@ false false + 7.2 diff --git a/Source/Mosa.Tool.Explorer/Mosa.Tool.Explorer.csproj b/Source/Mosa.Tool.Explorer/Mosa.Tool.Explorer.csproj index 72fa072220..95e457c188 100644 --- a/Source/Mosa.Tool.Explorer/Mosa.Tool.Explorer.csproj +++ b/Source/Mosa.Tool.Explorer/Mosa.Tool.Explorer.csproj @@ -38,6 +38,7 @@ prompt 4 false + 7.2 True @@ -48,6 +49,7 @@ prompt 4 false + 7.2 Mosa.Tool.Explorer.Program diff --git a/Source/Mosa.Tool.GDBDebugger/Mosa.Tool.GDBDebugger.csproj b/Source/Mosa.Tool.GDBDebugger/Mosa.Tool.GDBDebugger.csproj index b201c6acdd..2f4ec16ddd 100644 --- a/Source/Mosa.Tool.GDBDebugger/Mosa.Tool.GDBDebugger.csproj +++ b/Source/Mosa.Tool.GDBDebugger/Mosa.Tool.GDBDebugger.csproj @@ -26,6 +26,7 @@ false + 7.2 True @@ -38,6 +39,7 @@ ..\..\bin\Mosa.Tool.GDBDebugger.xml false 1591 + 7.2 Mosa.Tool.GDBDebugger.Program diff --git a/Source/Mosa.Tool.Launcher/Mosa.Tool.Launcher.csproj b/Source/Mosa.Tool.Launcher/Mosa.Tool.Launcher.csproj index 298fdec408..83999471fd 100644 --- a/Source/Mosa.Tool.Launcher/Mosa.Tool.Launcher.csproj +++ b/Source/Mosa.Tool.Launcher/Mosa.Tool.Launcher.csproj @@ -42,6 +42,7 @@ false + 7.2 True @@ -54,6 +55,7 @@ ..\..\bin\Mosa.Tool.Debugger.xml false 1591 + 7.2 Mosa.Tool.Launcher.Program diff --git a/Source/Mosa.Tools.Package/Mosa.Tools.Package.csproj b/Source/Mosa.Tools.Package/Mosa.Tools.Package.csproj index c9f4b7acf1..1cb5dd585b 100644 --- a/Source/Mosa.Tools.Package/Mosa.Tools.Package.csproj +++ b/Source/Mosa.Tools.Package/Mosa.Tools.Package.csproj @@ -42,6 +42,7 @@ false + 7.2 True @@ -54,6 +55,7 @@ ..\..\bin\Mosa.Tool.Debugger.xml false 1591 + 7.2 diff --git a/Source/Mosa.UnitTests.x86/Mosa.UnitTests.x86.csproj b/Source/Mosa.UnitTests.x86/Mosa.UnitTests.x86.csproj index 9f430f586f..9690f0e603 100644 --- a/Source/Mosa.UnitTests.x86/Mosa.UnitTests.x86.csproj +++ b/Source/Mosa.UnitTests.x86/Mosa.UnitTests.x86.csproj @@ -60,6 +60,7 @@ full 1685 false + 7.2 True @@ -80,6 +81,7 @@ 2 1685 false + 7.2 diff --git a/Source/Mosa.UnitTests/Mosa.UnitTests.csproj b/Source/Mosa.UnitTests/Mosa.UnitTests.csproj index b203f19569..2516c442a2 100644 --- a/Source/Mosa.UnitTests/Mosa.UnitTests.csproj +++ b/Source/Mosa.UnitTests/Mosa.UnitTests.csproj @@ -33,7 +33,7 @@ AnyCPU false 168,162,649 - default + 7.2 True @@ -46,6 +46,7 @@ false false 168,162,649 + 7.2 diff --git a/Source/Mosa.Utility.BootImage/Mosa.Utility.BootImage.csproj b/Source/Mosa.Utility.BootImage/Mosa.Utility.BootImage.csproj index ea206d49a7..10e13339f5 100644 --- a/Source/Mosa.Utility.BootImage/Mosa.Utility.BootImage.csproj +++ b/Source/Mosa.Utility.BootImage/Mosa.Utility.BootImage.csproj @@ -33,6 +33,7 @@ false + 7.2 True @@ -45,6 +46,7 @@ ..\..\bin\Mosa.Utility.BootImage.xml false 1591 + 7.2 diff --git a/Source/Mosa.Utility.CodeCompiler/Mosa.Utility.CodeCompiler.csproj b/Source/Mosa.Utility.CodeCompiler/Mosa.Utility.CodeCompiler.csproj index 03c30182ac..ec272ced2c 100644 --- a/Source/Mosa.Utility.CodeCompiler/Mosa.Utility.CodeCompiler.csproj +++ b/Source/Mosa.Utility.CodeCompiler/Mosa.Utility.CodeCompiler.csproj @@ -36,6 +36,7 @@ full AnyCPU false + 7.2 True @@ -55,6 +56,7 @@ true 2 false + 7.2 diff --git a/Source/Mosa.Utility.DebugEngine/Mosa.Utility.DebugEngine.csproj b/Source/Mosa.Utility.DebugEngine/Mosa.Utility.DebugEngine.csproj index 1c416a1e4e..683b326a3d 100644 --- a/Source/Mosa.Utility.DebugEngine/Mosa.Utility.DebugEngine.csproj +++ b/Source/Mosa.Utility.DebugEngine/Mosa.Utility.DebugEngine.csproj @@ -25,6 +25,7 @@ false + 7.2 True @@ -38,6 +39,7 @@ false 1591 true + 7.2 diff --git a/Source/Mosa.Utility.GUI.Common/Mosa.Utility.GUI.Common.csproj b/Source/Mosa.Utility.GUI.Common/Mosa.Utility.GUI.Common.csproj index 5bddd74f5d..080f096dfc 100644 --- a/Source/Mosa.Utility.GUI.Common/Mosa.Utility.GUI.Common.csproj +++ b/Source/Mosa.Utility.GUI.Common/Mosa.Utility.GUI.Common.csproj @@ -25,6 +25,7 @@ false + 7.2 True @@ -37,6 +38,7 @@ ..\..\bin\Mosa.Utility.GUI.Common.xml false 1591 + 7.2 diff --git a/Source/Mosa.Utility.Launcher/Mosa.Utility.Launcher.csproj b/Source/Mosa.Utility.Launcher/Mosa.Utility.Launcher.csproj index ae579fbf6b..de136e2341 100644 --- a/Source/Mosa.Utility.Launcher/Mosa.Utility.Launcher.csproj +++ b/Source/Mosa.Utility.Launcher/Mosa.Utility.Launcher.csproj @@ -41,6 +41,7 @@ false + 7.2 True @@ -53,6 +54,7 @@ ..\..\bin\Mosa.Tool.Debugger.xml false 1591 + 7.2 diff --git a/Source/Mosa.Utility.RSP/Mosa.Utility.RSP.csproj b/Source/Mosa.Utility.RSP/Mosa.Utility.RSP.csproj index 21f9abe5dc..70f1584204 100644 --- a/Source/Mosa.Utility.RSP/Mosa.Utility.RSP.csproj +++ b/Source/Mosa.Utility.RSP/Mosa.Utility.RSP.csproj @@ -25,6 +25,7 @@ false + 7.2 True @@ -37,6 +38,7 @@ ..\..\bin\Mosa.Utility.DebugEngine.xml false 1591 + 7.2 diff --git a/Source/Mosa.Utility.SourceCodeGenerator/Mosa.Utility.SourceCodeGenerator.csproj b/Source/Mosa.Utility.SourceCodeGenerator/Mosa.Utility.SourceCodeGenerator.csproj index ebcdb6dbad..709a7986d3 100644 --- a/Source/Mosa.Utility.SourceCodeGenerator/Mosa.Utility.SourceCodeGenerator.csproj +++ b/Source/Mosa.Utility.SourceCodeGenerator/Mosa.Utility.SourceCodeGenerator.csproj @@ -24,6 +24,7 @@ 4 false false + 7.2 True @@ -35,6 +36,7 @@ prompt 4 false + 7.2 Mosa.Utility.SourceCodeGenerator.Program diff --git a/Source/Mosa.Utility.UnitTests/Mosa.Utility.UnitTests.csproj b/Source/Mosa.Utility.UnitTests/Mosa.Utility.UnitTests.csproj index ae461b22ce..b569b3129d 100644 --- a/Source/Mosa.Utility.UnitTests/Mosa.Utility.UnitTests.csproj +++ b/Source/Mosa.Utility.UnitTests/Mosa.Utility.UnitTests.csproj @@ -25,6 +25,7 @@ false 162 false + 7.2 True @@ -37,6 +38,7 @@ 4 false 162 + 7.2 Mosa.Utility.UnitTests.Program diff --git a/Source/Mosa.VBEWorld.x86/Mosa.VBEWorld.x86.csproj b/Source/Mosa.VBEWorld.x86/Mosa.VBEWorld.x86.csproj index 86b0a3657a..35cf95ec30 100644 --- a/Source/Mosa.VBEWorld.x86/Mosa.VBEWorld.x86.csproj +++ b/Source/Mosa.VBEWorld.x86/Mosa.VBEWorld.x86.csproj @@ -21,6 +21,7 @@ prompt 4 false + 7.2 pdbonly @@ -29,6 +30,7 @@ TRACE prompt 4 + 7.2 diff --git a/Source/Mosa.VisualStudio.Template/Mosa.VisualStudio.Template.csproj b/Source/Mosa.VisualStudio.Template/Mosa.VisualStudio.Template.csproj index ef81d20842..4fd0a77e6d 100644 --- a/Source/Mosa.VisualStudio.Template/Mosa.VisualStudio.Template.csproj +++ b/Source/Mosa.VisualStudio.Template/Mosa.VisualStudio.Template.csproj @@ -22,6 +22,7 @@ prompt 4 false + 7.2 pdbonly @@ -31,12 +32,13 @@ prompt 4 false + 7.2 - + diff --git a/Source/Mosa.Workspace.Experiment.Debug/Mosa.Workspace.Experiment.Debug.csproj b/Source/Mosa.Workspace.Experiment.Debug/Mosa.Workspace.Experiment.Debug.csproj index f1f1023dcf..048367cf96 100644 --- a/Source/Mosa.Workspace.Experiment.Debug/Mosa.Workspace.Experiment.Debug.csproj +++ b/Source/Mosa.Workspace.Experiment.Debug/Mosa.Workspace.Experiment.Debug.csproj @@ -25,6 +25,7 @@ false 162 false + 7.2 True @@ -37,6 +38,7 @@ 4 false 162 + 7.2 Mosa.Workspace.Experiment.Debug.Program diff --git a/Source/Mosa.Workspace.FileSystem.Debug/Mosa.Workspace.FileSystem.Debug.csproj b/Source/Mosa.Workspace.FileSystem.Debug/Mosa.Workspace.FileSystem.Debug.csproj index 2ac3a523bd..b7f297a5b3 100644 --- a/Source/Mosa.Workspace.FileSystem.Debug/Mosa.Workspace.FileSystem.Debug.csproj +++ b/Source/Mosa.Workspace.FileSystem.Debug/Mosa.Workspace.FileSystem.Debug.csproj @@ -24,6 +24,7 @@ 4 false false + 7.2 True @@ -35,6 +36,7 @@ prompt 4 false + 7.2 Mosa.Workspace.FileSystem.Debug.Program @@ -76,4 +78,4 @@ --> - + \ No newline at end of file diff --git a/Source/Mosa.Workspace.GDB.Debug/Mosa.Workspace.GDB.Debug.csproj b/Source/Mosa.Workspace.GDB.Debug/Mosa.Workspace.GDB.Debug.csproj index 2048e6f240..e7a4d982af 100644 --- a/Source/Mosa.Workspace.GDB.Debug/Mosa.Workspace.GDB.Debug.csproj +++ b/Source/Mosa.Workspace.GDB.Debug/Mosa.Workspace.GDB.Debug.csproj @@ -38,6 +38,7 @@ prompt 4 false + 7.2 True @@ -49,6 +50,7 @@ prompt 4 false + 7.2 Mosa.Workspace.UnitTest.Debug.Program