mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
40 lines
No EOL
1.1 KiB
XML
40 lines
No EOL
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<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.Forms" Version="3.6.0.264807" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Pages\GeneratorPage.xaml.cs">
|
|
<DependentUpon>GeneratorPage.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Pages\SettingsPage.xaml.cs">
|
|
<DependentUpon>SettingsPage.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Pages\VaultGroupingsPage.xaml.cs">
|
|
<DependentUpon>VaultGroupingsPage.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Update="Pages\TabsPage.xaml.cs">
|
|
<DependentUpon>TabsPage.xaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Pages\Accounts\" />
|
|
</ItemGroup>
|
|
</Project> |