Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. {
  2. "version": "1.0.0-*",
  3.  
  4. "dependencies": {
  5. "NETStandard.Library": "1.6.0"
  6. },
  7.  
  8. "frameworks": {
  9. "netstandard1.6": {
  10. "imports": "dnxcore50"
  11. }
  12. }
  13. }
  14.  
  15. And this is a `project.json` of the ASP.NET Project:
  16. {
  17. "dependencies": {
  18. "Microsoft.NETCore.App": {
  19. "version": "1.0.0",
  20. "type": "platform"
  21. },
  22. "Microsoft.AspNetCore.Mvc": "1.0.0",
  23. "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
  24. "Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
  25. "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
  26. "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
  27. "Microsoft.Extensions.Configuration.Json": "1.0.0",
  28. "Microsoft.Extensions.Logging": "1.0.0",
  29. "Microsoft.Extensions.Logging.Console": "1.0.0",
  30. "Microsoft.Extensions.Logging.Debug": "1.0.0",
  31. "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0"
  32. },
  33.  
  34. "tools": {
  35. "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
  36. },
  37.  
  38. "frameworks": {
  39. "netcoreapp1.0": {
  40. "imports": [
  41. "dotnet5.6",
  42. "portable-net45+win8"
  43. ]
  44. }
  45. },
  46.  
  47. "buildOptions": {
  48. "emitEntryPoint": true,
  49. "preserveCompilationContext": true
  50. },
  51.  
  52. "runtimeOptions": {
  53. "configProperties": {
  54. "System.GC.Server": true
  55. }
  56. },
  57.  
  58. "publishOptions": {
  59. "include": [
  60. "wwwroot",
  61. "Views",
  62. "Areas/**/Views",
  63. "appsettings.json",
  64. "web.config"
  65. ]
  66. },
  67.  
  68. "scripts": {
  69. "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
  70. }
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement