2019-03-28 04:34:39 +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>
|
|
|
|
|
<ProjectReference Include="..\Lib\Lib.csproj" />
|
|
|
|
|
</ItemGroup>
|
2019-03-28 03:12:44 +03:00
|
|
|
|
</Project>
|