Skip to content

Commit 40f9a9c

Browse files
committed
Fix Telerik removal of WebFormats
1 parent 545ccbe commit 40f9a9c

File tree

6 files changed

+741
-7
lines changed

6 files changed

+741
-7
lines changed

FiddlerImportNetlog/FiddlerImportNetlog.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,14 @@
4343
<ItemGroup>
4444
<Compile Include="FiddlerInterface.cs" />
4545
<Compile Include="Importer.cs" />
46+
<Compile Include="JSON.cs" />
4647
<Compile Include="Properties\AssemblyInfo.cs" />
4748
</ItemGroup>
4849
<ItemGroup>
4950
<None Include="README.txt" />
5051
</ItemGroup>
5152
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5253
<PropertyGroup>
53-
<PostBuildEvent>copy $(TargetPath) "%25userprofile%25\Documents\Fiddler2\ImportExport\$(TargetFilename)"</PostBuildEvent>
54+
<PostBuildEvent>copy $(TargetPath) "%25userprofile%25\OneDrive - Microsoft\Documents\Fiddler2\ImportExport\$(TargetFilename)"</PostBuildEvent>
5455
</PropertyGroup>
5556
</Project>

FiddlerImportNetlog/FiddlerInterface.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
namespace FiddlerImportNetlog
1010
{
1111
[ProfferFormat("NetLog JSON",
12-
"Chromium's JSON-based event log format (v1.3.6). See https://textslashplain.com/2020/01/17/capture-network-logs-from-edge-and-chrome/ for more info.",
12+
"Chromium's JSON-based event log format (v1.3.7). See https://textslashplain.com/2020/01/17/capture-network-logs-from-edge-and-chrome/ for more info.",
1313
// We handle import of JSON files, whether uncompressed, or compressed with ZIP or GZ. I'm not completely sure I remember the implications
1414
// of declaring .gz here, nor why .zip isn't mentioned. Is this about the drag/drop import feature?
1515
".json;.gz"

FiddlerImportNetlog/Importer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using System.Security.Cryptography.X509Certificates;
99
using System.Text;
1010
using Fiddler;
11-
using Fiddler.WebFormats;
11+
using FiddlerImportNetlog.WebFormats;
1212

1313
namespace FiddlerImportNetlog
1414
{

0 commit comments

Comments
 (0)