using Umbraco.Extensions;
namespace Umbraco.Cms.Core;
///
/// Currently just used to get the machine name for use with file names
///
internal class EnvironmentHelper
{
///
/// Returns the machine name that is safe to use in file paths.
///
public static string FileSafeMachineName => Environment.MachineName.ReplaceNonAlphanumericChars('-');
}