Advertisement
Guest User

Untitled

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