mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Changed test project framework from Nunit to MSTest Changed HashAlgorithm from BouncyCastle to WinRT crypto WIP progress bar in opendatabaseusercontrol TextBox with button made generic WIP implement copy on button click in Entry Page
57 lines
1.9 KiB
XML
57 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
|
|
|
|
<Identity Name="521e59e9-f0bf-4bdb-bf03-3f8d4c056c29"
|
|
Publisher="CN=GBE"
|
|
Version="1.0.0.0" />
|
|
|
|
<Properties>
|
|
<DisplayName>UnitTestLibrary</DisplayName>
|
|
<PublisherDisplayName>GBE</PublisherDisplayName>
|
|
<Logo>Images\UnitTestStoreLogo.png</Logo>
|
|
<Description>UnitTestLibrary</Description>
|
|
</Properties>
|
|
|
|
<Prerequisites>
|
|
<OSMinVersion>6.3.0</OSMinVersion>
|
|
<OSMaxVersionTested>6.3.0</OSMaxVersionTested>
|
|
</Prerequisites>
|
|
|
|
<Resources>
|
|
<Resource Language="x-generate"/>
|
|
</Resources>
|
|
|
|
<Applications>
|
|
<Application Id="vstest.executionengine.App"
|
|
Executable="vstest.executionengine.appcontainer.exe"
|
|
EntryPoint="vstest.executionengine.App">
|
|
<VisualElements
|
|
DisplayName="NoUIEntryPoints"
|
|
Logo="Images\UnitTestLogo.png"
|
|
SmallLogo="Images\UnitTestSmallLogo.png"
|
|
Description="vstest.executionengine.App"
|
|
ForegroundText="light"
|
|
BackgroundColor="#0084FF">
|
|
<SplashScreen Image="Images\UnitTestSplashScreen.png" />
|
|
</VisualElements>
|
|
</Application>
|
|
|
|
<Application Id="vstest.executionengine.x86.App"
|
|
Executable="vstest.executionengine.appcontainer.x86.exe"
|
|
EntryPoint="vstest.executionengine.x86.App">
|
|
<VisualElements
|
|
DisplayName="NoUIEntryPoints"
|
|
Logo="Images\UnitTestLogo.png"
|
|
SmallLogo="Images\UnitTestSmallLogo.png"
|
|
Description="vstest.executionengine.x86.App"
|
|
ForegroundText="light"
|
|
BackgroundColor="#0084FF">
|
|
<SplashScreen Image="Images\UnitTestSplashScreen.png" />
|
|
</VisualElements>
|
|
</Application>
|
|
</Applications>
|
|
<Capabilities>
|
|
<Capability Name="internetClient" />
|
|
</Capabilities>
|
|
</Package>
|