Skip to content

Commit ebcadfe

Browse files
committed
Change base global.son to .NET 8
1 parent 604d72a commit ebcadfe

File tree

5 files changed

+51
-2
lines changed

5 files changed

+51
-2
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "6.0.400",
3+
"version": "8.0.100",
44
"rollForward": "major"
55
}
66
}
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": "#bc3215",
4+
"activityBar.background": "#bc3215",
5+
"activityBar.foreground": "#e7e7e7",
6+
"activityBar.inactiveForeground": "#e7e7e799",
7+
"activityBarBadge.background": "#06390f",
8+
"activityBarBadge.foreground": "#e7e7e7",
9+
"commandCenter.border": "#e7e7e799",
10+
"sash.hoverBorder": "#bc3215",
11+
"statusBar.background": "#8e2610",
12+
"statusBar.debuggingBackground": "#10788e",
13+
"statusBar.debuggingForeground": "#e7e7e7",
14+
"statusBar.foreground": "#e7e7e7",
15+
"statusBarItem.hoverBackground": "#bc3215",
16+
"statusBarItem.remoteBackground": "#8e2610",
17+
"statusBarItem.remoteForeground": "#e7e7e7",
18+
"titleBar.activeBackground": "#8e2610",
19+
"titleBar.activeForeground": "#e7e7e7",
20+
"titleBar.inactiveBackground": "#8e261099",
21+
"titleBar.inactiveForeground": "#e7e7e799"
22+
},
23+
"peacock.color": "#8e2610"
24+
}

projects/caching/redis-cache/redis-cache.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<ImplicitUsings>true</ImplicitUsings>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="6.0.0" />
7+
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.0" />
88
</ItemGroup>
99
</Project>
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}") = "redis-cache", "redis-cache.csproj", "{BC824EB5-3C00-4F92-AA77-92779383D76C}"
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+
{BC824EB5-3C00-4F92-AA77-92779383D76C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{BC824EB5-3C00-4F92-AA77-92779383D76C}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{BC824EB5-3C00-4F92-AA77-92779383D76C}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{BC824EB5-3C00-4F92-AA77-92779383D76C}.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 = {9DE75704-7216-4378-B621-CFB1AAA9EC11}
24+
EndGlobalSection
25+
EndGlobal

0 commit comments

Comments
 (0)