RonenNess / GeonBit.UI

UI system for MonoGame projects.
MIT License
467 stars 63 forks source link

Question about install #132

Closed 2ant closed 10 months ago

2ant commented 2 years ago

Hi, is it normal that i have .xnb files both in

Projets C#\Mono_GB\Mono_GB\bin\Debug\netcoreapp3.1\Content\GeonBit.UI

and in

Projets C#\Mono_GB\Mono_GB\Content\bin\DesktopGL\Content\GeonBit.UI
AristurtleDev commented 1 year ago

This is a normal part of how MonoGame builds content. The content builder itself is a separate process from "building your whole project".

For instance, if you delete your /bin directory then open the MGCB-Editor and tell it to build, you'll notice that it doesn't create that /bin/ directory again and put it all there. The content pipeline first builds to the /Content/bin directory.

When you're actual csproj is built, the built .xnb files are then copied from the /Content/bin directory into your projects /bin/` directory.