Skip to content

Commit 9758bb4

Browse files
committed
Free Coursework
* Add SharedSettings project * Add SlowCheetah nuget * Add PostgreSQL db
1 parent f807496 commit 9758bb4

21 files changed

+1290
-1682
lines changed

CodeLearn.Db/CodeLearn.Db.csproj

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,25 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.11" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.11">
10+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.16" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.16" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.16">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="6.0.11" />
17-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.11" />
18-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.11">
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="6.0.16" />
17+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.16">
1918
<PrivateAssets>all</PrivateAssets>
2019
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2120
</PackageReference>
21+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
22+
<PackageReference Include="Npgsql" Version="6.0.9" />
23+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.8" />
2224
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" />
2325
</ItemGroup>
2426

27+
<ItemGroup>
28+
<ProjectReference Include="..\SharedSettings\SharedSettings.csproj" />
29+
</ItemGroup>
30+
2531
</Project>

0 commit comments

Comments
 (0)