Quick fix: Correct benchmark apps' branches

This commit is contained in:
Doug Bunting 2018-11-12 11:24:28 -08:00 committed by Doug Bunting
parent bf8058da25
commit a96b5cf5f8
2 changed files with 10 additions and 10 deletions

View File

@ -7,7 +7,7 @@
"PresetHeaders": "Json", "PresetHeaders": "Json",
"ReadyStateText": "Application started.", "ReadyStateText": "Application started.",
"Source": { "Source": {
"BranchOrCommit": "dev", "BranchOrCommit": "master",
"Project": "benchmarkapps/BasicApi/BasicApi.csproj", "Project": "benchmarkapps/BasicApi/BasicApi.csproj",
"Repository": "https://github.com/aspnet/mvc.git" "Repository": "https://github.com/aspnet/mvc.git"
} }
@ -19,20 +19,20 @@
}, },
"BasicApi.GetUsingQueryString": { "BasicApi.GetUsingQueryString": {
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/dev/benchmarkapps/BasicApi/getWithToken.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicApi/getWithToken.lua"
}, },
"Path": "/pet/findByStatus", "Path": "/pet/findByStatus",
"Query": "?status=available" "Query": "?status=available"
}, },
"BasicApi.GetUsingRouteValue": { "BasicApi.GetUsingRouteValue": {
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/dev/benchmarkapps/BasicApi/getWithToken.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicApi/getWithToken.lua"
}, },
"Path": "/pet/-1" "Path": "/pet/-1"
}, },
"BasicApi.GetUsingRouteValueWithoutAuthorization": { "BasicApi.GetUsingRouteValueWithoutAuthorization": {
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/dev/benchmarkapps/BasicApi/getWithToken.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicApi/getWithToken.lua"
}, },
"Path": "/pet/anonymous/-1" "Path": "/pet/anonymous/-1"
}, },
@ -41,14 +41,14 @@
}, },
"BasicApi.Post": { "BasicApi.Post": {
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/dev/benchmarkapps/BasicApi/postJsonWithToken.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicApi/postJsonWithToken.lua"
}, },
"Path": "/pet" "Path": "/pet"
}, },
"BasicApi.PostWithoutDb": { "BasicApi.PostWithoutDb": {
"Path": "/pet/add-pet", "Path": "/pet/add-pet",
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/release/2.2/benchmarkapps/BasicApi/postJsonWithToken.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicApi/postJsonWithToken.lua"
} }
} }
} }

View File

@ -7,7 +7,7 @@
"PresetHeaders": "Html", "PresetHeaders": "Html",
"ReadyStateText": "Application started.", "ReadyStateText": "Application started.",
"Source": { "Source": {
"BranchOrCommit": "dev", "BranchOrCommit": "master",
"Project": "benchmarkapps/BasicViews/BasicViews.csproj", "Project": "benchmarkapps/BasicViews/BasicViews.csproj",
"Repository": "https://github.com/aspnet/mvc.git" "Repository": "https://github.com/aspnet/mvc.git"
} }
@ -20,19 +20,19 @@
}, },
"BasicViews.Post": { "BasicViews.Post": {
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/dev/benchmarkapps/BasicViews/postWithToken.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicViews/postWithToken.lua"
}, },
"Path": "/Home/Index" "Path": "/Home/Index"
}, },
"BasicViews.PostIgnoringToken": { "BasicViews.PostIgnoringToken": {
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/dev/benchmarkapps/BasicViews/postWithToken.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicViews/postWithToken.lua"
}, },
"Path": "/Home/IndexWithoutToken" "Path": "/Home/IndexWithoutToken"
}, },
"BasicViews.PostWithoutToken": { "BasicViews.PostWithoutToken": {
"ClientProperties": { "ClientProperties": {
"Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/dev/benchmarkapps/BasicViews/post.lua" "Scripts": "https://raw.githubusercontent.com/aspnet/Mvc/master/benchmarkapps/BasicViews/post.lua"
}, },
"Path": "/Home/IndexWithoutToken" "Path": "/Home/IndexWithoutToken"
} }