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

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