Skip to content

Commit acc194e

Browse files
committed
Initial commit.
0 parents  commit acc194e

File tree

68 files changed

+9021
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+9021
-0
lines changed

FindFiles.dll

83 KB
Binary file not shown.

FindFiles_Plugin.png

58.9 KB
Loading

FindFiles_Settings.png

101 KB
Loading

src/FindFiles.csproj

Lines changed: 213 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,213 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6+
<ProductVersion>9.0.30729</ProductVersion>
7+
<SchemaVersion>2.0</SchemaVersion>
8+
<ProjectGuid>{343E9A1B-9868-453C-AE3B-A7F63ABA5A8B}</ProjectGuid>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>FindFilesPlugin</RootNamespace>
12+
<AssemblyName>FindFiles</AssemblyName>
13+
<StartupObject>
14+
</StartupObject>
15+
<FileUpgradeFlags>
16+
</FileUpgradeFlags>
17+
<OldToolsVersion>3.5</OldToolsVersion>
18+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
19+
<UpgradeBackupLocation>
20+
</UpgradeBackupLocation>
21+
<PublishUrl>publish\</PublishUrl>
22+
<Install>true</Install>
23+
<InstallFrom>Disk</InstallFrom>
24+
<UpdateEnabled>false</UpdateEnabled>
25+
<UpdateMode>Foreground</UpdateMode>
26+
<UpdateInterval>7</UpdateInterval>
27+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
28+
<UpdatePeriodically>false</UpdatePeriodically>
29+
<UpdateRequired>false</UpdateRequired>
30+
<MapFileExtensions>true</MapFileExtensions>
31+
<ApplicationRevision>0</ApplicationRevision>
32+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
33+
<IsWebBootstrapper>false</IsWebBootstrapper>
34+
<UseApplicationTrust>false</UseApplicationTrust>
35+
<BootstrapperEnabled>true</BootstrapperEnabled>
36+
<TargetFrameworkProfile />
37+
</PropertyGroup>
38+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
39+
<DebugSymbols>true</DebugSymbols>
40+
<DebugType>full</DebugType>
41+
<Optimize>true</Optimize>
42+
<OutputPath>..\..\FlashDevelop\FlashDevelop\Bin\Debug\Plugins\</OutputPath>
43+
<DefineConstants>DEBUG;TRACE</DefineConstants>
44+
<ErrorReport>prompt</ErrorReport>
45+
<WarningLevel>4</WarningLevel>
46+
<UseVSHostingProcess>false</UseVSHostingProcess>
47+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
48+
</PropertyGroup>
49+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
50+
<DebugType>pdbonly</DebugType>
51+
<Optimize>true</Optimize>
52+
<OutputPath>bin\Release\</OutputPath>
53+
<DefineConstants>TRACE</DefineConstants>
54+
<ErrorReport>prompt</ErrorReport>
55+
<WarningLevel>4</WarningLevel>
56+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
57+
</PropertyGroup>
58+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
59+
<PlatformTarget>x86</PlatformTarget>
60+
<OutputPath>bin\Debug\</OutputPath>
61+
<DefineConstants>TRACE</DefineConstants>
62+
<Optimize>true</Optimize>
63+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
64+
</PropertyGroup>
65+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
66+
<PlatformTarget>x86</PlatformTarget>
67+
<OutputPath>bin\Release\</OutputPath>
68+
<DefineConstants>TRACE</DefineConstants>
69+
<Optimize>true</Optimize>
70+
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
71+
</PropertyGroup>
72+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
73+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
74+
Other similar extension points exist, see Microsoft.Common.targets.
75+
<Target Name="BeforeBuild">
76+
</Target>
77+
<Target Name="AfterBuild">
78+
</Target>
79+
-->
80+
<ItemGroup>
81+
<Reference Include="System" />
82+
<Reference Include="System.Data" />
83+
<Reference Include="System.Deployment" />
84+
<Reference Include="System.Design" />
85+
<Reference Include="System.DirectoryServices" />
86+
<Reference Include="System.Drawing" />
87+
<Reference Include="System.Windows.Forms" />
88+
<Reference Include="System.XML" />
89+
</ItemGroup>
90+
<ItemGroup>
91+
<Compile Include="Properties\AssemblyInfo.cs" />
92+
<Compile Include="Properties\Resources.Designer.cs">
93+
<AutoGen>True</AutoGen>
94+
<DesignTime>True</DesignTime>
95+
<DependentUpon>Resources.resx</DependentUpon>
96+
</Compile>
97+
<Compile Include="Source\ControlClickManager.cs" />
98+
<Compile Include="Forms\FindFilesForm.cs">
99+
<SubType>Form</SubType>
100+
</Compile>
101+
<Compile Include="Forms\FindFilesForm.Designer.cs">
102+
<DependentUpon>FindFilesForm.cs</DependentUpon>
103+
</Compile>
104+
<Compile Include="Source\PluginMain.cs" />
105+
<Compile Include="Forms\QuickOutlineForm.cs">
106+
<SubType>Form</SubType>
107+
</Compile>
108+
<Compile Include="Forms\QuickOutlineForm.Designer.cs">
109+
<DependentUpon>QuickOutlineForm.cs</DependentUpon>
110+
</Compile>
111+
<Compile Include="Source\HiPerfTimer.cs" />
112+
<Compile Include="Source\SearchManager.cs" />
113+
<Compile Include="Source\Settings.cs" />
114+
<Compile Include="SimMetrics\BaseClasses\Abstract\AbstractAffineGapCost.cs" />
115+
<Compile Include="SimMetrics\BaseClasses\Abstract\AbstractStringMetric.cs" />
116+
<Compile Include="SimMetrics\BaseClasses\Abstract\AbstractSubstitutionCost.cs" />
117+
<Compile Include="SimMetrics\BaseClasses\Abstract\AbstractTokeniserQGramN.cs" />
118+
<Compile Include="SimMetrics\BaseClasses\Interfaces\IAffineGapCost.cs" />
119+
<Compile Include="SimMetrics\BaseClasses\Interfaces\IStringMetric.cs" />
120+
<Compile Include="SimMetrics\BaseClasses\Interfaces\ISubstitutionCost.cs" />
121+
<Compile Include="SimMetrics\BaseClasses\Interfaces\ITermHandler.cs" />
122+
<Compile Include="SimMetrics\BaseClasses\Interfaces\ITokeniser.cs" />
123+
<Compile Include="SimMetrics\SimilarityClasses\edit distance\Levenstein.cs" />
124+
<Compile Include="SimMetrics\SimilarityClasses\edit distance\NeedlemanWunch.cs" />
125+
<Compile Include="SimMetrics\SimilarityClasses\edit distance\SmithWaterman.cs" />
126+
<Compile Include="SimMetrics\SimilarityClasses\edit distance\SmithWatermanGotoh.cs" />
127+
<Compile Include="SimMetrics\SimilarityClasses\edit distance\SmithWatermanGotohWindowedAffine.cs" />
128+
<Compile Include="SimMetrics\SimilarityClasses\jaro and jaroWinkler\Jaro.cs" />
129+
<Compile Include="SimMetrics\SimilarityClasses\jaro and jaroWinkler\JaroWinkler.cs" />
130+
<Compile Include="SimMetrics\SimilarityClasses\length based\ChapmanLengthDeviation.cs" />
131+
<Compile Include="SimMetrics\SimilarityClasses\length based\ChapmanMeanLength.cs" />
132+
<Compile Include="SimMetrics\SimilarityClasses\QGram\QGramsDistance.cs" />
133+
<Compile Include="SimMetrics\SimilarityClasses\token based\BlockDistance.cs" />
134+
<Compile Include="SimMetrics\SimilarityClasses\token based\CosineSimilarity.cs" />
135+
<Compile Include="SimMetrics\SimilarityClasses\token based\DiceSimilarity.cs" />
136+
<Compile Include="SimMetrics\SimilarityClasses\token based\EuclideanDistance.cs" />
137+
<Compile Include="SimMetrics\SimilarityClasses\token based\JaccardSimilarity.cs" />
138+
<Compile Include="SimMetrics\SimilarityClasses\token based\MatchingCoefficient.cs" />
139+
<Compile Include="SimMetrics\SimilarityClasses\token based\MongeElkan.cs" />
140+
<Compile Include="SimMetrics\SimilarityClasses\token based\OverlapCoefficient.cs" />
141+
<Compile Include="SimMetrics\UtilityClasses\costfunctions\AffineGapRange1To0Multiplier1Over3.cs" />
142+
<Compile Include="SimMetrics\UtilityClasses\costfunctions\AffineGapRange5To0Multiplier1.cs" />
143+
<Compile Include="SimMetrics\UtilityClasses\costfunctions\SubCostRange0To1.cs" />
144+
<Compile Include="SimMetrics\UtilityClasses\costfunctions\SubCostRange1ToMinus2.cs" />
145+
<Compile Include="SimMetrics\UtilityClasses\costfunctions\SubCostRange5ToMinus3.cs" />
146+
<Compile Include="SimMetrics\UtilityClasses\MathFuncs.cs" />
147+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserQGram2.cs" />
148+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserQGram2Extended.cs" />
149+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserQGram3.cs" />
150+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserQGram3Extended.cs" />
151+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserSGram2.cs" />
152+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserSGram2Extended.cs" />
153+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserSGram3.cs" />
154+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserSGram3Extended.cs" />
155+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserUtilities.cs" />
156+
<Compile Include="SimMetrics\UtilityClasses\Tokenisers\TokeniserWhitespace.cs" />
157+
<Compile Include="SimMetrics\UtilityClasses\Wordhandlers\DummyStopTermHandler.cs" />
158+
</ItemGroup>
159+
<ItemGroup>
160+
<ProjectReference Include="..\..\FD GitHub\FlashDevelop\FlashDevelop.csproj">
161+
<Project>{EFD07485-9A64-4EEC-94E7-ACBD4DA5CA93}</Project>
162+
<Name>FlashDevelop</Name>
163+
<Private>False</Private>
164+
</ProjectReference>
165+
<ProjectReference Include="..\..\FD GitHub\PluginCore\PluginCore.csproj">
166+
<Project>{61885F70-B4DC-4B44-852D-5D6D03F2A734}</Project>
167+
<Name>PluginCore</Name>
168+
<Private>False</Private>
169+
</ProjectReference>
170+
<ProjectReference Include="..\..\FD GitHub\External\Plugins\ASCompletion\ASCompletion.csproj">
171+
<Project>{4EBF2653-9654-4E40-880E-0046B3D6210E}</Project>
172+
<Name>ASCompletion</Name>
173+
</ProjectReference>
174+
</ItemGroup>
175+
<ItemGroup>
176+
<EmbeddedResource Include="Forms\FindFilesForm.resx">
177+
<DependentUpon>FindFilesForm.cs</DependentUpon>
178+
</EmbeddedResource>
179+
<EmbeddedResource Include="Forms\QuickOutlineForm.resx">
180+
<DependentUpon>QuickOutlineForm.cs</DependentUpon>
181+
</EmbeddedResource>
182+
<EmbeddedResource Include="Properties\Resources.resx">
183+
<Generator>ResXFileCodeGenerator</Generator>
184+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
185+
</EmbeddedResource>
186+
</ItemGroup>
187+
<PropertyGroup>
188+
<PostBuildEvent>copy "$(ProjectDir)bin\$(ConfigurationName)\FindFiles.dll" "$(SolutionDir)\FlashDevelop\Bin\Debug\Plugins"
189+
</PostBuildEvent>
190+
<PreBuildEvent>
191+
</PreBuildEvent>
192+
</PropertyGroup>
193+
<ItemGroup>
194+
<None Include="app.config" />
195+
</ItemGroup>
196+
<ItemGroup>
197+
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
198+
<Visible>False</Visible>
199+
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
200+
<Install>false</Install>
201+
</BootstrapperPackage>
202+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
203+
<Visible>False</Visible>
204+
<ProductName>.NET Framework 3.5 SP1</ProductName>
205+
<Install>true</Install>
206+
</BootstrapperPackage>
207+
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
208+
<Visible>False</Visible>
209+
<ProductName>Windows Installer 3.1</ProductName>
210+
<Install>true</Install>
211+
</BootstrapperPackage>
212+
</ItemGroup>
213+
</Project>

src/FindFiles.csproj.user

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
4+
<StartAction>Program</StartAction>
5+
<StartProgram>C:\Users\sbatista\Dropbox\Work\Utilities\C#\FlashDevelop Plugins\FD4\FlashDevelop\Bin\Debug\FlashDevelop.exe</StartProgram>
6+
</PropertyGroup>
7+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
8+
<StartAction>Program</StartAction>
9+
<StartProgram>C:\Users\sbatista\Dropbox\Work\Utilities\C#\FlashDevelop Plugins\FD4\FlashDevelop\Bin\Debug\FlashDevelop.exe</StartProgram>
10+
</PropertyGroup>
11+
<PropertyGroup>
12+
<PublishUrlHistory />
13+
<InstallUrlHistory />
14+
<SupportUrlHistory />
15+
<UpdateUrlHistory />
16+
<BootstrapperUrlHistory />
17+
<ErrorReportUrlHistory />
18+
<FallbackCulture>en-US</FallbackCulture>
19+
<VerifyUploadedFiles>false</VerifyUploadedFiles>
20+
</PropertyGroup>
21+
</Project>

src/FindFiles.sln.docstates.suo

2.01 KB
Binary file not shown.

src/FindFiles.suo

2.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)