Deprecate UseFastPDBLinking
This is no longer supported in VS2026
This commit is contained in:
@@ -951,10 +951,12 @@ namespace Flax.Build.Platforms
|
||||
if (linkEnvironment.DebugInformation)
|
||||
{
|
||||
// Generate debug information
|
||||
if (Toolset != WindowsPlatformToolset.v140 && linkEnvironment.UseFastPDBLinking)
|
||||
#pragma warning disable CS0618 // X is obsolete
|
||||
if (Toolset >= WindowsPlatformToolset.v141 && Toolset <= WindowsPlatformToolset.v144 && linkEnvironment.UseFastPDBLinking)
|
||||
{
|
||||
args.Add("/DEBUG:FASTLINK");
|
||||
}
|
||||
#pragma warning restore CS0618 // X is obsolete
|
||||
else if (linkEnvironment.UseFullDebugInformation)
|
||||
{
|
||||
args.Add("/DEBUG:FULL");
|
||||
|
||||
Reference in New Issue
Block a user