Merge pull request #8 from tparnell8/beta8

Beta8
This commit is contained in:
Tommy Parnell
2015-10-17 18:16:05 -04:00
7 changed files with 23 additions and 29 deletions

View File

@@ -8,9 +8,9 @@ before_build:
- ps: "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}" - ps: "&{$Branch='dev';iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.ps1'))}"
- ps: dnvm upgrade - ps: dnvm upgrade
- ps: dnvm update-self - ps: dnvm update-self
- ps: dnvm install 1.0.0-beta7 - ps: dnvm install 1.0.0-beta8
- ps: dnvm list - ps: dnvm list
- ps: dnvm use 1.0.0-beta7 - ps: dnvm use 1.0.0-beta8
- ps: npm cache clean - ps: npm cache clean
- ps: npm install -g gulp bower - ps: npm install -g gulp bower
- ps: dnu restore - ps: dnu restore

View File

@@ -1,6 +1,6 @@
{ {
"projects": [ "src", "test" ], "projects": [ "src", "test" ],
"sdk": { "sdk": {
"version": "1.0.0-beta7" "version": "1.0.0-beta8"
} }
} }

View File

@@ -1,5 +1,4 @@
using System; using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading.Tasks; using System.Threading.Tasks;
@@ -10,7 +9,6 @@ using Microsoft.Framework.Configuration;
using Tweetinvi; using Tweetinvi;
using Tweetinvi.Core.Credentials; using Tweetinvi.Core.Credentials;
using Tweetinvi.Core.Enum; using Tweetinvi.Core.Enum;
using Tweetinvi.Core.Interfaces;
using Tweetinvi.Core.Parameters; using Tweetinvi.Core.Parameters;
namespace DotNetMashup.Web.Repositories namespace DotNetMashup.Web.Repositories

View File

@@ -65,13 +65,13 @@ namespace DotNetMashup.Web
if(env.IsDevelopment()) if(env.IsDevelopment())
{ {
app.UseBrowserLink(); app.UseBrowserLink();
app.UseErrorPage(); app.UseDeveloperExceptionPage();
} }
else else
{ {
// Add Error handling middleware which catches all application specific errors and // Add Error handling middleware which catches all application specific errors and
// send the request to the following path or controller action. // send the request to the following path or controller action.
app.UseErrorHandler("/Home/Error"); app.UseExceptionHandler("/Home/Error");
} }
// Add static files to the request pipeline. // Add static files to the request pipeline.

View File

@@ -1,2 +0,0 @@
server=Microsoft.AspNet.Server.WebListener
server.urls=http://localhost:5000

View File

@@ -3,18 +3,18 @@
"version": "1.0.0-*", "version": "1.0.0-*",
"dependencies": { "dependencies": {
"Microsoft.AspNet.Diagnostics": "1.0.0-beta7", "Microsoft.AspNet.Diagnostics": "1.0.0-beta8",
"Microsoft.AspNet.Mvc": "6.0.0-beta7", "Microsoft.AspNet.Mvc": "6.0.0-beta8",
"Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-beta7", "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-beta8",
"Microsoft.AspNet.Server.IIS": "1.0.0-beta7", "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta8",
"Microsoft.AspNet.Server.WebListener": "1.0.0-beta7", "Microsoft.AspNet.StaticFiles": "1.0.0-beta8",
"Microsoft.AspNet.StaticFiles": "1.0.0-beta7", "Microsoft.AspNet.Tooling.Razor": "1.0.0-beta8",
"Microsoft.AspNet.Tooling.Razor": "1.0.0-beta7", "Microsoft.AspNet.IISPlatformHandler": "1.0.0-beta8",
"Microsoft.Framework.Configuration.Json": "1.0.0-beta7", "Microsoft.Framework.Configuration.Json": "1.0.0-beta8",
"Microsoft.Framework.Logging": "1.0.0-beta7", "Microsoft.Framework.Logging": "1.0.0-beta8",
"Microsoft.Framework.Logging.Console": "1.0.0-beta7", "Microsoft.Framework.Logging.Console": "1.0.0-beta8",
"Microsoft.Framework.Logging.Debug": "1.0.0-beta7", "Microsoft.Framework.Logging.Debug": "1.0.0-beta8",
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-beta7", "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-beta8",
"Newtonsoft.Json": "7.0.1", "Newtonsoft.Json": "7.0.1",
"TweetinviAPI": "0.9.9.8", "TweetinviAPI": "0.9.9.8",
"Octokit": "0.16.0", "Octokit": "0.16.0",
@@ -22,7 +22,7 @@
}, },
"commands": { "commands": {
"web": "Microsoft.AspNet.Hosting --config hosting.ini" "web": "Microsoft.AspNet.Server.Kestrel"
}, },
"frameworks": { "frameworks": {

View File

@@ -2,10 +2,8 @@
<configuration> <configuration>
<system.webServer> <system.webServer>
<handlers> <handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" /> <add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
<remove name="OPTIONSVerbHandler" />
<remove name="TRACEVerbHandler" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
</handlers> </handlers>
<httpPlatform processPath="%DNX_PATH%" arguments="%DNX_ARGS%" stdoutLogEnabled="false" startupTimeLimit="3600" />
</system.webServer> </system.webServer>
</configuration> </configuration>