Fix .NET version to use selection for consoles with fixed setup

This commit is contained in:
Wojtek Figat
2025-07-15 13:34:43 +02:00
parent 2d2c5411cd
commit 7fd278a689
8 changed files with 40 additions and 14 deletions

View File

@@ -195,4 +195,9 @@ bool GDKPlatformTools::OnPostProcess(CookingData& data, GDKPlatformSettings* pla
return false;
}
int32 GDKPlatformTools::GetDotnetVersion() const
{
return GAME_BUILD_DOTNET_RUNTIME_MIN_VER;
}
#endif

View File

@@ -26,6 +26,7 @@ public:
public:
// [PlatformTools]
int32 GetDotnetVersion() const override;
DotNetAOTModes UseAOT() const override;
bool OnDeployBinaries(CookingData& data) override;
};