Skip to content

Commit

Permalink
Changing database to NPGSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
KrystianKempski committed Feb 13, 2024
1 parent fff1f62 commit 8800641
Show file tree
Hide file tree
Showing 18 changed files with 279 additions and 2,224 deletions.
7 changes: 5 additions & 2 deletions DA_Business/DA_Business.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
<PackageReference Include="Syncfusion.Blazor.Grid" Version="24.2.3" />
<PackageReference Include="Syncfusion.Blazor.RichTextEditor" Version="24.2.3" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="24.2.3" />
</ItemGroup>

<ItemGroup>
Expand Down
9 changes: 6 additions & 3 deletions DA_Common/DA_Common.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Library</OutputType>
Expand All @@ -8,8 +8,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
<PackageReference Include="Syncfusion.Blazor.Grid" Version="24.2.3" />
<PackageReference Include="Syncfusion.Blazor.RichTextEditor" Version="24.2.3" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="24.2.3" />
</ItemGroup>

</Project>
7 changes: 5 additions & 2 deletions DA_DataAccess/DA_DataAccess.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AutoMapper" Version="12.0.1" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="AutoMapper" Version="13.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.15" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.15" />
Expand All @@ -18,6 +17,10 @@
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.15" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.15" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
<PackageReference Include="Syncfusion.Blazor.Grid" Version="24.2.3" />
<PackageReference Include="Syncfusion.Blazor.RichTextEditor" Version="24.2.3" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="24.2.3" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 8800641

Please sign in to comment.