-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecretsFinder.csproj
More file actions
158 lines (158 loc) · 7.77 KB
/
Copy pathSecretsFinder.csproj
File metadata and controls
158 lines (158 loc) · 7.77 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="12.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>9.0.21022</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SecretsFinder</RootNamespace>
<AssemblyName>SecretsFinder</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<OldToolsVersion>3.5</OldToolsVersion>
<ProjectGuid>{EB8FC3A3-93E8-457B-B281-FAFA5119611A}</ProjectGuid>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x86</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseWinFormsOutOfProcDesigner>True</UseWinFormsOutOfProcDesigner>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<FileAlignment>512</FileAlignment>
<PlatformTarget>x86</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseWinFormsOutOfProcDesigner>True</UseWinFormsOutOfProcDesigner>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug-x64</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseWinFormsOutOfProcDesigner>True</UseWinFormsOutOfProcDesigner>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release-x64</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<FileAlignment>512</FileAlignment>
<PlatformTarget>x64</PlatformTarget>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<UseWinFormsOutOfProcDesigner>True</UseWinFormsOutOfProcDesigner>
</PropertyGroup>
<PropertyGroup>
<NppPath64 Condition="'$(NppPath64)' == ''">$(ProgramW6432)\Notepad++</NppPath64>
<NppPath32 Condition="'$(NppPath32)' == ''">$(MSBuildProgramFiles32)\Notepad++</NppPath32>
<StartAction>Program</StartAction>
<StartProgram Condition="'$(Platform)'=='x64'">$(NppPath64)\notepad++.exe</StartProgram>
<StartProgram Condition="'$(Platform)'=='x86'">$(NppPath32)\notepad++.exe</StartProgram>
</PropertyGroup>
<PropertyGroup>
<RestorePackagesPath>$(MSBuildProjectDirectory)\packages</RestorePackagesPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="UnmanagedExports.Repack.Upgrade" Version="1.2.1" GeneratePathProperty="true">
<ExcludeAssets>all</ExcludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<!-- Core classes -->
<Compile Include="Core\SecretPattern.cs" />
<Compile Include="Core\SecretMatch.cs" />
<Compile Include="Core\SecretScanner.cs" />
<Compile Include="Core\HeuristicFilter.cs" />
<Compile Include="Core\IndicatorManager.cs" />
<!-- Forms -->
<Compile Include="Forms\FormBase.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\FormBase.Designer.cs">
<DependentUpon>FormBase.cs</DependentUpon>
</Compile>
<Compile Include="Forms\NppFormHelper.cs" />
<Compile Include="Forms\AboutForm.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Forms\ResultsPanel.cs">
<SubType>Form</SubType>
</Compile>
<!-- Infrastructure -->
<Compile Include="PluginInfrastructure\CLikeStringArray.cs" />
<Compile Include="PluginInfrastructure\DllExport\DllExportAttribute.cs" />
<Compile Include="PluginInfrastructure\Docking_h.cs" />
<Compile Include="PluginInfrastructure\GatewayDomain.cs" />
<Compile Include="PluginInfrastructure\MenuCmdID_h.cs" />
<Compile Include="PluginInfrastructure\Msgs_h.cs" />
<Compile Include="PluginInfrastructure\NotepadPPGateway.cs" />
<Compile Include="PluginInfrastructure\NppPluginNETBase.cs" />
<Compile Include="PluginInfrastructure\NppPluginNETHelper.cs" />
<Compile Include="PluginInfrastructure\Preference_h.cs" />
<Compile Include="PluginInfrastructure\ScintillaGateway.cs" />
<Compile Include="PluginInfrastructure\Scintilla_iface.cs" />
<Compile Include="PluginInfrastructure\SettingsBase.cs" />
<Compile Include="PluginInfrastructure\UnmanagedExports.cs" />
<Compile Include="PluginInfrastructure\Win32.cs" />
<Compile Include="PluginInfrastructure\resource_h.cs" />
<!-- Main -->
<Compile Include="Main.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<!-- Utils -->
<Compile Include="Utils\FormStyle.cs" />
<Compile Include="Utils\ArrayExtensions.cs" />
<Compile Include="Utils\Npp.cs" />
<Compile Include="Utils\Settings.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Forms\FormBase.resx">
<DependentUpon>FormBase.cs</DependentUpon>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Condition="Exists($(PkgUnmanagedExports_Repack_Upgrade))" Project="$(PkgUnmanagedExports_Repack_Upgrade)\build\UnmanagedExports.Repack.Upgrade.targets" />
<Target Name="CopyBin" DependsOnTargets="Build" AfterTargets="Build">
<ItemGroup>
<RELEASE64 Include="bin\Release-x64\*.*" />
<DEBUG64 Include="bin\Debug-x64\*.*" />
<RELEASE32 Include="bin\Release\*.*" />
<DEBUG32 Include="bin\Debug\*.*" />
<NPP64BIT Include="$(NppPath64)\plugins\$(AssemblyName)" />
<NPP32BIT Include="$(NppPath32)\plugins\$(AssemblyName)" />
</ItemGroup>
<MakeDir Directories="@(NPP64BIT)" Condition=" '$(Platform)' == 'x64' " />
<MakeDir Directories="@(NPP32BIT)" Condition=" '$(Platform)' == 'x86' " />
<Copy SourceFiles="@(RELEASE64)" Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' " DestinationFolder="@(NPP64BIT)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(RELEASE32)" Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' " DestinationFolder="@(NPP32BIT)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(DEBUG64)" Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' " DestinationFolder="@(NPP64BIT)" SkipUnchangedFiles="true" />
<Copy SourceFiles="@(DEBUG32)" Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' " DestinationFolder="@(NPP32BIT)" SkipUnchangedFiles="true" />
</Target>
</Project>