Skip to content

Commit

Permalink
Nuget Updates - .netcore 3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
enkodellc committed May 13, 2020
1 parent c9cb60e commit 7cfcb65
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 29 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,9 @@ This project is licensed under the terms of the [MIT license](LICENSE).
- [Demo for Development Branch - SSB](https://blazor-server.quarella.net/)
- [Demo for Development Branch - CSB](https://blazor-wasm.quarella.net/)

### 0.8.2 - Master branch
- Nuget Package updates

### 0.8.1 Stable - Master branch
- Blazor WebAssembly 3.2.0 Preview 5
- Nuget Package updates
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</RestoreAdditionalProjectSources>
<LangVersion>8.0</LangVersion>
<RazorLangVersion>3.0</RazorLangVersion>
<Version>0.8.1</Version>
<Version>0.8.2</Version>
<Authors>Keith Fimreite</Authors>
<Company>EnkodeLLC</Company>
<Title>Blazor Boilerplate Client</Title>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.1</TargetFramework>
<RazorLangVersion>3.0</RazorLangVersion>
<LangVersion>8.0</LangVersion>
<Version>0.8.1</Version>
<Version>0.8.2</Version>
<Authors>Keith Fimreite</Authors>
<Company>EnkodeLLC</Company>
<Title>Blazor Boilerplate Server</Title>
Expand Down Expand Up @@ -39,9 +39,9 @@

<ItemGroup>
<PackageReference Include="MatBlazor" Version="2.5.0-preview-005" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
<PackageReference Include="System.Net.Http.Json" Version="3.2.0-preview3.20175.8" />
<PackageReference Include="Toolbelt.Blazor.LoadingBar" Version="12.0.0" />
Expand Down
3 changes: 2 additions & 1 deletion src/BlazorBoilerplate.CommonUI/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
{
await base.OnInitializedAsync();

await Task.Delay(TimeSpan.FromSeconds(3)).ContinueWith((_) => {
await Task.Delay(TimeSpan.FromSeconds(3)).ContinueWith((_) =>
{
this.lazySnackbarIsOpen = true;
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</section>
<footer class="page-footer">
<div class="flex-1">
© 2020 <a href="//blazorboilerplate.com">Blazor Boilerplate</a> Version 0.8.1 - Developed by <a href="https://keithfimreite.com" target="_blank">Enkode LLC</a>
© 2020 <a href="//blazorboilerplate.com">Blazor Boilerplate</a> Version 0.8.2 - Developed by <a href="https://keithfimreite.com" target="_blank">Enkode LLC</a>
</div>
</footer>
</MatAppBarContent>
Expand Down
12 changes: 12 additions & 0 deletions src/BlazorBoilerplate.Server/.config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "3.1.3",
"commands": [
"dotnet-ef"
]
}
}
}
28 changes: 14 additions & 14 deletions src/BlazorBoilerplate.Server/BlazorBoilerplate.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
https://dotnet.myget.org/F/blazor-dev/api/v3/index.json;
</RestoreAdditionalProjectSources>
<LangVersion>8.0</LangVersion>
<Version>0.8.1</Version>
<Version>0.8.2</Version>
<Authors>Keith Fimreite</Authors>
<Company>EnkodeLLC</Company>
<Title>Blazor Boilerplate Server</Title>
Expand Down Expand Up @@ -62,34 +62,34 @@
<PackageReference Include="IdentityServer4.EntityFramework" Version="3.1.3" />
<PackageReference Include="IdentityServer4.AspNetIdentity" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Blazor.HttpClient" Version="3.2.0-preview3.20168.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.4" />
<PackageReference Include="Microsoft.Azure.KeyVault" Version="3.0.5" />
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.4.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.4" />

<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.3">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.3">
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.3" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.1.4" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.2" />
<PackageReference Include="NSwag.AspNetCore" Version="13.4.2" />
<PackageReference Include="NSwag.AspNetCore" Version="13.5.0" />
<PackageReference Include="Serilog" Version="2.9.1-dev-01177" />
<PackageReference Include="Serilog.AspNetCore" Version="3.3.0-dev-00161" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.1.1-dev-00224" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.2.0-dev-00239" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0-dev-00876" />
<PackageReference Include="MailKit" Version="2.6.0" />
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="5.4.1-dev-00328" />
<PackageReference Include="Serilog.Sinks.MSSqlServer" Version="5.4.1-dev-00334" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/BlazorBoilerplate.Shared/BlazorBoilerplate.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<LangVersion>8.0</LangVersion>
<Version>0.8.1</Version>
<Version>0.8.2</Version>
<Authors>Keith Fimreite</Authors>
<Company>EnkodeLLC</Company>
<Title>Blazor Boilerplate Shared</Title>
Expand Down Expand Up @@ -38,8 +38,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.1.3" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.1.3" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="3.1.4" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.1.4" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="System.ComponentModel.Annotations" Version="4.7.0" />
</ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions src/BlazorBoilerplate.Storage/BlazorBoilerplate.Storage.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<PackageReference Include="IdentityServer4" Version="3.1.3" />
<PackageReference Include="IdentityServer4.EntityFramework" Version="3.1.3" />
<PackageReference Include="IdentityServer4.EntityFramework.Storage" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="3.1.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.3">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 7cfcb65

Please sign in to comment.