dotnet-installer/tools/MigrationDefaultsConstructor/project.json
Jeff Kluge 595a768e30 Custom logger for MSBuild to receive telemetry events (#4551)
* Upgrade MSBuild references to 15.1.0-preview-000370-00

* Custom logger for MSBuild to receive telemetry events

Had to make the telemetry session ID a static variable so that the forwarding app could use it.

I've tested this all manually and will be writing tests after everyone signs off on the implementation here.
2016-10-31 16:16:39 -07:00

23 lines
497 B
JSON
Executable file

{
"version": "1.0.0-*",
"buildOptions": {
"debugType": "portable",
"emitEntryPoint": true
},
"dependencies": {},
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.1"
},
"dotnet": {
"target": "project"
},
"Microsoft.Build.Runtime": "15.1.0-preview-000370-00"
},
"imports": ["dnxcore50", "portable-net45+win8"]
}
}
}