You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.json 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "dependencies": {
  3. "Luticate2.Utils": "0.2.*",
  4. "TestUtils": "0.1.*",
  5. "Microsoft.ApplicationInsights.AspNetCore": "1.0.2",
  6. "Microsoft.AspNetCore.Mvc": "1.1.0",
  7. "Microsoft.AspNetCore.Routing": "1.1.0",
  8. "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0",
  9. "Microsoft.AspNetCore.Server.Kestrel": "1.1.0",
  10. "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0",
  11. "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0",
  12. "Microsoft.Extensions.Configuration.Json": "1.1.0",
  13. "Microsoft.Extensions.Logging": "1.1.0",
  14. "Microsoft.Extensions.Logging.Console": "1.1.0",
  15. "Microsoft.Extensions.Logging.Debug": "1.1.0",
  16. "Microsoft.Extensions.Options.ConfigurationExtensions": "1.1.0",
  17. "Microsoft.NETCore.App": {
  18. "version": "1.0.1",
  19. "type": "platform"
  20. }
  21. },
  22. "tools": {
  23. "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
  24. },
  25. "frameworks": {
  26. "netcoreapp1.0": {
  27. "imports": [
  28. "dotnet5.6",
  29. "portable-net45+win8"
  30. ]
  31. }
  32. },
  33. "buildOptions": {
  34. "emitEntryPoint": true,
  35. "debugType": "portable",
  36. "preserveCompilationContext": true
  37. },
  38. "runtimeOptions": {
  39. "configProperties": {
  40. "System.GC.Server": true
  41. }
  42. },
  43. "publishOptions": {
  44. "include": [
  45. "wwwroot",
  46. "**/*.cshtml",
  47. "appsettings.json",
  48. "web.config"
  49. ]
  50. },
  51. "scripts": {
  52. "postpublish": [
  53. "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"
  54. ]
  55. }
  56. }