Skip to content

Commit 9a34bcf

Browse files
committed
Update package and build.bat
1 parent 72019d7 commit 9a34bcf

File tree

5 files changed

+102
-3
lines changed

5 files changed

+102
-3
lines changed

projects/mvc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MVC (47)
1+
# MVC (50)
22

33
| Sections | |
44
| -------------------------------------------------------------- | --- |

projects/mvc/build.bat

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
dotnet build api
2+
dotnet build api-problem-details
3+
dotnet build api-problem-details-2
4+
dotnet build api-versioning
5+
dotnet build hello-world
6+
dotnet build jwt
7+
dotnet build localization\mvc-localization-1
8+
dotnet build localization\mvc-localization-2
9+
dotnet build localization\mvc-localization-3
10+
dotnet build localization\mvc-localization-4
11+
dotnet build localization\mvc-localization-5
12+
dotnet build localization\mvc-localization-6
13+
dotnet build localization\mvc-localization-7
14+
dotnet build localization\mvc-localization-8
15+
dotnet build localization\mvc-localization-9
16+
dotnet build localization\mvc-localization-10
17+
dotnet build model-binding-from-query
18+
dotnet build model-binding-from-route
19+
dotnet build mvc-infer-dependency-from-action
20+
dotnet build mvc-output-xml
21+
dotnet build newtonsoft-json
22+
dotnet build nswag
23+
dotnet build nswag-2
24+
dotnet build output-formatter-syndication
25+
dotnet build razor-class-library\razor-class-library-1
26+
dotnet build razor-class-library\razor-class-library-with-controllers
27+
dotnet build razor-class-library\razor-class-library-with-static-files
28+
dotnet build result-filestream
29+
dotnet build result-json
30+
dotnet build result-physicalfile
31+
dotnet build routing\routing-1
32+
dotnet build routing\routing-2
33+
dotnet build routing\routing-3
34+
dotnet build routing\routing-4
35+
dotnet build routing\routing-5
36+
dotnet build routing\routing-6
37+
dotnet build routing\routing-7
38+
dotnet build routing\routing-8
39+
dotnet build routing\routing-9
40+
dotnet build tag-helper\tag-helper-1
41+
dotnet build tag-helper\tag-helper-2
42+
dotnet build tag-helper\tag-helper-3
43+
dotnet build tag-helper\tag-helper-4
44+
dotnet build tag-helper\tag-helper-5
45+
dotnet build tag-helper\tag-helper-img
46+
dotnet build tag-helper\tag-helper-link
47+
dotnet build view-component\view-component-1
48+
dotnet build view-component\view-component-2
49+
dotnet build view-component\view-component-3
50+
dotnet build view-component\view-component-4
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"workbench.colorCustomizations": {
3+
"activityBar.activeBackground": "#ebb4de",
4+
"activityBar.background": "#ebb4de",
5+
"activityBar.foreground": "#15202b",
6+
"activityBar.inactiveForeground": "#15202b99",
7+
"activityBarBadge.background": "#687e22",
8+
"activityBarBadge.foreground": "#e7e7e7",
9+
"commandCenter.border": "#15202b99",
10+
"sash.hoverBorder": "#ebb4de",
11+
"statusBar.background": "#e18bcc",
12+
"statusBar.debuggingBackground": "#8be1a0",
13+
"statusBar.debuggingForeground": "#15202b",
14+
"statusBar.foreground": "#15202b",
15+
"statusBarItem.hoverBackground": "#d762ba",
16+
"statusBarItem.remoteBackground": "#e18bcc",
17+
"statusBarItem.remoteForeground": "#15202b",
18+
"titleBar.activeBackground": "#e18bcc",
19+
"titleBar.activeForeground": "#15202b",
20+
"titleBar.inactiveBackground": "#e18bcc99",
21+
"titleBar.inactiveForeground": "#15202b99"
22+
},
23+
"peacock.color": "#e18bcc"
24+
}

projects/mvc/jwt/jwt.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ImplicitUsings>true</ImplicitUsings>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.15.1" />
8-
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.15.1" />
7+
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.4.1" />
8+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.4.1" />
99
</ItemGroup>
1010
</Project>

projects/mvc/jwt/jwt.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.5.002.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "jwt", "jwt.csproj", "{A0F8E38E-F6EE-4A24-97E5-3429AF05BF8A}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{A0F8E38E-F6EE-4A24-97E5-3429AF05BF8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{A0F8E38E-F6EE-4A24-97E5-3429AF05BF8A}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{A0F8E38E-F6EE-4A24-97E5-3429AF05BF8A}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{A0F8E38E-F6EE-4A24-97E5-3429AF05BF8A}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {D54F338C-7BBA-45F9-ACB5-5F12D3F1BF9C}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)