Bitwarden-app-android-iphon.../src/App/App.csproj

132 lines
4.9 KiB
XML
Raw Normal View History

2019-03-29 04:52:33 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2019-03-28 01:12:44 +01:00
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Bit.App</RootNamespace>
<AssemblyName>BitwardenApp</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>pdbonly</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
2019-05-16 22:31:58 +02:00
<PackageReference Include="Plugin.Fingerprint" Version="1.4.9" />
2019-05-08 14:33:17 +02:00
<PackageReference Include="Refractored.FloatingActionButtonForms" Version="2.1.0" />
<PackageReference Include="Xamarin.Essentials" Version="1.1.0" />
2019-05-17 15:22:16 +02:00
<PackageReference Include="Xamarin.FFImageLoading.Forms" Version="2.4.10.972" />
2019-04-22 23:08:37 +02:00
<PackageReference Include="Xamarin.Forms" Version="3.6.0.344457" />
2019-05-23 02:28:31 +02:00
<PackageReference Include="ZXing.Net.Mobile.Forms" Version="2.1.47" />
2019-03-28 01:12:44 +01:00
</ItemGroup>
2019-03-28 02:34:39 +01:00
<ItemGroup>
2019-03-28 02:36:28 +01:00
<ProjectReference Include="..\Core\Core.csproj" />
2019-03-28 02:34:39 +01:00
</ItemGroup>
2019-03-28 22:10:10 +01:00
<ItemGroup>
2019-05-02 18:20:56 +02:00
<Compile Update="Pages\Accounts\EnvironmentPage.xaml.cs">
<DependentUpon>EnvironmentPage.xaml</DependentUpon>
</Compile>
2019-05-01 21:53:56 +02:00
<Compile Update="Pages\Accounts\HintPage.xaml.cs">
<DependentUpon>HintPage.xaml</DependentUpon>
</Compile>
2019-05-15 23:37:59 +02:00
<Compile Update="Pages\Accounts\LockPage.xaml.cs">
<DependentUpon>LockPage.xaml</DependentUpon>
</Compile>
2019-05-02 16:10:05 +02:00
<Compile Update="Pages\Accounts\RegisterPage.xaml.cs">
<DependentUpon>RegisterPage.xaml</DependentUpon>
</Compile>
2019-04-19 15:42:55 +02:00
<Compile Update="Pages\Accounts\LoginPage.xaml.cs">
<DependentUpon>LoginPage.xaml</DependentUpon>
</Compile>
2019-05-02 18:27:23 +02:00
<Compile Update="Pages\Generator\GeneratorPage.xaml.cs">
2019-03-29 04:52:33 +01:00
<DependentUpon>GeneratorPage.xaml</DependentUpon>
2019-03-28 22:10:10 +01:00
</Compile>
2019-05-14 15:01:07 +02:00
<Compile Update="Pages\Generator\GeneratorHistoryPage.xaml.cs">
<DependentUpon>GeneratorHistoryPage.xaml</DependentUpon>
</Compile>
2019-05-14 23:25:58 +02:00
<Compile Update="Pages\Settings\FolderAddEditPage.xaml.cs">
<DependentUpon>FolderAddEditPage.xaml</DependentUpon>
</Compile>
2019-05-14 23:02:24 +02:00
<Compile Update="Pages\Settings\FoldersPage.xaml.cs">
<DependentUpon>FoldersPage.xaml</DependentUpon>
</Compile>
2019-05-14 18:05:30 +02:00
<Compile Update="Pages\Settings\SyncPage.xaml.cs">
<DependentUpon>SyncPage.xaml</DependentUpon>
</Compile>
2019-05-10 20:33:33 +02:00
<Compile Update="Pages\Vault\AttachmentsPage.xaml.cs">
<DependentUpon>AttachmentsPage.xaml</DependentUpon>
</Compile>
2019-05-17 19:14:26 +02:00
<Compile Update="Pages\Vault\AutofillCiphersPage.xaml.cs">
<DependentUpon>AutofillCiphersPage.xaml</DependentUpon>
</Compile>
2019-05-10 20:28:17 +02:00
<Compile Update="Pages\Vault\CollectionsPage.xaml.cs">
<DependentUpon>CollectionsPage.xaml</DependentUpon>
</Compile>
2019-05-10 19:22:35 +02:00
<Compile Update="Pages\Vault\SharePage.xaml.cs">
<DependentUpon>SharePage.xaml</DependentUpon>
</Compile>
<Compile Update="Pages\Vault\CiphersPage.xaml.cs">
<DependentUpon>CiphersPage.xaml</DependentUpon>
</Compile>
2019-05-02 20:53:45 +02:00
<Compile Update="Pages\Vault\PasswordHistoryPage.xaml.cs">
<DependentUpon>PasswordHistoryPage.xaml</DependentUpon>
</Compile>
2019-05-07 17:25:21 +02:00
<Compile Update="Pages\Vault\AddEditPage.xaml.cs">
<DependentUpon>AddEditPage.xaml</DependentUpon>
</Compile>
2019-04-24 17:23:03 +02:00
<Compile Update="Pages\Vault\ViewPage.xaml.cs">
2019-04-22 17:32:17 +02:00
<DependentUpon>ViewPage.xaml</DependentUpon>
</Compile>
2019-05-02 18:27:23 +02:00
<Compile Update="Pages\Settings\SettingsPage.xaml.cs">
2019-03-29 04:52:33 +01:00
<DependentUpon>SettingsPage.xaml</DependentUpon>
</Compile>
2019-04-24 17:25:18 +02:00
<Compile Update="Pages\Vault\GroupingsPage\GroupingsPage.xaml.cs">
2019-03-29 18:24:44 +01:00
<DependentUpon>GroupingsPage.xaml</DependentUpon>
2019-03-29 04:52:33 +01:00
</Compile>
</ItemGroup>
<ItemGroup>
2019-04-10 23:01:25 +02:00
<Folder Include="Resources\" />
2019-03-28 22:10:10 +01:00
</ItemGroup>
2019-03-29 21:52:57 +01:00
<ItemGroup>
<EmbeddedResource Update="Controls\CipherViewCell\CipherViewCell.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
</ItemGroup>
2019-04-03 04:15:11 +02:00
2019-04-10 23:01:25 +02:00
<ItemGroup>
<Compile Update="Resources\AppResources.Designer.cs">
<DependentUpon>AppResources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
2019-04-22 20:17:33 +02:00
<Compile Update="Styles\Variables.xaml.cs">
<DependentUpon>Variables.xaml</DependentUpon>
</Compile>
2019-04-22 17:32:17 +02:00
<Compile Update="Styles\Light.xaml.cs">
<DependentUpon>Light.xaml</DependentUpon>
</Compile>
<Compile Update="Styles\Dark.xaml.cs">
<DependentUpon>Dark.xaml</DependentUpon>
</Compile>
<Compile Update="Styles\iOS.xaml.cs">
<DependentUpon>iOS.xaml</DependentUpon>
</Compile>
<Compile Update="Styles\Android.xaml.cs">
<DependentUpon>Android.xaml</DependentUpon>
</Compile>
2019-04-10 23:01:25 +02:00
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\AppResources.resx">
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>
2019-04-30 18:35:58 +02:00
<Generator>PublicResXFileCodeGenerator</Generator>
2019-04-10 23:01:25 +02:00
</EmbeddedResource>
2019-04-22 17:32:17 +02:00
<EmbeddedResource Update="Styles\Base.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
2019-04-10 23:01:25 +02:00
</ItemGroup>
2019-03-28 01:12:44 +01:00
</Project>