Global usings now reference Tomas.Core instead of Tomas.Common

This commit is contained in:
Tony Bark 2023-01-07 11:48:46 -05:00
parent 2794aa17f4
commit ac28f2b9a4
2 changed files with 3 additions and 3 deletions

View file

@ -6,10 +6,10 @@ See the (UN)LICENSE file in the project root for more information.
*/
global using System.Diagnostics.CodeAnalysis;
global using System.Diagnostics;
global using Tomas.Common.Programs;
global using Tomas.Core.Programs;
global using Tomas.Interface;
global using Tomas.Kernel.Programs;
global using Cosmos.System.FileSystem;
global using Cosmos.System.FileSystem.VFS;
global using Tomas.Common;
global using Tomas.Core;
global using Os = Cosmos.System;

View file

@ -6,5 +6,5 @@ See the (UN)LICENSE file in the project root for more information.
*/
global using System.Diagnostics.CodeAnalysis;
global using System.Diagnostics;
global using Tomas.Common.Programs;
global using Tomas.Core.Programs;
global using Tomas.Interface;