Bitwarden-app-android-iphon.../src/App/App.csproj

67 lines
2.0 KiB
XML
Raw Normal View History

2019-03-29 04:52:33 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2019-03-28 01:12:44 +01: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.Essentials" Version="1.1.0" />
2019-04-17 23:13:53 +02:00
<PackageReference Include="Xamarin.Forms" Version="3.6.0.293080" />
2019-03-28 01:12:44 +01:00
</ItemGroup>
2019-03-28 02:34:39 +01:00
<ItemGroup>
2019-03-28 02:36:28 +01:00
<ProjectReference Include="..\Core\Core.csproj" />
2019-03-28 02:34:39 +01:00
</ItemGroup>
2019-03-28 22:10:10 +01:00
<ItemGroup>
2019-03-29 04:52:33 +01:00
<Compile Update="Pages\GeneratorPage.xaml.cs">
<DependentUpon>GeneratorPage.xaml</DependentUpon>
2019-03-28 22:10:10 +01:00
</Compile>
2019-03-29 04:52:33 +01:00
<Compile Update="Pages\SettingsPage.xaml.cs">
<DependentUpon>SettingsPage.xaml</DependentUpon>
</Compile>
2019-03-29 18:24:44 +01:00
<Compile Update="Pages\GroupingsPage\GroupingsPage.xaml.cs">
<DependentUpon>GroupingsPage.xaml</DependentUpon>
2019-03-29 04:52:33 +01:00
</Compile>
<Compile Update="Pages\TabsPage.xaml.cs">
<DependentUpon>TabsPage.xaml</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
2019-04-10 23:01:25 +02:00
<Folder Include="Resources\" />
2019-03-29 04:52:33 +01:00
<Folder Include="Pages\Accounts\" />
2019-03-28 22:10:10 +01:00
</ItemGroup>
2019-03-29 21:52:57 +01:00
<ItemGroup>
<EmbeddedResource Update="Controls\CipherViewCell\CipherViewCell.xaml">
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
</EmbeddedResource>
</ItemGroup>
2019-04-03 04:15:11 +02:00
2019-04-10 23:01:25 +02: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 04:15:11 +02:00
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
2019-04-03 16:05:37 +02:00
<Exec Command="npm run sass" />
2019-04-03 04:15:11 +02:00
</Target>
2019-03-28 01:12:44 +01:00
</Project>