Marius Hanl 32be459e54 Fix ContextMenu Copy Error is off in MSBuild Panel | 6 ماه پیش | |
---|---|---|
.. | ||
build_scripts | 6 ماه پیش | |
doc_classes | 1 سال پیش | |
editor | 6 ماه پیش | |
glue | 6 ماه پیش | |
icons | 1 سال پیش | |
mono_gd | 7 ماه پیش | |
thirdparty | 2 سال پیش | |
utils | 9 ماه پیش | |
.editorconfig | 6 ماه پیش | |
.gitignore | 2 سال پیش | |
Directory.Build.props | 2 سال پیش | |
Directory.Build.targets | 2 سال پیش | |
README.md | 1 سال پیش | |
SCsub | 9 ماه پیش | |
__init__.py | 5 سال پیش | |
class_db_api_json.cpp | 6 ماه پیش | |
class_db_api_json.h | 1 سال پیش | |
config.py | 9 ماه پیش | |
csharp_script.cpp | 6 ماه پیش | |
csharp_script.h | 6 ماه پیش | |
global.json | 6 ماه پیش | |
godotsharp_defs.h | 1 سال پیش | |
godotsharp_dirs.cpp | 1 سال پیش | |
godotsharp_dirs.h | 1 سال پیش | |
interop_types.h | 1 سال پیش | |
managed_callable.cpp | 8 ماه پیش | |
managed_callable.h | 8 ماه پیش | |
mono_gc_handle.cpp | 1 سال پیش | |
mono_gc_handle.h | 1 سال پیش | |
register_types.cpp | 1 سال پیش | |
register_types.h | 1 سال پیش | |
signal_awaiter_utils.cpp | 1 سال پیش | |
signal_awaiter_utils.h | 1 سال پیش |
module_mono_enabled=yes
.sh
<godot_binary> --generate-mono-glue ./modules/mono/glue
sh
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir ./bin
The paths specified in these examples assume the command is being run from the Godot source root.
We distribute the API assemblies, our source generators, and our custom MSBuild project SDK as NuGet packages. This is all transparent to the user, but it can make things complicated during development.
In order to use Godot with a development of those packages, we must create a local NuGet source where MSBuild can find them. This can be done with the .NET CLI:
dotnet nuget add source ~/MyLocalNugetSource --name MyLocalNugetSource
The Godot NuGet packages must be added to that local source. Additionally, we must make sure there are no other versions of the package in the NuGet cache, as MSBuild may pick one of those instead.
In order to simplify this process, the build_assemblies.py
script provides
the following --push-nupkgs-local
option:
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir ./bin \
--push-nupkgs-local ~/MyLocalNugetSource
This option ensures the packages will be added to the specified local NuGet source and that conflicting versions of the package are removed from the NuGet cache. It's recommended to always use this option when building the C# solutions during development to avoid mistakes.
Follow the above instructions but build Godot with the precision=double argument to scons
When building the NuGet packages, specify --precision=double
- for example:
./modules/mono/build_scripts/build_assemblies.py --godot-output-dir ./bin \
--push-nupkgs-local ~/MyLocalNugetSource --precision=double