Skip to content

Commit

Permalink
Bump JetBrains.Profiler.SelfApi: 2.5.2->2.5.9
Browse files Browse the repository at this point in the history
Support latest dotTrace and dotMemory
  • Loading branch information
AndreyAkinshin committed Aug 6, 2024
1 parent bf0a49d commit 3d34edb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Profiler.SelfApi" Version="2.5.2" />
<PackageReference Include="JetBrains.Profiler.SelfApi" Version="2.5.9" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/BenchmarkDotNet.Diagnostics.dotMemory/DotMemoryTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void Init()
{
logger.WriteLineInfo("Ensuring that dotMemory prerequisite is installed...");
var progress = new Progress(logger, "Installing DotMemory");
DotMemory.EnsurePrerequisiteAsync(progress, nugetUrl, nugetApi, downloadTo).Wait();
DotMemory.InitAsync(progress, nugetUrl, nugetApi, downloadTo).Wait();
logger.WriteLineInfo("dotMemory prerequisite is installed");
logger.WriteLineInfo($"dotMemory runner path: {GetRunnerPath()}");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="JetBrains.Profiler.SelfApi" Version="2.5.2" />
<PackageReference Include="JetBrains.Profiler.SelfApi" Version="2.5.9" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void Init(DiagnoserActionParameters parameters)
{
logger.WriteLineInfo("Ensuring that dotTrace prerequisite is installed...");
var progress = new Progress(logger, "Installing DotTrace");
DotTrace.EnsurePrerequisiteAsync(progress, nugetUrl, nugetApi, downloadTo).Wait();
DotTrace.InitAsync(progress, nugetUrl, nugetApi, downloadTo).Wait();
logger.WriteLineInfo("dotTrace prerequisite is installed");
logger.WriteLineInfo($"dotTrace runner path: {GetRunnerPath()}");
}
Expand Down

0 comments on commit 3d34edb

Please sign in to comment.