bitwarden-android/src/App/App.csproj

46 lines
1.3 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.Forms" Version="3.6.0.264807" />
</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-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-03-29 06:52:33 +03:00
<Compile Update="Pages\SettingsPage.xaml.cs">
<DependentUpon>SettingsPage.xaml</DependentUpon>
</Compile>
2019-03-29 20:24:44 +03:00
<Compile Update="Pages\GroupingsPage\GroupingsPage.xaml.cs">
<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>
<Folder Include="Pages\Accounts\" />
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-03-28 03:12:44 +03:00
</Project>