0
Windows 10とVisual Studio 2017を使用して、.netコア2.0フレームワーク用の単純なコンソールアプリケーションを生成しました。私が表示しようとしているアプリで.netコア2.0でシンプルなコンソールアプリケーションエラーが発生しました
MessageBox.Show( "Test msg"); > Microsoft.NETCore.App - - > System.Windows.dll生成されたプロジェクトで
using System;
using System.Windows.Forms; // error
namespace Window
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
MessageBox.Show("Message from main (primary) thread"); // error
Console.ReadLine();
}
}
}
は、それが依存関係のSDKを追加します。
なぜこのエラーが発生しますか?