diff options
| author | Rémi Verschelde | 2017-10-28 11:35:15 +0200 |
|---|---|---|
| committer | GitHub | 2017-10-28 11:35:15 +0200 |
| commit | 87dbb716d9c99b03755cf2f875d6cdba51f8d356 (patch) | |
| tree | ff10f300e29e8c9ad0bf548a90b38b2c35bd2e3b /modules/mono/godotsharp_dirs.cpp | |
| parent | 44d4898a64b8590f8746313da000b204f628e275 (diff) | |
| parent | a2247d45fcc1211937bf5103b1fe575720a1d95e (diff) | |
| download | godot-87dbb716d9c99b03755cf2f875d6cdba51f8d356.tar.gz godot-87dbb716d9c99b03755cf2f875d6cdba51f8d356.tar.zst godot-87dbb716d9c99b03755cf2f875d6cdba51f8d356.zip | |
Diffstat (limited to 'modules/mono/godotsharp_dirs.cpp')
| -rw-r--r-- | modules/mono/godotsharp_dirs.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/mono/godotsharp_dirs.cpp b/modules/mono/godotsharp_dirs.cpp index 6bcf0e235..7cc2168b7 100644 --- a/modules/mono/godotsharp_dirs.cpp +++ b/modules/mono/godotsharp_dirs.cpp @@ -122,7 +122,14 @@ private: #ifdef TOOLS_ENABLED mono_solutions_dir = mono_user_dir.plus_file("solutions"); build_logs_dir = mono_user_dir.plus_file("build_logs"); - String base_path = String("res://") + ProjectSettings::get_singleton()->get("application/config/name"); + + String name = ProjectSettings::get_singleton()->get("application/config/name"); + if (name.empty()) { + name = "UnnamedProject"; + } + + String base_path = String("res://") + name; + sln_filepath = ProjectSettings::get_singleton()->globalize_path(base_path + ".sln"); csproj_filepath = ProjectSettings::get_singleton()->globalize_path(base_path + ".csproj"); #endif |
