Como usar System.Windows.Forms na biblioteca de classes do .NET Core

Eu criei a biblioteca de classes do .NET Core e tente construí-la no framework net40. Eu quero usar a classe Clipboard do assembly System.Windows.Forms. Como posso fazer isso?

Meu arquivo project.json:

{
    "version": "1.0.0-*",

    "dependencies": {
        "NETStandard.Library": "1.6.0"
    },

    "frameworks": {
        "netstandard1.6": {
            "imports": "dnxcore50",
            "buildOptions": {
                "define": [
                    "NETCORE"
                ]
            },
            "dependencies": {
                "System.Threading": "4.0.11",
                "System.Threading.Thread": "4.0.0",
                "System.Threading.Tasks":  "4.0.11"
                }
        },
        "net40": {
            "buildOptions": {
                "define": [
                    "NET40"
                    ]
                },
            "dependencies": {
                // dependency should be here but there is no such dll
            }
        }
    }
}

Todo o meu código específico net40 está em NET40 define. Alguma ideia?

questionAnswers(2)

yourAnswerToTheQuestion