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.5KB

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