bitwarden-android/src/App/App.csproj

27 lines
733 B
XML
Raw Normal View History

2019-03-28 04:36:28 +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>
<Compile Update="Pages\Accounts\HomePage.xaml.cs">
<DependentUpon>HomePage.xaml</DependentUpon>
</Compile>
</ItemGroup>
2019-03-28 03:12:44 +03:00
</Project>