Skip to content
This repository was archived by the owner on Jul 10, 2024. It is now read-only.

Commit 184adb5

Browse files
committed
3.0 GA & package updates
1 parent 19c485e commit 184adb5

32 files changed

+11285
-6790
lines changed

src/BackEnd/BackEnd.csproj

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

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0-preview*" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0-preview*" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.0.0-preview*">
10+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.0.0">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="3.0.0-preview*" />
17-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.0.0-preview*" />
18-
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0-rc2" />
19-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0-preview*">
16+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="3.0.0" />
17+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.0.0" />
18+
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0-*" />
19+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0">
2020
<PrivateAssets>all</PrivateAssets>
2121
</PackageReference>
2222
</ItemGroup>

src/BackEnd/Controllers/SessionsController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public async Task<ActionResult<List<SessionResponse>>> Get()
2727
var sessions = await _db.Sessions.AsNoTracking()
2828
.Include(s => s.Track)
2929
.Include(s => s.SessionSpeakers)
30-
.ThenInclude(ss => ss.Speaker)
30+
.ThenInclude(ss => ss.Speaker)
3131
.Select(m => m.MapSessionResponse())
3232
.ToListAsync();
3333

src/ConferenceDTO/ConferenceDTO.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="System.ComponentModel.Annotations" Version="4.5.0" />
8+
<PackageReference Include="System.ComponentModel.Annotations" Version="4.6.0" />
99
</ItemGroup>
1010
</Project>

src/FrontEnd/FrontEnd.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.0.0-preview*" />
10-
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.0.0-preview*" />
11-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.0.0-preview*" />
12-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.0.0-preview*">
9+
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="3.0.0" />
10+
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="3.0.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.0.0" />
12+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.0.0">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0-preview*" />
17-
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0-preview*" />
18-
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="3.0.0-preview*" />
16+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0" />
17+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.0.0" />
18+
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="3.0.0" />
1919
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
20-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0-preview*">
20+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0">
2121
<PrivateAssets>all</PrivateAssets>
2222
</PackageReference>
2323
</ItemGroup>

src/FrontEnd/Pages/Shared/_Layout.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
1010
</environment>
1111
<environment exclude="Development">
12-
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"
12+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/css/bootstrap.min.css"
1313
asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css"
1414
asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute"
1515
crossorigin="anonymous"
@@ -65,13 +65,13 @@
6565
<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.js"></script>
6666
</environment>
6767
<environment exclude="Development">
68-
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
68+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"
6969
asp-fallback-src="~/lib/jquery/dist/jquery.min.js"
7070
asp-fallback-test="window.jQuery"
7171
crossorigin="anonymous"
7272
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=">
7373
</script>
74-
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/js/bootstrap.bundle.min.js"
74+
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.bundle.min.js"
7575
asp-fallback-src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"
7676
asp-fallback-test="window.jQuery && window.jQuery.fn && window.jQuery.fn.modal"
7777
crossorigin="anonymous"

0 commit comments

Comments
 (0)