Skip to content

Commit 0281d5a

Browse files
committed
[r] CodeMaid
1 parent bfdaee4 commit 0281d5a

File tree

6 files changed

+12
-19
lines changed

6 files changed

+12
-19
lines changed

src/TesterApp/Controllers/Api/v1/TestOutController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ namespace TesterApp.Controllers.Api.v1;
88
public class TestOutController : Controller
99
{
1010
public override ControllerResponse Invoke() => new Simplify.Web.Json.Responses.Json(new TestViewModel { Prop1 = "Hello" });
11-
}
11+
}

src/TesterApp/Controllers/StatusController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ namespace TesterApp.Controllers;
77
public class StatusController : Controller
88
{
99
public override ControllerResponse Invoke() => Content("Service is running!");
10-
}
10+
}

src/TesterApp/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424

2525
app.UseSimplifyWeb();
2626

27-
await app.RunAsync();
27+
await app.RunAsync();

src/TesterApp/Properties/launchSettings.json

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,22 @@
11
{
2-
"iisSettings":
3-
{
2+
"iisSettings": {
43
"windowsAuthentication": false,
54
"anonymousAuthentication": true,
6-
"iisExpress":
7-
{
5+
"iisExpress": {
86
"applicationUrl": "http://localhost:5000",
97
"sslPort": 0
108
}
119
},
12-
"profiles":
13-
{
14-
"IIS Express":
15-
{
10+
"profiles": {
11+
"IIS Express": {
1612
"commandName": "IISExpress",
17-
"environmentVariables":
18-
{
13+
"environmentVariables": {
1914
"ASPNETCORE_ENVIRONMENT": "Development"
2015
}
2116
},
22-
"TesterApp":
23-
{
17+
"TesterApp": {
2418
"commandName": "Project",
25-
"environmentVariables":
26-
{
19+
"environmentVariables": {
2720
"ASPNETCORE_ENVIRONMENT": "Development"
2821
},
2922
"launchBrowser": true,

src/TesterApp/Setup/IocRegistrations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ public static IDIContainerProvider RegisterAll(this IDIContainerProvider provide
1414

1515
return provider;
1616
}
17-
}
17+
}

src/TesterApp/ViewModels/TestViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ public class TestViewModel
77
{
88
public string Prop1 { get; set; }
99
public string Prop2 { get; set; }
10-
}
10+
}

0 commit comments

Comments
 (0)