15 references to GetTestDataValue
Microsoft.AspNetCore.App.UnitTests (15)
TestData.cs (15)
320public static string GetSharedFxVersion() => GetTestDataValue("SharedFxVersion"); 322public static string GetDefaultNetCoreTargetFramework() => GetTestDataValue("DefaultNetCoreTargetFramework"); 324public static string GetMicrosoftNETCoreAppVersion() => GetTestDataValue("MicrosoftNETCoreAppRefVersion"); 326public static string GetReferencePackSharedFxVersion() => GetTestDataValue("ReferencePackSharedFxVersion"); 328public static string GetRepositoryCommit() => GetTestDataValue("RepositoryCommit"); 330public static string GetSharedFxRuntimeIdentifier() => GetTestDataValue("TargetRuntimeIdentifier"); 332public static string GetSharedFrameworkBinariesFromRepo() => GetTestDataValue("SharedFrameworkBinariesFromRepo"); 334public static string GetSharedFxDependencies() => GetTestDataValue("SharedFxDependencies"); 336public static string GetTargetingPackDependencies() => GetTestDataValue("TargetingPackDependencies"); 338public static string GetRuntimeTargetingPackDependencies() => GetTestDataValue("RuntimeTargetingPackDependencies"); 340public static string GetAspNetCoreTargetingPackDependencies() => GetTestDataValue("AspNetCoreTargetingPackDependencies"); 342public static string GetPackagesFolder() => GetTestDataValue("PackagesFolder"); 344public static string GetPackageLayoutRoot() => GetTestDataValue("PackageLayoutRoot"); 346public static bool VerifyAncmBinary() => string.Equals(GetTestDataValue("VerifyAncmBinary"), "true", StringComparison.OrdinalIgnoreCase); 348public static bool VerifyPackageAssemblyVersions() => string.Equals(GetTestDataValue("VerifyPackageAssemblyVersions"), "true", StringComparison.OrdinalIgnoreCase);