mirror of
https://github.com/wismna/ModernKeePassLib.git
synced 2025-10-03 15:40:20 -04:00
70 lines
3.0 KiB
XML
70 lines
3.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard1.2</TargetFramework>
|
|
<Description>Portable KeePass Password Management Library that targets .Net Standard and WinRT. Allows reading, editing and writing to KeePass 2.x databases.</Description>
|
|
<Version>2.44.2</Version>
|
|
<Authors>Geoffroy Bonneville</Authors>
|
|
<Company>wismna</Company>
|
|
<PackageProjectUrl>https://github.com/wismna/ModernKeePass</PackageProjectUrl>
|
|
<PackageReleaseNotes>Implementation of KeePass library version 2.44</PackageReleaseNotes>
|
|
<Copyright>Copyright © 2018 Geoffroy Bonneville</Copyright>
|
|
<PackageTags>KeePass KeePassLib Portable PCL NetStandard</PackageTags>
|
|
<PackageLicenseExpression></PackageLicenseExpression>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DefineConstants>TRACE;ModernKeePassLib</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Native\ClipboardU.cs" />
|
|
<Compile Remove="Native\NativeLib.cs" />
|
|
<Compile Remove="Native\NativeMethods.cs" />
|
|
<Compile Remove="Native\NativeMethods.Unix.cs" />
|
|
<Compile Remove="Native\SimpleStat.cs" />
|
|
<Compile Remove="Translation\KPControlCustomization.cs" />
|
|
<Compile Remove="Translation\KPFormCustomization.cs" />
|
|
<Compile Remove="Translation\KPStringTable.cs" />
|
|
<Compile Remove="Translation\KPStringTableItem.cs" />
|
|
<Compile Remove="Translation\KPTranslation.cs" />
|
|
<Compile Remove="Translation\KPTranslationProperties.cs" />
|
|
<Compile Remove="Utility\GfxUtil.cs" />
|
|
<Compile Remove="Utility\MonoWorkarounds.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="Native\ClipboardU.cs" />
|
|
<None Include="Native\NativeLib.cs" />
|
|
<None Include="Native\NativeMethods.cs" />
|
|
<None Include="Native\NativeMethods.Unix.cs" />
|
|
<None Include="Native\SimpleStat.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\GfxUtil.cs" />
|
|
<None Include="Utility\MonoWorkarounds.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.Portable.Compatibility" Version="1.0.1" />
|
|
<PackageReference Include="Portable.BouncyCastle" Version="1.8.5" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0005" />
|
|
<PackageReference Include="Splat" Version="3.0.0" />
|
|
<PackageReference Include="System.Runtime.WindowsRuntime" Version="4.3.0" />
|
|
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Windows">
|
|
<HintPath>Libs\Windows.winmd</HintPath>
|
|
<IsWinMDFile>true</IsWinMDFile>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|