Skip to content

Commit

Permalink
bump common
Browse files Browse the repository at this point in the history
  • Loading branch information
0xor1 committed Apr 1, 2024
1 parent c4a96d3 commit ddd05cd
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Dnsk.Api/Dnsk.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Shared" Version="3.0.15" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.19" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
4 changes: 2 additions & 2 deletions Dnsk.Client.Test/Dnsk.Client.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Client" Version="3.0.15" />
<PackageReference Include="0xor1.Common.Server" Version="3.0.16" />
<PackageReference Include="0xor1.Common.Client" Version="3.0.19" />
<PackageReference Include="0xor1.Common.Server" Version="3.0.19" />
<PackageReference Include="bunit" Version="1.25.3" />
<PackageReference Include="coverlet.msbuild" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
4 changes: 2 additions & 2 deletions Dnsk.Client/Dnsk.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<ItemGroup>
<PackageReference Include="DartSassBuilder" Version="1.0.0" />
<PackageReference Include="0xor1.Common.Client" Version="3.0.15" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.15" />
<PackageReference Include="0xor1.Common.Client" Version="3.0.19" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.19" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
4 changes: 2 additions & 2 deletions Dnsk.Db/Dnsk.Db.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Server" Version="3.0.16" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.15" />
<PackageReference Include="0xor1.Common.Server" Version="3.0.19" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.19" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion Dnsk.DevServer/Dnsk.DevServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Server" Version="3.0.16" />
<PackageReference Include="0xor1.Common.Server" Version="3.0.19" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion Dnsk.Eps.Test/Dnsk.Eps.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Server" Version="3.0.16" />
<PackageReference Include="0xor1.Common.Server" Version="3.0.19" />
<PackageReference Include="coverlet.msbuild" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
10 changes: 5 additions & 5 deletions Dnsk.Eps/CounterEps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ internal static class CounterEps
return counter;
}

public static IReadOnlyList<IRpcEndpoint> Eps { get; } =
new List<IRpcEndpoint>()
public static IReadOnlyList<IEp> Eps { get; } =
new List<IEp>()
{
new RpcEndpoint<Get, Counter>(
new Ep<Get, Counter>(
CounterRpcs.Get,
async (ctx, req) =>
await ctx.DbTx<DnskDb, Counter>(
Expand All @@ -50,7 +50,7 @@ await ctx.DbTx<DnskDb, Counter>(
false
)
),
new RpcEndpoint<Nothing, Counter>(
new Ep<Nothing, Counter>(
CounterRpcs.Increment,
async (ctx, _) =>
await ctx.DbTx<DnskDb, Counter>(
Expand All @@ -68,7 +68,7 @@ await ctx.DbTx<DnskDb, Counter>(
}
)
),
new RpcEndpoint<Nothing, Counter>(
new Ep<Nothing, Counter>(
CounterRpcs.Decrement,
async (ctx, _) =>
await ctx.DbTx<DnskDb, Counter>(
Expand Down
2 changes: 1 addition & 1 deletion Dnsk.Eps/Dnsk.Eps.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Server" Version="3.0.16" />
<PackageReference Include="0xor1.Common.Server" Version="3.0.19" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
6 changes: 3 additions & 3 deletions Dnsk.Eps/Eps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ namespace Dnsk.Eps;

public static class DnskEps
{
private static IReadOnlyList<IRpcEndpoint>? _eps;
public static IReadOnlyList<IRpcEndpoint> Eps
private static IReadOnlyList<IEp>? _eps;
public static IReadOnlyList<IEp> Eps
{
get
{
if (_eps == null)
{
var eps =
(List<IRpcEndpoint>)
(List<IEp>)
new CommonEps<DnskDb>(
5,
CounterEps.OnAuthActivation,
Expand Down
2 changes: 1 addition & 1 deletion Dnsk.I18n/Dnsk.I18n.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Shared" Version="3.0.15" />
<PackageReference Include="0xor1.Common.Shared" Version="3.0.19" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion Dnsk.Server/Dnsk.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="0xor1.Common.Server" Version="3.0.16" />
<PackageReference Include="0xor1.Common.Server" Version="3.0.19" />
<PackageReference Include="CSharpier.MsBuild" Version="0.26.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit ddd05cd

Please sign in to comment.