1

How to create .exe of Unity project.I have created by build but it also creates extra folders .Such as dll files ,monobleeding Edge folder etc.While i need a single .exe file to give to my client. So he could simplry run and use it.

aqeel
  • 87
  • 1
  • 13
  • 2
    So it is a folder where the exe is inside. What is the problem? There is still no installation needed. If it is mandatory that you deliver a single file you can zip the folder. – aalmigthy Feb 07 '20 at 08:28
  • You need to include all those files and folders where you built your project into, missing any will likely result in your game not working – BugFinder Feb 07 '20 at 08:58
  • Does this answer your question: [Embedding DLLs in a compiled executable](https://stackoverflow.com/questions/189549/embedding-dlls-in-a-compiled-executable) ? – derHugo Feb 07 '20 at 10:03
  • OK i will try this solution – aqeel Feb 07 '20 at 10:47

1 Answers1

1

In order to make your unity3D project working outside of the Unity editor, you need to provide to your client the generated folder from the Unity Build because all the dll are needed by the runtime of the .exe.

loic.lopez
  • 2,013
  • 2
  • 21
  • 42