Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. {
  2. "version": "1.0.0-*",
  3. "buildOptions": {
  4. "emitEntryPoint": true
  5. },
  6.  
  7. "dependencies": {
  8. "Microsoft.NETCore.App": {
  9. "type": "platform",
  10. "version": "1.0.0"
  11. },
  12. },
  13.  
  14. "tools": {
  15. "MyTool": "1.0.0-*"
  16. },
  17.  
  18. "frameworks": {
  19. "netcoreapp1.0": {
  20. "imports": "dnxcore50"
  21. }
  22. }
  23. }
  24.  
  25. {
  26. "version": "1.0.0-*",
  27. "buildOptions": {
  28. "emitEntryPoint": true,
  29. "outputName": "dotnet-mytool"
  30. },
  31.  
  32.  
  33. "dependencies": {
  34. "Microsoft.NETCore.App": {
  35. "type": "platform",
  36. "version": "1.0.0"
  37. }
  38. },
  39.  
  40. "frameworks": {
  41. "netcoreapp1.0": {
  42. "imports": "dnxcore50"
  43. }
  44. }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement