VS2015 CTP をインストールし、vNext ConsoleApplication を作成して、NodaTime を使用したいと考えています。
次のように依存関係を追加しました。
"dependencies": {
"NodaTime": "1.3.1"
},
パッケージは復元されますが、ソリューションをコンパイルしようとすると、次の警告が表示されます。
Type NodaTime.Instant exists in the package: NodaTime 1.3.1, Supported frameworks: .NETFramework 3.5-Client;.NETPortable-net40+sl50+win+wpa81+wp80+MonoAndroid10+MonoTouch10+xamarinios10
タイプはコンパイラによって単に見つからないため、次のように伝えられます。
The type or namespace name 'NodaTime' could not be found (are you missing a using directive or an assembly reference?)
それを修正する方法についてのアイデアはありますか?それが存在するフレームワークの依存関係として追加することもできますか?