CompatibilityVersion 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
주의
This API is obsolete and will be removed in a future version. Consider removing usages.
에서 구성 MvcOptions한 런타임 동작의 버전 호환성을 지정합니다.
public enum class CompatibilityVersion
public enum CompatibilityVersion
[System.Obsolete("This API is obsolete and will be removed in a future version. Consider removing usages.", DiagnosticId="ASP5001", UrlFormat="https://aka.ms/aspnetcore-warnings/{0}")]
public enum CompatibilityVersion
type CompatibilityVersion =
[<System.Obsolete("This API is obsolete and will be removed in a future version. Consider removing usages.", DiagnosticId="ASP5001", UrlFormat="https://aka.ms/aspnetcore-warnings/{0}")>]
type CompatibilityVersion =
Public Enum CompatibilityVersion
- 상속
-
CompatibilityVersion
- 특성
필드
Latest | 2147483647 | 설정의 기본값을 최신 릴리스와 MvcOptions 일치하도록 설정합니다. 이 값을 주의하여 사용합니다. 부 버전을 업그레이드하면 를 사용할 Latest때 호환성이 손상되는 변경이 발생합니다. |
Version_2_0 | 0 | ASP.NET Core MVC 2.0의 동작과 일치하도록 설정 MvcOptions 의 기본값을 설정합니다. |
Version_2_1 | 1 | ASP.NET Core MVC 2.1의 동작과 일치하도록 설정 MvcOptions 의 기본값을 설정합니다. |
Version_2_2 | 2 | ASP.NET Core MVC 2.2의 동작과 일치하도록 설정 MvcOptions 의 기본값을 설정합니다. |
Version_3_0 | 3 | ASP.NET Core MVC 3.0의 동작과 일치하도록 설정 및 기타 |
설명
호환성 버전을 설정하는 가장 좋은 방법은 애플리케이션의 ConfigureServices
메서드에서 또는 SetCompatibilityVersion(IMvcCoreBuilder, CompatibilityVersion) 를 사용하는 SetCompatibilityVersion(IMvcBuilder, CompatibilityVersion) 것입니다.
public class Startup
{
...
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
}
...
}
호환성 버전을 특정 버전으로 설정하면 다양한 설정의 기본값이 ASP.NET Core MVC의 특정 부 릴리스와 일치하도록 변경됩니다.