Skip to content

Commit 51a3e35

Browse files
authoredFeb 8, 2025
Merge pull request #231 from ProfessionalCSharp/main
updates from main
2 parents f7387e5 + 84e3a23 commit 51a3e35

29 files changed

+8460
-5267
lines changed
 

‎2_Libs/Security/X509CertificateSample/X509CertificateSample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Azure.Identity" Version="1.11.0" />
11+
<PackageReference Include="Azure.Identity" Version="1.11.4" />
1212
<PackageReference Include="Azure.Security.KeyVault.Certificates" Version="4.5.1" />
1313
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.5.0" />
1414
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />

‎3_Web/ASPNETCore/AngularSample/.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
*.userosscache
88
*.sln.docstates
99

10-
cache
11-
1210
# User-specific files (MonoDevelop/Xamarin Studio)
1311
*.userprefs
1412

‎3_Web/ASPNETCore/AngularSample/AngularSample.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<Nullable>enable</Nullable>
66
<IsPackable>false</IsPackable>
77
<SpaRoot>ClientApp\</SpaRoot>
8-
<SpaProxyServerUrl>https://localhost:44471</SpaProxyServerUrl>
8+
<SpaProxyServerUrl>https://localhost:44443</SpaProxyServerUrl>
99
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
1010
<ImplicitUsings>enable</ImplicitUsings>
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="7.0.5" />
14+
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="7.0.18" />
1515
</ItemGroup>
1616

1717
<ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
1-
21
Microsoft Visual Studio Solution File, Format Version 12.00
32
# Visual Studio Version 17
4-
VisualStudioVersion = 17.6.33617.297
3+
VisualStudioVersion = 17.11.35005.142
54
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AngularSample", "AngularSample.csproj", "{5B72061C-D51E-4811-A866-8D1844E76F56}"
5+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AngularSample", "AngularSample.csproj", "{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}"
76
EndProject
87
Global
98
GlobalSection(SolutionConfigurationPlatforms) = preSolution
109
Debug|Any CPU = Debug|Any CPU
1110
Release|Any CPU = Release|Any CPU
1211
EndGlobalSection
1312
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{5B72061C-D51E-4811-A866-8D1844E76F56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{5B72061C-D51E-4811-A866-8D1844E76F56}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{5B72061C-D51E-4811-A866-8D1844E76F56}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{5B72061C-D51E-4811-A866-8D1844E76F56}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Release|Any CPU.Build.0 = Release|Any CPU
1817
EndGlobalSection
1918
GlobalSection(SolutionProperties) = preSolution
2019
HideSolutionNode = FALSE
2120
EndGlobalSection
2221
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {3598DF52-EA84-4111-A8E7-91BBCC7DD4B4}
22+
SolutionGuid = {810CF0FD-178B-4C48-921F-76438B32B4FC}
2423
EndGlobalSection
2524
EndGlobal

‎3_Web/ASPNETCore/AngularSample/ClientApp/angular.json

+3-6
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
"budgets": [
4141
{
4242
"type": "initial",
43-
"maximumWarning": "500kb",
44-
"maximumError": "1mb"
43+
"maximumWarning": "1mb",
44+
"maximumError": "2mb"
4545
},
4646
{
4747
"type": "anyComponentStyle",
@@ -132,8 +132,5 @@
132132
}
133133
}
134134
},
135-
"defaultProject": "AngularSample",
136-
"cli": {
137-
"analytics": "fd540459-143b-4d53-a086-f483f83d1848"
138-
}
135+
"defaultProject": "AngularSample"
139136
}

0 commit comments

Comments
 (0)
Please sign in to comment.