Skip to content

Commit 950a62e

Browse files
committed
Upgrade to Perfetto Trace_processor_shell.exe v45 which officialy includes debug .pdb and fixes binskim errors, among other improvements
1 parent 0d92ad6 commit 950a62e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

PerfettoCds/PerfettoCds.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5-
<Version>1.5.6</Version>
5+
<Version>1.6.2</Version>
66
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
77
<Authors>Microsoft</Authors>
88
<Company>Microsoft Corp.</Company>
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Google.Protobuf" Version="3.25.0">
19+
<PackageReference Include="Google.Protobuf" Version="3.27.1">
2020
<GeneratePathProperty>true</GeneratePathProperty>
2121
</PackageReference>
2222
<PackageReference Include="Microsoft.Performance.SDK" Version="1.0.27" />
@@ -29,7 +29,7 @@
2929
<Target Name="DownloadTraceProcessorShell">
3030
<!-- Keep in sync with other DownloadTraceProcessorShell Targets -->
3131
<!-- Download the trace_processor.exe from Perfetto's GitHub release and copy it to the output directory-->
32-
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v38.0/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
32+
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v45.0/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3333
<Unzip SourceFiles="$(TargetDir)\windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3434
<Copy SourceFiles="$(TargetDir)\windows-amd64\trace_processor_shell.exe" DestinationFolder="$(TargetDir)" />
3535
<RemoveDir Directories="$(TargetDir)\windows-amd64" />

PerfettoCds/pluginManifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://raw.githubusercontent.com/microsoft/microsoft-performance-toolkit-sdk/main/src/PluginsSystem/Tools/Microsoft.Performance.Toolkit.Plugins.Cli/Manifest/PluginManifestSchema.json",
33
"identity": {
44
"id": "Microsoft.Performance.Toolkit.Plugins.PerfettoPlugin",
5-
"version": "1.5.6"
5+
"version": "1.6.2"
66
},
77
"displayName": "Perfetto for Android and Chromium",
88
"description": "Processes Android system and user traces, as well as Chromium based browser performance trace files",

PerfettoProcessor/PerfettoProcessor.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.1</TargetFramework>
5-
<Version>1.5.6</Version>
5+
<Version>1.6.2</Version>
66
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
77
<Authors>Microsoft</Authors>
88
<Company>Microsoft Corp.</Company>
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Google.Protobuf" Version="3.25.0">
19+
<PackageReference Include="Google.Protobuf" Version="3.27.1">
2020
<GeneratePathProperty>true</GeneratePathProperty>
2121
</PackageReference>
2222
</ItemGroup>

PerfettoUnitTest/PerfettoUnitTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<Target Name="DownloadTraceProcessorShell">
3030
<!-- Keep in sync with other DownloadTraceProcessorShell Targets -->
3131
<!-- Download the trace_processor.exe from Perfetto's GitHub release and copy it to the output directory-->
32-
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v38.0/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
32+
<DownloadFile SourceUrl="https://github.com/google/perfetto/releases/download/v45.0/windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3333
<Unzip SourceFiles="$(TargetDir)\windows-amd64.zip" DestinationFolder="$(TargetDir)" />
3434
<Copy SourceFiles="$(TargetDir)\windows-amd64\trace_processor_shell.exe" DestinationFolder="$(TargetDir)" />
3535
<RemoveDir Directories="$(TargetDir)\windows-amd64" />

0 commit comments

Comments
 (0)