diff --git a/Src/IronPythonTest/Cases/CaseGenerator.cs b/Src/IronPythonTest/Cases/CaseGenerator.cs index b50e7b5b1..b1f39575b 100644 --- a/Src/IronPythonTest/Cases/CaseGenerator.cs +++ b/Src/IronPythonTest/Cases/CaseGenerator.cs @@ -108,6 +108,7 @@ private bool EvaluateExpression(string expression) { string filter = expression; var replacements = new OrderedDictionary() { // variables + { "$(FRAMEWORK)", IronPython.Runtime.ClrModule.TargetFramework }, { "$(IS_NETCOREAPP)", IronPython.Runtime.ClrModule.IsNetCoreApp.ToString() }, { "$(IS_NETSTANDARD)", IronPython.Runtime.ClrModule.TargetFramework.StartsWith(".NETStandard", StringComparison.Ordinal).ToString() }, { "$(IS_MONO)", IronPython.Runtime.ClrModule.IsMono.ToString() },