bitwarden-android/src/App/App.csproj

87 lines
2.8 KiB
XML
Raw Normal View History

2019-03-29 06:52:33 +03:00
<Project Sdk="Microsoft.NET.Sdk">
2019-03-28 03:12:44 +03: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>
<PackageReference Include="Xamarin.Essentials" Version="1.1.0" />
2019-04-23 00:08:37 +03:00
<PackageReference Include="Xamarin.FFImageLoading.Forms" Version="2.4.5.909-pre" />
<PackageReference Include="Xamarin.Forms" Version="3.6.0.344457" />
2019-03-28 03:12:44 +03:00
</ItemGroup>
2019-03-28 04:34:39 +03:00
<ItemGroup>
2019-03-28 04:36:28 +03:00
<ProjectReference Include="..\Core\Core.csproj" />
2019-03-28 04:34:39 +03:00
</ItemGroup>
2019-03-29 00:10:10 +03:00
<ItemGroup>
2019-04-19 16:42:55 +03:00
<Compile Update="Pages\Accounts\LoginPage.xaml.cs">
<DependentUpon>LoginPage.xaml</DependentUpon>
</Compile>
2019-03-29 06:52:33 +03:00
<Compile Update="Pages\GeneratorPage.xaml.cs">
<DependentUpon>GeneratorPage.xaml</DependentUpon>
2019-03-29 00:10:10 +03:00
</Compile>
2019-04-24 18:23:03 +03:00
<Compile Update="Pages\Vault\ViewPage.xaml.cs">
2019-04-22 18:32:17 +03:00
<DependentUpon>ViewPage.xaml</DependentUpon>
</Compile>
2019-03-29 06:52:33 +03:00
<Compile Update="Pages\SettingsPage.xaml.cs">
<DependentUpon>SettingsPage.xaml</DependentUpon>
</Compile>
2019-04-24 18:25:18 +03:00
<Compile Update="Pages\Vault\GroupingsPage\GroupingsPage.xaml.cs">
2019-03-29 20:24:44 +03:00
<DependentUpon>GroupingsPage.xaml</DependentUpon>
2019-03-29 06:52:33 +03:00
</Compile>
<Compile Update="Pages\TabsPage.xaml.cs">
<DependentUpon>TabsPage.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
2019-04-11 00:01:25 +03:00
<Folder Include="Resources\" />
2019-03-29 00:10:10 +03:00
</ItemGroup>
2019-03-29 23:52:57 +03:00
<ItemGroup>
<EmbeddedResource Update="Controls\CipherViewCell\CipherViewCell.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
</ItemGroup>
2019-04-03 05:15:11 +03:00
2019-04-11 00:01:25 +03:00
<ItemGroup>
<Compile Update="Resources\AppResources.Designer.cs">
<DependentUpon>AppResources.resx</DependentUpon>
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
</Compile>
2019-04-22 21:17:33 +03:00
<Compile Update="Styles\Variables.xaml.cs">
<DependentUpon>Variables.xaml</DependentUpon>
</Compile>
2019-04-22 18:32:17 +03: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-11 00:01:25 +03:00
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\AppResources.resx">
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>
2019-04-30 19:35:58 +03:00
<Generator>PublicResXFileCodeGenerator</Generator>
2019-04-11 00:01:25 +03:00
</EmbeddedResource>
2019-04-22 18:32:17 +03:00
<EmbeddedResource Update="Styles\Base.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
2019-04-11 00:01:25 +03:00
</ItemGroup>
2019-03-28 03:12:44 +03:00
</Project>