mirror of
https://github.com/wismna/ModernKeePassLib.git
synced 2025-10-03 15:40:20 -04:00
194 lines
10 KiB
XML
194 lines
10 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<ProjectGuid>{2E710089-9559-4967-846C-E763DD1F3ACB}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>ModernKeePassLib</RootNamespace>
|
|
<AssemblyName>ModernKeePassLib</AssemblyName>
|
|
<SignAssembly>false</SignAssembly>
|
|
<FileUpgradeFlags>
|
|
</FileUpgradeFlags>
|
|
<OldToolsVersion>2.0</OldToolsVersion>
|
|
<UpgradeBackupLocation>
|
|
</UpgradeBackupLocation>
|
|
<TargetFrameworkProfile>
|
|
</TargetFrameworkProfile>
|
|
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
|
|
<AssemblyOriginatorKeyFile>KeePassLib.pfx</AssemblyOriginatorKeyFile>
|
|
<NuGetPackageImportStamp>
|
|
</NuGetPackageImportStamp>
|
|
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
<DefineConstants>DEBUG;ModernKeePassLib</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release</OutputPath>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DefineConstants>ModernKeePassLib</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="Collections\AutoTypeConfig.cs" />
|
|
<Compile Include="Collections\ProtectedBinaryDictionary.cs" />
|
|
<Compile Include="Collections\ProtectedBinarySet.cs" />
|
|
<Compile Include="Collections\ProtectedStringDictionary.cs" />
|
|
<Compile Include="Collections\PwObjectList.cs" />
|
|
<Compile Include="Collections\PwObjectPool.cs" />
|
|
<Compile Include="Collections\StringDictionaryEx.cs" />
|
|
<Compile Include="Collections\VariantDictionary.cs" />
|
|
<Compile Include="Cryptography\Cipher\ChaCha20Cipher.cs" />
|
|
<Compile Include="Cryptography\Cipher\ChaCha20Engine.cs" />
|
|
<Compile Include="Cryptography\Cipher\CipherPool.cs" />
|
|
<Compile Include="Cryptography\Cipher\CryptoStreamMode.cs" />
|
|
<Compile Include="Cryptography\Cipher\CtrBlockCipher.cs" />
|
|
<Compile Include="Cryptography\Cipher\Salsa20Cipher.cs" />
|
|
<Compile Include="Cryptography\Cipher\StandardAesEngine.cs" />
|
|
<Compile Include="Cryptography\Cipher\StandardAesEngineExt.cs" />
|
|
<Compile Include="Cryptography\CryptoRandom.cs" />
|
|
<Compile Include="Cryptography\CryptoRandomStream.cs" />
|
|
<Compile Include="Cryptography\Cipher\ICipherEngine.cs" />
|
|
<Compile Include="Cryptography\CryptoStreamEx.cs" />
|
|
<Compile Include="Cryptography\CryptoUtil.cs" />
|
|
<Compile Include="Cryptography\Hash\Blake2b.cs" />
|
|
<Compile Include="Cryptography\Hash\HashAlgorithm.cs" />
|
|
<Compile Include="Cryptography\Hash\HMAC.cs" />
|
|
<Compile Include="Cryptography\Hash\HMACSHA1.cs" />
|
|
<Compile Include="Cryptography\Hash\HMACSHA256.cs" />
|
|
<Compile Include="Cryptography\Hash\SHA256Managed.cs" />
|
|
<Compile Include="Cryptography\Hash\SHA512Managed.cs" />
|
|
<Compile Include="Cryptography\HmacOtp.cs" />
|
|
<Compile Include="Cryptography\KeyDerivation\AesKdf.cs" />
|
|
<Compile Include="Cryptography\KeyDerivation\AesKdf.GCrypt.cs" />
|
|
<Compile Include="Cryptography\KeyDerivation\Argon2Kdf.Core.cs" />
|
|
<Compile Include="Cryptography\KeyDerivation\Argon2Kdf.cs" />
|
|
<Compile Include="Cryptography\KeyDerivation\KdfEngine.cs" />
|
|
<Compile Include="Cryptography\KeyDerivation\KdfParameters.cs" />
|
|
<Compile Include="Cryptography\KeyDerivation\KdfPool.cs" />
|
|
<Compile Include="Cryptography\PasswordGenerator\CharSetBasedGenerator.cs" />
|
|
<Compile Include="Cryptography\PasswordGenerator\CustomPwGenerator.cs" />
|
|
<Compile Include="Cryptography\PasswordGenerator\CustomPwGeneratorPool.cs" />
|
|
<Compile Include="Cryptography\PasswordGenerator\PatternBasedGenerator.cs" />
|
|
<Compile Include="Cryptography\PasswordGenerator\PwCharSet.cs" />
|
|
<Compile Include="Cryptography\PasswordGenerator\PwProfile.cs" />
|
|
<Compile Include="Cryptography\PopularPasswords.cs" />
|
|
<Compile Include="Cryptography\ProtectedData.cs" />
|
|
<Compile Include="Cryptography\QualityEstimation.cs" />
|
|
<Compile Include="Cryptography\RNGCryptoServiceProvider.cs" />
|
|
<Compile Include="Cryptography\SelfTest.cs" />
|
|
<Compile Include="Interfaces\IStructureItem.cs" />
|
|
<Compile Include="Interfaces\IUIOperations.cs" />
|
|
<Compile Include="Interfaces\IXmlSerializerEx.cs" />
|
|
<Compile Include="Keys\KcpCustomKey.cs" />
|
|
<Compile Include="Keys\KeyProvider.cs" />
|
|
<Compile Include="Keys\KeyProviderPool.cs" />
|
|
<Compile Include="Keys\KeyValidator.cs" />
|
|
<Compile Include="Keys\KeyValidatorPool.cs" />
|
|
<Compile Include="Keys\UserKeyType.cs" />
|
|
<Content Include="Native\SimpleStat.cs" />
|
|
<Compile Include="Native\SimpleStat.Standard.cs" />
|
|
<Compile Include="PwCustomIcon.cs" />
|
|
<Compile Include="Resources\KLRes.Generated.cs" />
|
|
<Compile Include="Resources\KSRes.Generated.cs" />
|
|
<Compile Include="Security\XorredBuffer.cs" />
|
|
<Compile Include="Delegates\Handlers.cs" />
|
|
<Compile Include="Interfaces\IDeepCloneable.cs" />
|
|
<Compile Include="Interfaces\IStatusLogger.cs" />
|
|
<Compile Include="Interfaces\ITimeLogger.cs" />
|
|
<Compile Include="Keys\KcpKeyFile.cs" />
|
|
<Compile Include="Keys\IUserKey.cs" />
|
|
<Compile Include="Keys\KcpPassword.cs" />
|
|
<Compile Include="PwDeletedObject.cs" />
|
|
<Compile Include="PwUuid.cs" />
|
|
<Compile Include="Security\ProtectedBinary.cs" />
|
|
<Compile Include="Security\ProtectedString.cs" />
|
|
<Compile Include="PwDefs.cs" />
|
|
<Compile Include="PwEntry.cs" />
|
|
<Compile Include="PwGroup.cs" />
|
|
<Compile Include="Keys\CompositeKey.cs" />
|
|
<Compile Include="PwDatabase.cs" />
|
|
<Compile Include="PwEnums.cs" />
|
|
<Compile Include="Serialization\BinaryReaderEx.cs" />
|
|
<Compile Include="Serialization\FileLock.cs" />
|
|
<Compile Include="Serialization\FileTransactionEx.cs" />
|
|
<Compile Include="Serialization\HashedBlockStream.cs" />
|
|
<Compile Include="Serialization\HmacBlockStream.cs" />
|
|
<Compile Include="Serialization\IOConnection.cs" />
|
|
<Compile Include="Serialization\IocProperties.cs" />
|
|
<Compile Include="Serialization\IocPropertyInfo.cs" />
|
|
<Compile Include="Serialization\IocPropertyInfoPool.cs" />
|
|
<Compile Include="Serialization\KdbxFile.cs" />
|
|
<Compile Include="Serialization\KdbxFile.Read.cs" />
|
|
<Compile Include="Serialization\KdbxFile.Read.Streamed.cs" />
|
|
<Compile Include="Serialization\KdbxFile.Write.cs" />
|
|
<Compile Include="Serialization\IOConnectionInfo.cs" />
|
|
<Compile Include="Serialization\OldFormatException.cs" />
|
|
<Compile Include="Utility\AppLogEx.cs" />
|
|
<Compile Include="Utility\TypeOverridePool.cs" />
|
|
<Compile Include="Utility\XmlUtilEx.cs" />
|
|
<None Include="Utility\GfxUtil.cs" />
|
|
<Compile Include="Utility\GfxUtil.PCL.cs" />
|
|
<Compile Include="Utility\MemUtil.cs" />
|
|
<Compile Include="Cryptography\PasswordGenerator\PwGenerator.cs" />
|
|
<Compile Include="Utility\MonoWorkaround.PCL.cs" />
|
|
<Compile Include="Utility\StrUtil.cs" />
|
|
<Compile Include="Utility\UrlUtil.cs" />
|
|
<Compile Include="Utility\TimeUtil.cs" />
|
|
<Compile Include="Cryptography\HashingStreamEx.cs" />
|
|
<Compile Include="Native\Native.Standard.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="Utility\ColorTranslator.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="app.config" />
|
|
<None Include="KeePassLib.pfx" />
|
|
<None Include="Libs\Windows.winmd" />
|
|
<None Include="ModernKeePassLib.nuspec" />
|
|
<None Include="project.json" />
|
|
<Compile Include="Utility\MessageService.cs" />
|
|
<None Include="Native\NativeLib.cs" />
|
|
<None Include="Native\NativeMethods.cs" />
|
|
<None Include="Native\NativeMethods.Unix.cs" />
|
|
<Compile Include="Keys\KcpUserAccount.cs" />
|
|
<None Include="Translation\KPControlCustomization.cs" />
|
|
<None Include="Translation\KPFormCustomization.cs" />
|
|
<None Include="Translation\KPStringTable.cs" />
|
|
<None Include="Translation\KPStringTableItem.cs" />
|
|
<None Include="Translation\KPTranslation.cs" />
|
|
<None Include="Translation\KPTranslationProperties.cs" />
|
|
<None Include="Utility\MonoWorkarounds.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
|
<ProjectExtensions>
|
|
<MonoDevelop>
|
|
<Properties>
|
|
<Policies>
|
|
<TextStylePolicy TabsToSpaces="False" EolMarker="Windows" inheritsSet="VisualStudio" inheritsScope="text/plain" scope="text/plain" />
|
|
<TextStylePolicy inheritsSet="null" scope="text/x-csharp" />
|
|
<CSharpFormattingPolicy IndentPreprocessorDirectives="False" BeforeMethodDeclarationParentheses="False" BeforeMethodCallParentheses="False" BeforeConstructorDeclarationParentheses="False" BeforeDelegateDeclarationParentheses="False" AfterDelegateDeclarationParameterComma="True" NewParentheses="False" inheritsSet="Mono" inheritsScope="text/x-csharp" scope="text/x-csharp" />
|
|
<DotNetNamingPolicy DirectoryNamespaceAssociation="PrefixedHierarchical" ResourceNamePolicy="FileFormatDefault" />
|
|
</Policies>
|
|
</Properties>
|
|
</MonoDevelop>
|
|
</ProjectExtensions>
|
|
<ItemGroup>
|
|
<Reference Include="Windows, Version=255.255.255.255, Culture=neutral, processorArchitecture=MSIL">
|
|
<SpecificVersion>False</SpecificVersion>
|
|
<HintPath>Libs\Windows.winmd</HintPath>
|
|
<Private>False</Private>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup />
|
|
</Project> |