I\'ve just started working with DNX 1.0.0-rc1-update1 in VS2015. My first app is a \'Console Application (package)\' project. Everything works, except NLog logging. I suspect it
Use copyToOutput inside buildOptions:
copyToOutput
buildOptions
{ "buildOptions": { "copyToOutput": "NLog.config" } }
or for multiple files declare an array:
{ "buildOptions": { "copyToOutput": ["NLog.config", "testdata\\"] } }
To copy a directory remember to add the trailing \\.
\\