.NET 6

【.NET/C++】CLR Class Library(.NET Framework)프로젝트에서 Build할 때unresolved token~, unresolved external symbol~에러가 날 경우

이 프로젝트에서는 Windows표준 라이브러리가 디폴트로 인쿠르드되지 않기 때문에, Proejct → [프로젝트명] Properties → Linker → Input → Additional Dependencies 에서 $(CoreLibraryDependencies);%(AdditionalDependencies)과 같이 직접 설정해 주어야 한다고 한다. [Reference] https://stackoverflow.com/questions/11068973/vs-2010-error-lnk2028-unresolved-token-0a000342-extern-c-int-stdcall 프로젝트 타입 에러 메시지 프로젝트 프로퍼티 설정

.NET/C++ 2023.02.20

.NET과 .NET Framework의 차이

Visual Studio로 프로젝트를 생성할 때 .NET용과 .NET Framework로 나누어져 있는데, 어떤 차이가 있는지 궁금해서 구글링을 돌려본 결과는 다음과 같다. .NET .NET Core라고 부르는 것을 5버전부터 Core를 삭제하고 .NET으로 부른다고 한다. [원문] https://stackoverflow.com/questions/66758886/what-is-the-difference-between-net-and-net-framework-project-types What is the difference between .NET and .NET Framework project types? When I try to create a new project there is a different t..

.NET/일반 2023.02.20