Skip to content

Commit

Permalink
release: v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GZTimeWalker committed Sep 13, 2022
1 parent 42b6279 commit fff3b68
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GZCTF/CTFServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyVersion>0.10.2</AssemblyVersion>
<AssemblyVersion>0.11.0</AssemblyVersion>
<Description>GZ::CTF $(VITE_APP_GIT_NAME)-$(VITE_APP_GIT_SHA) build at $(VITE_APP_BUILD_TIMESTAMP)</Description>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion GZCTF/ClientApp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gzctf-client",
"version": "0.10.2",
"version": "0.11.0",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
5 changes: 4 additions & 1 deletion GZCTF/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@
options.Configuration = constr;
});

signalrBuilder.AddStackExchangeRedis(constr);
signalrBuilder.AddStackExchangeRedis(constr, options =>
{
options.Configuration.ChannelPrefix = "GZCTF";
});
}

#endregion Cache
Expand Down

0 comments on commit fff3b68

Please sign in to comment.