Skip to content

Commit eea8af9

Browse files
PhantomDaveCopilot
andauthored
refactor(app.config): remove redundant comment about UploadHttpLink u… (#54)
* refactor(app.config): remove redundant comment about UploadHttpLink usage * Upgrade backend to .NET 10 (#55) * Initial plan * Update backend to .NET 10 Co-authored-by: PhantomDave <34485699+PhantomDave@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: PhantomDave <34485699+PhantomDave@users.noreply.github.com> --------- Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
1 parent 7606c9b commit eea8af9

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

Directory.Packages.props

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
<PackageVersion Include="BananaCakePop.Middleware" Version="17.0.0" />
1414

1515
<!-- Entity Framework Core -->
16-
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="9.0.11" />
17-
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.11" />
18-
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.11" />
16+
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="10.0.0" />
17+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0" />
18+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.0" />
1919
<PackageVersion Include="Microsoft.EntityFrameworkCore.DynamicLinq" Version="9.6.10" />
20-
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.4" />
20+
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0-rc.2" />
2121

2222
<!-- Authentication & Authorization -->
23-
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.11" />
23+
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0" />
2424

2525
<!-- File Processing -->
2626
<PackageVersion Include="CsvHelper" Version="33.1.0" />

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
22

33
WORKDIR /src
44

PhantomDave.BankTracking.Api/PhantomDave.BankTracking.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<LangVersion>preview</LangVersion>

PhantomDave.BankTracking.Data/PhantomDave.BankTracking.Data.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
</PropertyGroup>

PhantomDave.BankTracking.Library/PhantomDave.BankTracking.Library.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net9.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<RootNamespace>PhantomDave.BankTracking.Library</RootNamespace>

frontend/src/app/app.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export const appConfig: ApplicationConfig = {
5151
return { headers };
5252
});
5353

54-
// Use UploadHttpLink to support GraphQL multipart requests for file uploads
5554
const uploadLink = new UploadHttpLink({ uri: environment.graphqlUri });
5655

5756
return {

0 commit comments

Comments
 (0)