Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -230,4 +230,5 @@ _Pvt_Extensions
# FAKE - F# Make
.fake/

.angular/
.angular/
.idea/
2 changes: 1 addition & 1 deletion AspNetCore.SpaYarp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31612.314
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Net7WebApplicationBuilder", "samples\Net7WebApplicationBuilder\Net7WebApplicationBuilder.csproj", "{E3826EDD-0370-4A40-A1F9-1B07ABEBDDFD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Net8WebApplicationBuilder", "samples\Net8WebApplicationBuilder\Net8WebApplicationBuilder.csproj", "{E3826EDD-0370-4A40-A1F9-1B07ABEBDDFD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCore.SpaYarp", "src\AspNetCore.SpaYarp\AspNetCore.SpaYarp.csproj", "{03DE7E3B-0E21-49B5-8471-7E32E0A2D68C}"
EndProject
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.200",
"version": "8.0.100",
"rollForward": "latestFeature"
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- SpaYarp configuration -->
<SpaRoot>ClientApp\</SpaRoot>
<SpaClientUrl>https://localhost:44478</SpaClientUrl>
<SpaLaunchCommand>npm start</SpaLaunchCommand>
<RootNamespace>Net8WebApplicationBuilder</RootNamespace>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/AspNetCore.SpaYarp/AspNetCore.SpaYarp.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Description>An alternative approach to the new ASP.NET Core SPA templates in .NET 6. It uses YARP as proxy to forward requests to the SPA dev server.</Description>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<Description>An alternative approach to the new ASP.NET Core SPA templates in .NET 6/8. It uses YARP as proxy to forward requests to the SPA dev server.</Description>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
Expand All @@ -12,14 +12,14 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Bernd Hirschmann</Authors>
<Company>Guid.New GmbH</Company>
<Version>2.0.1</Version>
<Version>2.1.0</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>Readme.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Yarp.ReverseProxy" Version="2.0.1" />
<PackageReference Include="Yarp.ReverseProxy" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down