
* Implement beginnings of C# based tests * Convert xml dox tests * Updates per code review * Fixup of previous commit * Edits per code review * Refactor testRunTitle to make distinguishable between build legs
15 lines
731 B
C#
15 lines
731 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.DotNet.SourceBuild.SmokeTests;
|
|
|
|
internal static class Config
|
|
{
|
|
public static string DotNetDirectory { get; } = Environment.GetEnvironmentVariable("DOTNET_DIR") ?? "./.dotnet";
|
|
public static string DotNetTarballPath { get; } = Environment.GetEnvironmentVariable(DotNetTarballPathEnv) ?? string.Empty;
|
|
public const string DotNetTarballPathEnv = "DOTNET_TARBALL_PATH";
|
|
public static string TargetRid { get; } = Environment.GetEnvironmentVariable("TARGET_RID") ?? string.Empty;
|
|
}
|