dotnet publish - error NETSDK1047: Assets file '...\obj\project.assets.json' doesn't have a target for '...'
다양한 상황에서 이런 오류가 나올 수 있겠지만, 제 경우에는 .NET Core 3.x 이하의 프로젝트를 빌드할 때였습니다. 문제의 원인은, 동일한 디렉터리를 공유하면서 먼저 Linux용으로 빌드한 후, 윈도우용으로 빌드할 때 발생했는데요, 일례로 다음과 같이 먼저 빌드를 한 다음,
docker build -t net3_ubuntu18_build -f https://raw.githubusercontent.com/stjeong/sample_docker_script/main/dockerfile.ubuntu18.net3 .
docker run -v C:\temp:/app --name test --rm -it net3_ubuntu18_build /bin/bash -c "cd /app/ConsoleApp3 && dotnet build -c Release"
(이로 인해 리눅스용으로 빌드 부산물이 있는 와중에) 뒤이어 윈도우용으로 빌드했더니,
c:\temp\ConsoleApp3> dotnet publish -r win-x64 -c Release /p:SelfContained=true
이런 오류가 발생합니다.
C:\Program Files\dotnet\sdk\8.0.100\Sdks\Microsoft.NET.Sdk\targets\Microsoft.PackageDependencyResolution.targets(266,5)
: error NETSDK1047: Assets file 'c:\temp\ConsoleApp3\obj\project.assets.json' doesn't have a target for 'netcoreapp3.0/win-x64'. Ensure that restore has run and that you have included 'netcoreapp3.0' in the TargetFrameworks for your project. You may also need to include 'win-x64' in your project's RuntimeIdentifiers. [C:\temp\ConsoleApp3\ConsoleApp3.csproj]
메시지에서 언급하는 것처럼, 실제로 "c:\temp\ConsoleApp3\obj\project.assets.json" 파일을 보면 targets 항목에 ".../win-x64"가 없습니다.
{
"version": 3,
"targets": {
".NETCoreApp,Version=v3.0": {}
},
...[생략]...
}
이 문제를 해결하는 간단한 방법은, 빌드 전에 restore를 한 번 해주면 됩니다.
dotnet restore
그다음 다시 빌드하면,
dotnet publish -r win-x64 -c Release /p:SelfContained=true
빌드 과정에서 project.assets.json 파일을 재생성하고 그때는 targets 항목에 ".../win-x64"가 추가됩니다.
{
"version": 3,
"targets": {
".NETCoreApp,Version=v3.0": {},
".NETCoreApp,Version=v3.0/win-x64": {}
},
// ...[생략]...
}
재미있는 건, 동일한 상황으로 .NET 5 프로젝트를 대상으로 하면 저 현상이 발생하지 않습니다. 즉, restore를 하지 않아도 dotnet publish 단계에서 project.assets.json 파일을 재생성하고 targets 항목을 추가합니다. 다시 말해, 이 문제는 역사 속으로 그냥 사라질 것입니다. ^^
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]