I installed .NET Core following the instructions at the link below
http://dotnet.github.io/getting-started/
and I was able to get my 'hello world' working using 'dotnet run'. However, I couldn't see an exe file that all the documentation around the internet seems to indicate it would generate.
Running 'dotnet publish' pretty much copies those files into a different folder with 2 less files (removes the pdb file and the extra dev configs).
What am I missing?
Update 1
Here is the project.json file I have
{
"version": "1.0.0-*",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0-rc2-23930"
}
},
"frameworks": {
"netstandard1.5": {}
}
}