Skip to content

Commit

Permalink
Upgrade to ServiceStack 8.*
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Nov 15, 2023
1 parent 2b460e9 commit 426fe14
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions MyApp.ServiceInterface/MyApp.ServiceInterface.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ServiceStack" Version="6.*" />
<PackageReference Include="ServiceStack.Ormlite" Version="6.*" />
<PackageReference Include="ServiceStack" Version="8.*" />
<PackageReference Include="ServiceStack.Ormlite" Version="8.*" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion MyApp.ServiceModel/MyApp.ServiceModel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ServiceStack.Interfaces" Version="6.*" />
<PackageReference Include="ServiceStack.Interfaces" Version="8.*" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions MyApp.Tests/MyApp.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<PackageReference Include="NUnit" Version="3.*" />
<PackageReference Include="NUnit3TestAdapter" Version="4.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" />
<PackageReference Include="ServiceStack" Version="6.*" />
<PackageReference Include="ServiceStack.Kestrel" Version="6.*" />
<PackageReference Include="ServiceStack" Version="8.*" />
<PackageReference Include="ServiceStack.Kestrel" Version="8.*" />
</ItemGroup>

</Project>
12 changes: 6 additions & 6 deletions MyApp/MyApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="ServiceStack" Version="6.*" />
<PackageReference Include="ServiceStack.Blazor" Version="6.*" />
<PackageReference Include="ServiceStack.Mvc" Version="6.*" />
<PackageReference Include="ServiceStack.OrmLite.Sqlite.Data" Version="6.*" />
<PackageReference Include="ServiceStack.Extensions" Version="6.*" />
<PackageReference Include="ServiceStack.Server" Version="6.*" />
<PackageReference Include="ServiceStack" Version="8.*" />
<PackageReference Include="ServiceStack.Blazor" Version="8.*" />
<PackageReference Include="ServiceStack.Mvc" Version="8.*" />
<PackageReference Include="ServiceStack.OrmLite.Sqlite.Data" Version="8.*" />
<PackageReference Include="ServiceStack.Extensions" Version="8.*" />
<PackageReference Include="ServiceStack.Server" Version="8.*" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion MyApp/Pages/Account/Manage/ExternalLogins.razor
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
@if (_otherLogins?.Count > 0)
{
<Heading4>Add another service to log in.</Heading4>
<form id="link-login-form" class="form-horizontal" action="/Account/Manage/LinkExternalLogin" method="post">
<form id="link-login-form" class="mt-4 form-horizontal" action="/Account/Manage/LinkExternalLogin" method="post">
<AntiforgeryToken />
<div id="socialLoginList">
<p>
Expand Down
4 changes: 2 additions & 2 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="ServiceStack MyGet feed" value="https://www.myget.org/F/servicestack" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="ServiceStack Pre-Release" value="https://f.feedz.io/servicestack/pre-release/nuget/index.json" />
</packageSources>
</configuration>

0 comments on commit 426fe14

Please sign in to comment.