mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
21 lines
583 B
XML
21 lines
583 B
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="..\Lib\Lib.csproj" />
|
|
</ItemGroup>
|
|
</Project> |