From bf2e7742789a4a27df8d36e85299f1a3bacb0b22 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Tue, 1 Nov 2016 18:15:05 -0400 Subject: [PATCH] [mcs] Accept and ignore command line args supported by csc that we don't .. support: /deterministic+ /deterministic- --- mcs/mcs/settings.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mcs/mcs/settings.cs b/mcs/mcs/settings.cs index 63c6c41d516..b3108a57014 100644 --- a/mcs/mcs/settings.cs +++ b/mcs/mcs/settings.cs @@ -1242,6 +1242,8 @@ namespace Mono.CSharp { case "/appconfig": case "/baseaddress": case "/deterministic": + case "/deterministic+": + case "/deterministic-": case "/errorendlocation": case "/errorlog": case "/features": -- 2.25.1