Skip to content

Commit

Permalink
.net 8 angular updates ch24
Browse files Browse the repository at this point in the history
  • Loading branch information
christiannagel committed Jun 15, 2024
1 parent 9e10384 commit 23edb8f
Show file tree
Hide file tree
Showing 9 changed files with 2,994 additions and 1,593 deletions.
2 changes: 0 additions & 2 deletions 3_Web/ASPNETCore/AngularSample/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
*.userosscache
*.sln.docstates

cache

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

Expand Down
4 changes: 2 additions & 2 deletions 3_Web/ASPNETCore/AngularSample/AngularSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<SpaRoot>ClientApp\</SpaRoot>
<SpaProxyServerUrl>https://localhost:44471</SpaProxyServerUrl>
<SpaProxyServerUrl>https://localhost:44443</SpaProxyServerUrl>
<SpaProxyLaunchCommand>npm start</SpaProxyLaunchCommand>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="7.0.5" />
<PackageReference Include="Microsoft.AspNetCore.SpaProxy" Version="7.0.18" />
</ItemGroup>

<ItemGroup>
Expand Down
15 changes: 7 additions & 8 deletions 3_Web/ASPNETCore/AngularSample/AngularSample.sln
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.6.33617.297
VisualStudioVersion = 17.11.35005.142
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AngularSample", "AngularSample.csproj", "{5B72061C-D51E-4811-A866-8D1844E76F56}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AngularSample", "AngularSample.csproj", "{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5B72061C-D51E-4811-A866-8D1844E76F56}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5B72061C-D51E-4811-A866-8D1844E76F56}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5B72061C-D51E-4811-A866-8D1844E76F56}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5B72061C-D51E-4811-A866-8D1844E76F56}.Release|Any CPU.Build.0 = Release|Any CPU
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{939AF47A-0ACE-4158-9C2C-3D67775FB5F3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {3598DF52-EA84-4111-A8E7-91BBCC7DD4B4}
SolutionGuid = {810CF0FD-178B-4C48-921F-76438B32B4FC}
EndGlobalSection
EndGlobal
9 changes: 3 additions & 6 deletions 3_Web/ASPNETCore/AngularSample/ClientApp/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
"maximumWarning": "1mb",
"maximumError": "2mb"
},
{
"type": "anyComponentStyle",
Expand Down Expand Up @@ -132,8 +132,5 @@
}
}
},
"defaultProject": "AngularSample",
"cli": {
"analytics": "fd540459-143b-4d53-a086-f483f83d1848"
}
"defaultProject": "AngularSample"
}
Loading

0 comments on commit 23edb8f

Please sign in to comment.