-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTreeViewPanelExtension.csproj
More file actions
55 lines (55 loc) · 2.41 KB
/
TreeViewPanelExtension.csproj
File metadata and controls
55 lines (55 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<ProjectGuid>{A6E5732B-B01F-4B51-B77F-E620E80B9941}</ProjectGuid>
<UseWindowsForms>true</UseWindowsForms>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TreeViewPanelExtension</RootNamespace>
<AssemblyName>TreeViewPanelExtension</AssemblyName>
<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="'$(DEBUGRELEASE)'=='TRACE;DEBUG'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(DEBUGRELEASE)'=='TRACE;RELEASE'">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Reference Include="Fiddler">
<HintPath>Lib\Fiddler.exe</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<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>
</Project>