Skip to content

Commit 6eff9fd

Browse files
committed
Include System.Windows.Forms only if not CORECLR
1 parent fa0854c commit 6eff9fd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/Microsoft.PowerShell.PSReadLine/KillYank.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
using System.Collections.Generic;
77
using System.Diagnostics.CodeAnalysis;
88
using System.Management.Automation.Language;
9-
//using System.Windows.Forms;
9+
#if !CORECLR
10+
using System.Windows.Forms;
11+
#endif
1012

1113
namespace Microsoft.PowerShell
1214
{

0 commit comments

Comments
 (0)