WIP open a database

This commit is contained in:
2017-09-11 18:25:00 +02:00
parent 766e33c6ab
commit 4487f0343f
286 changed files with 176971 additions and 38 deletions

View File

@@ -6,13 +6,12 @@
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<licenseUrl>http://LICENSE_URL_HERE_OR_DELETE_THIS_LINE</licenseUrl>
<projectUrl>http://PROJECT_URL_HERE_OR_DELETE_THIS_LINE</projectUrl>
<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>
<licenseUrl>https://www.gnu.org/licenses/gpl-3.0.en.html</licenseUrl>
<projectUrl>https://github.com/wismna/ModernKeePass</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>Tag1 Tag2</tags>
<releaseNotes>Initial release.</releaseNotes>
<copyright>$copyright$</copyright>
<tags>KeePass KeePassLib NetStandard</tags>
</metadata>
</package>

View File

@@ -20,6 +20,8 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Windows.UI.Xaml.Media.Imaging;
//using System.Drawing;
using ModernKeePassLib.WinRTAdaptors;
@@ -30,8 +32,6 @@ using ModernKeePassLib.Interfaces;
using ModernKeePassLib.Keys;
using ModernKeePassLib.Serialization;
using ModernKeePassLib.Utility;
using Windows.UI.Xaml.Media.Imaging;
using System.Threading.Tasks;
namespace ModernKeePassLib
{