MET08THFTIRSTRATUS - v2.43.0 - Using EDA

Multiple Storage Paths and delete old way
This commit is contained in:
2022-06-07 11:17:12 -07:00
parent 75974ae87d
commit ffce7ecf75
74 changed files with 3987 additions and 2117 deletions

View File

@ -2,7 +2,7 @@ using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace Shared;
namespace Adaptation._Tests.Shared;
public class IsEnvironment
{
@ -155,11 +155,11 @@ public class IsEnvironment
{
string result;
if (isEnvironment.Windows)
result = nameof(IsEnvironment.Windows);
result = nameof(Windows);
else if (isEnvironment.Linux)
result = nameof(IsEnvironment.Linux);
result = nameof(Linux);
else if (isEnvironment.OSX)
result = nameof(IsEnvironment.OSX);
result = nameof(OSX);
else
throw new Exception();
return result;