Hi,
I’ve been crawling the web on this issue with Unity Cloud Build, where I can locally build just fine my project, but Unity Cloud Build fails everytime for the same reason: Not finding required 3rd party DLL files.
Now I’ve checked: The required DLL’s do exist in the repo. If I do fresh checkout locally and build → works fine, no errors. That being said, I no longer have any .gitignore files that would exclude the DLLs from version control. Still, the Unity Cloud Build logs suggest that those DLLs do not exist, here’s excerpt from the build log:
936: [Unity] -----CompilerOutput:-stdout–exitcode: 1–compilationhadfailure: True–outfile: Temp/Assembly-CSharp.dll
937: [Unity] Compilation failed: 22 error(s), 0 warnings
938: [Unity] Assets/ProCore/ProBuilder/API Examples/Icosphere FFT/Scripts/IcoBumpin.cs(6,19): error CS0234: The type or namespace name Common' does not exist in the namespace
ProBuilder2’. Are you missing an assembly reference?
939: [Unity] Assets/ProCore/ProBuilder/API Examples/Icosphere FFT/Scripts/IcoBumpin.cs(7,19): error CS0234: The type or namespace name MeshOperations' does not exist in the namespace
ProBuilder2’. Are you missing an assembly reference?
940: [Unity] Assets/ProCore/ProBuilder/API Examples/Misc/HueCube.cs(4,19): error CS0234: The type or namespace name Common' does not exist in the namespace
ProBuilder2’. Are you missing an assembly reference?
941: [Unity] Assets/ProCore/ProBuilder/API Examples/Procedural Mesh/ExtrudeRandomEdges.cs(6,19): error CS0234: The type or namespace name Common' does not exist in the namespace
ProBuilder2’. Are you missing an assembly reference?
942: [Unity] Assets/ProCore/ProBuilder/API Examples/Procedural Mesh/ExtrudeRandomEdges.cs(7,19): error CS0234: The type or namespace name MeshOperations' does not exist in the namespace
ProBuilder2’. Are you missing an assembly reference?
943: [Unity] Assets/ProCore/ProBuilder/API Examples/Runtime Editing/RuntimeEdit.cs(5,19): error CS0234: The type or namespace name Common' does not exist in the namespace
ProBuilder2’. Are you missing an assembly reference?
944: [Unity] Assets/ProCore/ProBuilder/API Examples/Vertex Colors/HighlightNearestFace.cs(3,19): error CS0234: The type or namespace name Common' does not exist in the namespace
ProBuilder2’. Are you missing an assembly reference?
…
2271: [Unity] Ignoring ‘Assets/ORK Framework/DLL/Editor/ORKFrameworkEditor.dll’ because it wasn’t found
2272: [Unity] Ignoring ‘Assets/ORK Framework/DLL/ORKFramework.dll’ because it wasn’t found
2273: [Unity] Ignoring ‘Assets/ORK Framework/DLL/ORKFrameworkCore.dll’ because it wasn’t found
2274: [Unity] Ignoring ‘Assets/ProCore/ProBuilder/Classes/ClassesLib/KdTreeLib.dll’ because it wasn’t found
2275: [Unity] Ignoring ‘Assets/ProCore/ProBuilder/Classes/ClassesLib/Poly2Tri.dll’ because it wasn’t found
2276: [Unity] Ignoring ‘Assets/ProCore/ProBuilder/Classes/ClassesLib/pb_Stl.dll’ because it wasn’t found
2277: [Unity] Ignoring ‘Assets/ProCore/ProBuilder/Classes/ProBuilderCore-Unity5.dll’ because it wasn’t found
2278: [Unity] Ignoring ‘Assets/ProCore/ProBuilder/Classes/ProBuilderMeshOps-Unity5.dll’ because it wasn’t found
2279: [Unity] Ignoring ‘Assets/ProCore/ProBuilder/Editor/ProBuilderEditor-Unity5.dll’ because it wasn’t found
Any suggestions what could be the reason for this?