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>
|
2019-04-10 00:10:56 +03:00
|
|
|
|
<PackageReference Include="Xamarin.Essentials" Version="1.1.0" />
|
2019-03-28 03:12:44 +03:00
|
|
|
|
<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>
|
2019-04-11 00:01:25 +03:00
|
|
|
|
<Folder Include="Resources\" />
|
2019-03-29 06:52:33 +03:00
|
|
|
|
<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-04-03 05:15:11 +03:00
|
|
|
|
|
2019-04-11 00:01:25 +03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Resources\AppResources.Designer.cs">
|
|
|
|
|
<DependentUpon>AppResources.resx</DependentUpon>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Resources\AppResources.resx">
|
|
|
|
|
<LastGenOutput>AppResources.Designer.cs</LastGenOutput>
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-04-03 05:15:11 +03:00
|
|
|
|
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
|
2019-04-03 17:05:37 +03:00
|
|
|
|
<Exec Command="npm run sass" />
|
2019-04-03 05:15:11 +03:00
|
|
|
|
</Target>
|
2019-03-28 03:12:44 +03:00
|
|
|
|
</Project>
|