You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<value>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.</value>
<value>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.</value>
/// <typeparam name="TEntryPoint">A type in the entry point assembly of the application.
24
24
/// Typically the Startup or Program classes can be used.</typeparam>
25
+
/// <remarks>The default behavior of the <see cref="CreateServer(IWebHostBuilder)"/> implementation
26
+
/// creates a new <see cref="TestHost.TestServer"/> instance as an in-memory server to utilize for testing.
27
+
/// If the developers wants, they can override the <see cref="CreateServer(IWebHostBuilder)"/> method to return a customer <see cref="ITestServer"/> implementation,
28
+
/// and provide an adapter over a real web server, if needed. If done so, the <see cref="CreateClient()"/> and similar methods will
29
+
/// create <see cref="HttpClient"/> instances configured to interact with the provided test server instead.</remarks>
0 commit comments