Skip to content

Commit

Permalink
chore(deps): ef-core (#14130)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkoSekulic authored Nov 21, 2024
1 parent 6a1351e commit e5e3055
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install dotnet ef # Version should be the same as Migrations docker file and project
run: dotnet tool install --version 8.0.7 --global dotnet-ef
run: dotnet tool install --version 9.0.0 --global dotnet-ef

- name: Check if migrations script can be generated
run: |
Expand Down
2 changes: 1 addition & 1 deletion backend/Migrations.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app

COPY . .

RUN dotnet tool install --version 8.0.7 --global dotnet-ef
RUN dotnet tool install --version 9.0.0 --global dotnet-ef
ENV PATH="$PATH:/root/.dotnet/tools"

ENV OidcLoginSettings__FetchClientIdAndSecretFromRootEnvFile=false
Expand Down
4 changes: 2 additions & 2 deletions backend/packagegroups/NuGet.props
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
<PackageReference Update="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
<PackageReference Update="HtmlAgilityPack" Version="1.11.67" />
<PackageReference Update="Microsoft.DiaSymReader.Native" Version="1.7.0" />
<PackageReference Update="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Tools" Version="8.0.10" />
<PackageReference Update="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.1" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0" />
<PackageReference Update="Microsoft.FeatureManagement.AspNetCore" Version="3.5.0" />
<PackageReference Update="Scrutor" Version="4.2.2" />
<PackageReference Update="Polly" Version="8.4.2" />
Expand Down
6 changes: 0 additions & 6 deletions backend/src/Designer/Designer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
<Configurations>Release;Debug</Configurations>
</PropertyGroup>

<PropertyGroup>
<CodeAnalisysCompatibleVersion>4.5.0</CodeAnalisysCompatibleVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Altinn.App.Core" />
<PackageReference Include="Altinn.Authorization.ABAC" />
Expand Down Expand Up @@ -59,8 +55,6 @@
<PackageReference Include="NuGet.Versioning" />
<PackageReference Include="Polly" />
<PackageReference Include="Scrutor" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(CodeAnalisysCompatibleVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="$(CodeAnalisysCompatibleVersion)" />
</ItemGroup>

<ItemGroup>
Expand Down
7 changes: 0 additions & 7 deletions backend/tests/Designer.Tests/Designer.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
<TestRepoPrefix>test-repo-</TestRepoPrefix>
</PropertyGroup>

<PropertyGroup>
<CodeAnalisysCompatibleVersion>4.5.0</CodeAnalisysCompatibleVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Altinn.ApiClients.Maskinporten" />
<PackageReference Include="Basic.Reference.Assemblies" />
Expand All @@ -37,9 +33,6 @@
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyModel" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(CodeAnalisysCompatibleVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Features" Version="$(CodeAnalisysCompatibleVersion)" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(CodeAnalisysCompatibleVersion)" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit e5e3055

Please sign in to comment.