본문 바로가기
개발/Unreal

언리얼 5 - Framework was not found 에러 수정하기

by 피로물든딸기 2023. 3. 25.
반응형

Unreal 5 전체 링크

 

언리얼 5를 설치한 후에 프로젝트를 생성할 때, 블루프린트가 아닌 C++ 프로젝트를 생성해보자.

 

다음과 같이 프레임워크를 찾을 수 없다는 에러가 나오는 경우가 있다.

Running C:/Program Files/Epic Games/UE_5.1/Engine/Build/BatchFiles/Build.bat  -projectfiles -project="D:/github/Unreal/ArenaBattle/ArenaBattle.uproject" -game -rocket -progress
Running UnrealBuildTool: dotnet "..\..\Engine\Binaries\DotNET\UnrealBuildTool\UnrealBuildTool.dll" -projectfiles -project="D:/github/Unreal/ArenaBattle/ArenaBattle.uproject" -game -rocket -progress
It was not possible to find any compatible framework version

The specified framework 'Microsoft.NETCore.App', version '6.0.0' was not found.

  - Check application dependencies and target a framework version installed at:

      \

  - Alternatively, install the framework version '6.0.0'.

 

위의 경우 6.0.0 ver이 없다는 로그가 나왔으므로, 아래 링크에서 해당 버전을 설치하면 된다.

 

https://dotnet.microsoft.com/en-us/download

 

Download .NET (Linux, macOS, and Windows)

Free downloads for building and running .NET apps on Linux, macOS, and Windows. Runtimes, SDKs, and developer packs for .NET Framework, .NET, and ASP.NET.

dotnet.microsoft.com

 

오른쪽의 .NET 6.0 을 설치하였다.

 

설치가 완료되면 언리얼을 실행하면 된다.

 

프로젝트가 정상적으로 생성되었다.

반응형

댓글