|
// <auto-generated>
using System.Reflection;
namespace Microsoft.AspNetCore.Mvc.Testing
{
internal static partial class Resources
{
private static global::System.Resources.ResourceManager s_resourceManager;
internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(Resources)));
internal static global::System.Globalization.CultureInfo Culture { get; set; }
#if !NET20
[global::System.Runtime.CompilerServices.MethodImpl(global::System.Runtime.CompilerServices.MethodImplOptions.AggressiveInlining)]
#endif
internal static string GetResourceString(string resourceKey, string defaultValue = null) => ResourceManager.GetString(resourceKey, Culture);
private static string GetResourceString(string resourceKey, string[] formatterNames)
{
var value = GetResourceString(resourceKey);
if (formatterNames != null)
{
for (var i = 0; i < formatterNames.Length; i++)
{
value = value.Replace("{" + formatterNames[i] + "}", "{" + i + "}");
}
}
return value;
}
/// <summary>The provided Type '{0}' does not belong to an assembly with an entry point. A common cause for this error is providing a Type from a class library.</summary>
internal static string @InvalidAssemblyEntryPoint => GetResourceString("InvalidAssemblyEntryPoint");
/// <summary>The provided Type '{0}' does not belong to an assembly with an entry point. A common cause for this error is providing a Type from a class library.</summary>
internal static string FormatInvalidAssemblyEntryPoint(object p0)
=> string.Format(Culture, GetResourceString("InvalidAssemblyEntryPoint"), p0);
/// <summary>No method 'public static {0} CreateHostBuilder(string[] args)' or 'public static {1} CreateWebHostBuilder(string[] args)' found on '{2}'. Alternatively, {3} can be extended and '{4}' or '{5}' can be overridden to provide your own instance.</summary>
internal static string @MissingBuilderMethod => GetResourceString("MissingBuilderMethod");
/// <summary>No method 'public static {0} CreateHostBuilder(string[] args)' or 'public static {1} CreateWebHostBuilder(string[] args)' found on '{2}'. Alternatively, {3} can be extended and '{4}' or '{5}' can be overridden to provide your own instance.</summary>
internal static string FormatMissingBuilderMethod(object p0, object p1, object p2, object p3, object p4, object p5)
=> string.Format(Culture, GetResourceString("MissingBuilderMethod"), p0, p1, p2, p3, p4, p5);
/// <summary>Can't find '{0}'. This file is required for functional tests to run properly. There should be a copy of the file on your source project bin folder. If that is not the case, make sure that the property PreserveCompilationContext is set to true on your proje ...</summary>
internal static string @MissingDepsFile => GetResourceString("MissingDepsFile");
/// <summary>Can't find '{0}'. This file is required for functional tests to run properly. There should be a copy of the file on your source project bin folder. If that is not the case, make sure that the property PreserveCompilationContext is set to true on your proje ...</summary>
internal static string FormatMissingDepsFile(object p0, object p1)
=> string.Format(Culture, GetResourceString("MissingDepsFile"), p0, p1);
}
}
|