ASP.NET 웹 구성 지침

구성 데이터는 Web.config라는 XML 파일에 저장

   

targetFramework . 이 특성은 웹 사이트의 대상이 되는 .NET Framework 버전을 지정합니다. 이 특성은 .NET Framework 4 이상 버전을 대상으로 하는 웹 사이트의 경우에만 포함해야 합니다. 

Visual Studio에서 이 특성은 대상 프레임워크 버전에서 사용할 수 있는 기능만 프로젝트에 사용되도록 하는 데 사용됩니다. 자세한 내용은  밑에

   

예제

<compilation debug="true"
optimizeCompilations="true"
targetFramework="4.0" />

   

원본 위치 <https://msdn.microsoft.com/ko-kr/library/ff400235(v=vs.100).aspx>

   

   

   

Targeting .NET Platforms

You can build apps for many platforms and services by downloading .NET Framework targeting packs and SDKs and using them with Visual Studio.

Check out the .NET Framework blog for information on new releases. Information on the Lifecycle Policy for various .NET Framework versions can be found on the Support Lifecycle Policy FAQ.

The downloads available differ by Visual Studio version. Pick your Visual Studio version by using the buttons below.

Visual Studio 2010Visual Studio 2012Visual Studio 2013Visual Studio 2015

.NET Framework

   

원본 위치 <http://getdotnet.azurewebsites.net/target-dotnet-platforms.html>

   

 

VS 2012 부터 .net 4.5 지원




+ Recent posts