Skip to content

Commit

Permalink
#416 - Upgrade to .NET 6.
Browse files Browse the repository at this point in the history
  • Loading branch information
maraf committed May 31, 2022
1 parent d29fb89 commit 0e43998
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -252,3 +252,5 @@ paket-files/
*.sln.iml

*.db
*.db-shm
*.db-wal
4 changes: 0 additions & 4 deletions src/Money.Api.Shared/Money.Api.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
<RootNamespace>Money</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="5.0.2" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Money.Accounts.Models\Money.Accounts.Models.csproj" />
<ProjectReference Include="..\Money.Accounts\Money.Accounts.csproj" />
Expand Down
2 changes: 1 addition & 1 deletion src/Money.Api/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"Jwt": {
"SecurityKey": "abcdefghijklmnop",
"Issuer": "https://localhost",
"Issuer": "http://localhost",
"ExpiryInDays": 14
},
"Database": {
Expand Down
10 changes: 5 additions & 5 deletions src/Money.Blazor.Host/Money.Blazor.Host.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
<RootNamespace>Money</RootNamespace>
<VersionPrefix>1.16.1.0</VersionPrefix>
<PublishDomain>app.money.neptuo.com</PublishDomain>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<UseBlazorWebAssembly>true</UseBlazorWebAssembly>
<BlazorWebAssemblyLoadAllGlobalizationData>true</BlazorWebAssemblyLoadAllGlobalizationData>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Blazored.LocalStorage" Version="4.1.1" />
<PackageReference Include="Blazored.SessionStorage" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="5.0.6" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="6.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="6.0.5" PrivateAssets="all" />
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="6.0.5" />
<PackageReference Include="Microsoft.AspNetCore.WebUtilities" Version="2.2.0" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Money.Blazor.Host/global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "5.0.100-rc.1.20452.10"
"version": "6.0.105"
}
}

0 comments on commit 0e43998

Please sign in to comment.