Skip to content

Commit

Permalink
version 5.1.3-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntyaDev committed Oct 7, 2024
1 parent b6e9959 commit dc0d574
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 3 additions & 1 deletion examples/CSharp/CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ServerGarbageCollection>false</ServerGarbageCollection>
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="NBomber" Version="5.4.0" />
<PackageReference Include="NBomber" Version="5.8.0-beta.6" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 4 additions & 2 deletions examples/FSharp/FSharp.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ServerGarbageCollection>false</ServerGarbageCollection>
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
</PropertyGroup>

<ItemGroup>
Expand All @@ -12,8 +14,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="FSharp.Core" Version="7.0.300" />
<PackageReference Include="NBomber" Version="5.4.0" />
<PackageReference Update="FSharp.Core" Version="8.0.400" />
<PackageReference Include="NBomber" Version="5.8.0-beta.6" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/NBomber.Http/HttpMetricsPlugin.fs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ type HttpMetricsPlugin(monitorVersions: HttpVersion seq) =
member this.GetHints() = Array.empty
member this.GetStats(stats) = Task.FromResult(new DataSet())

member this.Start() =
member this.Start(sessionInfo) =
_metricsGrabber <- Some (new HttpMetricsGrabber(_metricsProvider))
Task.CompletedTask

Expand Down
8 changes: 4 additions & 4 deletions src/NBomber.Http/NBomber.Http.fsproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>Anton Moldovan</Authors>
<Company>NBomber</Company>
<Version>5.1.2</Version>
<Version>5.1.3-beta.0</Version>
<Copyright>NBomber@2024</Copyright>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand All @@ -30,8 +30,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="NBomber.Contracts" Version="5.0.0" />
<PackageReference Update="FSharp.Core" Version="7.0.0" />
<PackageReference Include="NBomber.Contracts" Version="5.6.0-beta.11" />
<PackageReference Update="FSharp.Core" Version="8.0.400" />
</ItemGroup>

</Project>

0 comments on commit dc0d574

Please sign in to comment.