Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added TreeViewPanelExtension/Lib/Fiddler.exe
Binary file not shown.
24 changes: 0 additions & 24 deletions TreeViewPanelExtension/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
using System.Reflection;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("TreeViewPanelExtension")]
[assembly: AssemblyDescription("Fiddler Extension to display sessions in a TreeView")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Gamosoft")]
[assembly: AssemblyProduct("TreeViewPanelExtension")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
Expand All @@ -21,16 +9,4 @@
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("518f06e0-1160-470b-809a-ff3a33a45a11")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.7.5.0")]
[assembly: AssemblyFileVersion("0.7.5.0")]
[assembly: Fiddler.RequiredVersion("2.4.4.5")]

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions TreeViewPanelExtension/TreePanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System;
using System.Drawing;
using System.Windows.Forms;
using TreeViewPanelExtension.Properties;

namespace TreeViewPanelExtension
{
Expand Down
199 changes: 31 additions & 168 deletions TreeViewPanelExtension/TreeViewPanelExtension.csproj
Original file line number Diff line number Diff line change
@@ -1,192 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{A6E5732B-B01F-4B51-B77F-E620E80B9941}</ProjectGuid>
<UseWindowsForms>true</UseWindowsForms>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TreeViewPanelExtension</RootNamespace>
<AssemblyName>TreeViewPanelExtension</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<SccProjectName>SAK</SccProjectName>
<SccLocalPath>SAK</SccLocalPath>
<SccAuxPath>SAK</SccAuxPath>
<SccProvider>SAK</SccProvider>
<TargetFrameworkProfile />
<TargetFramework>net461</TargetFramework>
<OutputPath>bin\$(Configuration)</OutputPath>
<EmbeddedResourceUseDependentUponConvention>true</EmbeddedResourceUseDependentUponConvention>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Title>$(AssemblyName)</Title>
<Description>Fiddler Extension to display sessions in a TreeView</Description>
<Company>Gamosoft</Company>
<Copyright>Copyright © 2022</Copyright>
<AssemblyVersion>0.7.5.0</AssemblyVersion>
<FileVersion>0.7.5.0</FileVersion>
</PropertyGroup>
<PropertyGroup>
<Configurations>Debug;Release</Configurations>
<DEBUGRELEASE Condition="'$(Configuration)' == 'Debug'">TRACE;DEBUG</DEBUGRELEASE>
<DEBUGRELEASE Condition="'$(Configuration)' == 'Release'">TRACE;RELEASE</DEBUGRELEASE>
<DefineConstants>$(DEBUGRELEASE)</DefineConstants>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PropertyGroup Condition="'$(DEBUGRELEASE)'=='TRACE;DEBUG'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PropertyGroup Condition="'$(DEBUGRELEASE)'=='TRACE;RELEASE'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="Fiddler">
<HintPath>C:\Users\guill\AppData\Local\Programs\Fiddler\Fiddler.exe</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
<HintPath>Lib\Fiddler.exe</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AboutForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="AboutForm.Designer.cs">
<DependentUpon>AboutForm.cs</DependentUpon>
</Compile>
<Compile Include="Constants.cs" />
<Compile Include="CustomTreeView.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="TreePanel.cs" />
<Compile Include="TreeViewGenerator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="AboutForm.resx">
<DependentUpon>AboutForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Resources.resx">
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="Images\009_HighPriority_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\010_LowPriority_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\109_AllAnnotations_Complete_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\109_AllAnnotations_Default_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\109_AllAnnotations_donotenter_16x16.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\109_AllAnnotations_Error_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\109_AllAnnotations_Help_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\109_AllAnnotations_Info_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\109_AllAnnotations_Warning_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\1385_Disable_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\1409_Monitor_16x16.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\Folder_16x16.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\FolderOpen_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\pending_request_16x16_72.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\1403_Globe_16x16.png" />
</ItemGroup>
<ItemGroup>
<None Include="Images\generic_picture_16x16.png" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<None Include="Images\generic_picture_16x16_visited.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<PropertyGroup>
<PostBuildEvent>copy $(TargetPath) "%25userprofile%25\AppData\Local\Programs\Fiddler\Scripts\$(TargetFilename)"

rem copy $(TargetPath) "%25userprofile%25\My Documents\Fiddler2\Scripts\$(TargetFilename)"
rem copy $(TargetPath) "%25ProgramFiles(x86)%25\Fiddler2\Scripts\$(TargetFilename)"
rem "%25ProgramFiles(x86)%25\Fiddler2\Fiddler.exe"</PostBuildEvent>
</PropertyGroup>
</Project>