10 references to CustomSearchDirEnvVariable
Microsoft.ML.Core (6)
Utilities\PathUtils.cs (3)
43/// <seealso cref="CustomSearchDirEnvVariable"/> environment variable. 55/// If null, the path specified in the environment variable <seealso cref="CustomSearchDirEnvVariable"/> 78var envDir = Environment.GetEnvironmentVariable(CustomSearchDirEnvVariable);
Utilities\ResourceManagerUtils.cs (3)
204var envDir = Environment.GetEnvironmentVariable(Utils.CustomSearchDirEnvVariable); 225$"'{Utils.CustomSearchDirEnvVariable}' environment variable to a writable folder"; 243$"'{Utils.CustomSearchDirEnvVariable}' environment variable to a writable folder";
Microsoft.ML.Core.Tests (4)
UnitTests\TestResourceDownload.cs (4)
31var resourcePathVarOld = Environment.GetEnvironmentVariable(Utils.CustomSearchDirEnvVariable); 32Environment.SetEnvironmentVariable(Utils.CustomSearchDirEnvVariable, null); 128$"MICROSOFTML_RESOURCE_PATH is set to {Environment.GetEnvironmentVariable(Utils.CustomSearchDirEnvVariable)}"); 138Environment.SetEnvironmentVariable(Utils.CustomSearchDirEnvVariable, resourcePathVarOld);