2022-05-14 09:53:01 +03:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion= "15.0" xmlns= "http://schemas.microsoft.com/developer/msbuild/2003" >
<Import Project= "$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition= "Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup >
<Configuration Condition= " '$(Configuration)' == '' " > Debug</Configuration>
<Platform Condition= " '$(Platform)' == '' " > AnyCPU</Platform>
<ProjectGuid > {FE70A2F9-D831-462E-8705-B14623544F1C}</ProjectGuid>
<OutputType > WinExe</OutputType>
<RootNamespace > AwesomeEmailExtractor</RootNamespace>
<AssemblyName > AwesomeEmailExtractor</AssemblyName>
<TargetFrameworkVersion > v4.7.2</TargetFrameworkVersion>
<FileAlignment > 512</FileAlignment>
<AutoGenerateBindingRedirects > true</AutoGenerateBindingRedirects>
<Deterministic > true</Deterministic>
2022-05-21 23:33:56 +03:00
<NuGetPackageImportStamp >
</NuGetPackageImportStamp>
2022-05-14 09:53:01 +03:00
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
<PlatformTarget > AnyCPU</PlatformTarget>
<DebugSymbols > true</DebugSymbols>
<DebugType > full</DebugType>
<Optimize > false</Optimize>
<OutputPath > bin\Debug\</OutputPath>
<DefineConstants > DEBUG;TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
<PlatformTarget > AnyCPU</PlatformTarget>
<DebugType > pdbonly</DebugType>
<Optimize > true</Optimize>
<OutputPath > bin\Release\</OutputPath>
<DefineConstants > TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
</PropertyGroup>
<ItemGroup >
2022-05-21 23:33:56 +03:00
<Reference Include= "Microsoft.Data.Sqlite, Version=5.0.3.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL" >
<HintPath > packages\Microsoft.Data.Sqlite.Core.5.0.3\lib\netstandard2.0\Microsoft.Data.Sqlite.dll</HintPath>
</Reference>
<Reference Include= "SQLitePCLRaw.batteries_v2, Version=2.0.4.976, Culture=neutral, PublicKeyToken=8226ea5df37bcae9, processorArchitecture=MSIL" >
<HintPath > packages\SQLitePCLRaw.bundle_e_sqlite3.2.0.4\lib\net461\SQLitePCLRaw.batteries_v2.dll</HintPath>
</Reference>
<Reference Include= "SQLitePCLRaw.core, Version=2.0.4.976, Culture=neutral, PublicKeyToken=1488e028ca7ab535, processorArchitecture=MSIL" >
<HintPath > packages\SQLitePCLRaw.core.2.0.4\lib\netstandard2.0\SQLitePCLRaw.core.dll</HintPath>
</Reference>
<Reference Include= "SQLitePCLRaw.nativelibrary, Version=2.0.4.976, Culture=neutral, PublicKeyToken=502ed628492ab262, processorArchitecture=MSIL" >
<HintPath > packages\SQLitePCLRaw.bundle_e_sqlite3.2.0.4\lib\net461\SQLitePCLRaw.nativelibrary.dll</HintPath>
</Reference>
<Reference Include= "SQLitePCLRaw.provider.dynamic_cdecl, Version=2.0.4.976, Culture=neutral, PublicKeyToken=b68184102cba0b3b, processorArchitecture=MSIL" >
<HintPath > packages\SQLitePCLRaw.provider.dynamic_cdecl.2.0.4\lib\netstandard2.0\SQLitePCLRaw.provider.dynamic_cdecl.dll</HintPath>
</Reference>
2022-05-14 09:53:01 +03:00
<Reference Include= "System" />
2022-05-21 23:33:56 +03:00
<Reference Include= "System.Buffers, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" >
<HintPath > packages\System.Buffers.4.4.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
</Reference>
2022-05-14 09:53:01 +03:00
<Reference Include= "System.Core" />
2022-05-21 23:33:56 +03:00
<Reference Include= "System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL" >
<HintPath > packages\System.Memory.4.5.3\lib\netstandard2.0\System.Memory.dll</HintPath>
</Reference>
<Reference Include= "System.Numerics" />
<Reference Include= "System.Numerics.Vectors, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" >
<HintPath > packages\System.Numerics.Vectors.4.4.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
</Reference>
<Reference Include= "System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" >
<HintPath > packages\System.Runtime.CompilerServices.Unsafe.4.5.2\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
</Reference>
2022-05-14 09:53:01 +03:00
<Reference Include= "System.Xml.Linq" />
<Reference Include= "System.Data.DataSetExtensions" />
<Reference Include= "Microsoft.CSharp" />
<Reference Include= "System.Data" />
<Reference Include= "System.Deployment" />
<Reference Include= "System.Drawing" />
<Reference Include= "System.Net.Http" />
<Reference Include= "System.Windows.Forms" />
<Reference Include= "System.Xml" />
</ItemGroup>
<ItemGroup >
2022-05-23 21:47:09 +03:00
<Compile Include= "AdministrationForm.cs" >
<SubType > Form</SubType>
</Compile>
<Compile Include= "AdministrationForm.Designer.cs" >
<DependentUpon > AdministrationForm.cs</DependentUpon>
</Compile>
2022-05-21 23:33:56 +03:00
<Compile Include= "Authorization.cs" />
2022-05-22 07:19:14 +03:00
<Compile Include= "AuthorizationForm.cs" >
2022-05-17 21:40:01 +03:00
<SubType > Form</SubType>
</Compile>
2022-05-22 07:19:14 +03:00
<Compile Include= "AuthorizationForm.Designer.cs" >
<DependentUpon > AuthorizationForm.cs</DependentUpon>
2022-05-17 21:40:01 +03:00
</Compile>
2022-05-24 09:09:56 +03:00
<Compile Include= "EditUserForm.cs" >
<SubType > Form</SubType>
</Compile>
<Compile Include= "EditUserForm.Designer.cs" >
<DependentUpon > EditUserForm.cs</DependentUpon>
</Compile>
2022-05-16 15:14:20 +03:00
<Compile Include= "ExtactEmailsAlgorithm.cs" />
2022-05-22 09:04:08 +03:00
<Compile Include= "FormManager.cs" />
2022-05-21 23:33:56 +03:00
<Compile Include= "Globals.cs" />
2022-05-24 14:30:12 +03:00
<Compile Include= "HelpForm.cs" >
<SubType > Form</SubType>
</Compile>
<Compile Include= "HelpForm.Designer.cs" >
<DependentUpon > HelpForm.cs</DependentUpon>
</Compile>
2022-05-23 21:08:30 +03:00
<Compile Include= "JournalForm.cs" >
<SubType > Form</SubType>
</Compile>
<Compile Include= "JournalForm.Designer.cs" >
<DependentUpon > JournalForm.cs</DependentUpon>
</Compile>
2022-05-22 01:19:10 +03:00
<Compile Include= "Logs.cs" />
2022-05-14 10:11:05 +03:00
<Compile Include= "MainForm.cs" >
2022-05-14 09:53:01 +03:00
<SubType > Form</SubType>
</Compile>
2022-05-14 10:11:05 +03:00
<Compile Include= "MainForm.Designer.cs" >
<DependentUpon > MainForm.cs</DependentUpon>
2022-05-14 09:53:01 +03:00
</Compile>
<Compile Include= "Program.cs" />
<Compile Include= "Properties\AssemblyInfo.cs" />
2022-05-22 08:14:59 +03:00
<Compile Include= "RegistrationForm.cs" >
<SubType > Form</SubType>
</Compile>
<Compile Include= "RegistrationForm.Designer.cs" >
<DependentUpon > RegistrationForm.cs</DependentUpon>
</Compile>
2022-05-22 10:56:32 +03:00
<Compile Include= "SettingsForm.cs" >
<SubType > Form</SubType>
</Compile>
<Compile Include= "SettingsForm.Designer.cs" >
<DependentUpon > SettingsForm.cs</DependentUpon>
</Compile>
2022-05-23 21:47:09 +03:00
<EmbeddedResource Include= "AdministrationForm.resx" >
<DependentUpon > AdministrationForm.cs</DependentUpon>
2022-05-24 12:41:18 +03:00
<SubType > Designer</SubType>
2022-05-23 21:47:09 +03:00
</EmbeddedResource>
2022-05-22 07:19:14 +03:00
<EmbeddedResource Include= "AuthorizationForm.resx" >
<DependentUpon > AuthorizationForm.cs</DependentUpon>
2022-05-17 21:40:01 +03:00
</EmbeddedResource>
2022-05-24 09:09:56 +03:00
<EmbeddedResource Include= "EditUserForm.resx" >
<DependentUpon > EditUserForm.cs</DependentUpon>
</EmbeddedResource>
2022-05-24 14:30:12 +03:00
<EmbeddedResource Include= "HelpForm.resx" >
<DependentUpon > HelpForm.cs</DependentUpon>
</EmbeddedResource>
2022-05-23 21:08:30 +03:00
<EmbeddedResource Include= "JournalForm.resx" >
<DependentUpon > JournalForm.cs</DependentUpon>
</EmbeddedResource>
2022-05-14 10:11:05 +03:00
<EmbeddedResource Include= "MainForm.resx" >
<DependentUpon > MainForm.cs</DependentUpon>
</EmbeddedResource>
2022-05-14 09:53:01 +03:00
<EmbeddedResource Include= "Properties\Resources.resx" >
<Generator > ResXFileCodeGenerator</Generator>
<LastGenOutput > Resources.Designer.cs</LastGenOutput>
<SubType > Designer</SubType>
</EmbeddedResource>
<Compile Include= "Properties\Resources.Designer.cs" >
<AutoGen > True</AutoGen>
<DependentUpon > Resources.resx</DependentUpon>
</Compile>
2022-05-22 10:56:32 +03:00
<EmbeddedResource Include= "SettingsForm.resx" >
<DependentUpon > SettingsForm.cs</DependentUpon>
</EmbeddedResource>
2022-05-21 23:33:56 +03:00
<None Include= "packages.config" />
2022-05-22 08:14:59 +03:00
<EmbeddedResource Include= "RegistrationForm.resx" >
<DependentUpon > RegistrationForm.cs</DependentUpon>
</EmbeddedResource>
2022-05-14 09:53:01 +03:00
<None Include= "Properties\Settings.settings" >
<Generator > SettingsSingleFileGenerator</Generator>
<LastGenOutput > Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include= "Properties\Settings.Designer.cs" >
<AutoGen > True</AutoGen>
<DependentUpon > Settings.settings</DependentUpon>
<DesignTimeSharedInput > True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup >
<None Include= "App.config" />
</ItemGroup>
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
2022-05-21 23:33:56 +03:00
<Import Project= "packages\SQLitePCLRaw.lib.e_sqlite3.2.0.4\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets" Condition= "Exists('packages\SQLitePCLRaw.lib.e_sqlite3.2.0.4\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets')" />
<Target Name= "EnsureNuGetPackageBuildImports" BeforeTargets= "PrepareForBuild" >
<PropertyGroup >
<ErrorText > Данный проект ссылается на пакеты NuGet, отсутствующие на этом компьютере. Используйте восстановление пакетов NuGet, чтобы скачать их. Дополнительную информацию см. по адресу: http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует следующий файл: {0}.</ErrorText>
</PropertyGroup>
<Error Condition= "!Exists('packages\SQLitePCLRaw.lib.e_sqlite3.2.0.4\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets')" Text= "$([System.String]::Format('$(ErrorText)', 'packages\SQLitePCLRaw.lib.e_sqlite3.2.0.4\build\net461\SQLitePCLRaw.lib.e_sqlite3.targets'))" />
</Target>
2022-05-14 09:53:01 +03:00
</Project>