Skip to content

Commit

Permalink
update gitversion
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm360 committed Nov 19, 2024
1 parent 277782a commit 0fc878b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 9 deletions.
2 changes: 2 additions & 0 deletions src/BeeNet.Client/BeeClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ public class BeeClient : IBeeClient, IDisposable
public const int ChunkStreamWSReceiveBufferSize = SwarmFeedChunk.MaxChunkSize;
public const int ChunkStreamWSSendBufferSize = SwarmFeedChunk.MaxChunkSize;
public const int DefaultPort = 1633;
#pragma warning disable CA1051
public readonly TimeSpan DefaultTimeout = TimeSpan.FromMinutes(10);
#pragma warning restore CA1051

// Fields.
private readonly BeeGeneratedClient generatedClient;
Expand Down
4 changes: 1 addition & 3 deletions src/BeeNet.Client/BeeNet.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>

<GitVersionTargetFramework>net8.0</GitVersionTargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="6.0.2">
<PackageReference Include="GitVersion.MsBuild" Version="6.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
4 changes: 1 addition & 3 deletions src/BeeNet.Core/BeeNet.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>

<GitVersionTargetFramework>net8.0</GitVersionTargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="6.0.2">
<PackageReference Include="GitVersion.MsBuild" Version="6.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 2 additions & 0 deletions src/BeeNet.Core/Models/SwarmChunk.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ namespace Etherna.BeeNet.Models
public class SwarmChunk
{
// Fields.
#pragma warning disable CA1051
protected readonly byte[] _data;
protected readonly byte[] _span;
#pragma warning restore CA1051

// Consts.
public const int DataSize = 4096;
Expand Down
4 changes: 1 addition & 3 deletions src/BeeNet.Util/BeeNet.Util.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,11 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>

<GitVersionTargetFramework>net8.0</GitVersionTargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BouncyCastle.Cryptography" Version="2.4.0" />
<PackageReference Include="GitVersion.MsBuild" Version="6.0.2">
<PackageReference Include="GitVersion.MsBuild" Version="6.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 0fc878b

Please sign in to comment.