mirror of
https://github.com/jwetzell/QControlKit.git
synced 2026-08-05 15:33:56 +00:00
31 lines
924 B
XML
31 lines
924 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<DebugType>portable</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Serilog" Version="2.9.0" />
|
|
<PackageReference Include="Xamarin.Forms" Version="4.8.0.1364" />
|
|
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Views\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="CueListPage.xaml">
|
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\QControlKit\QControlKit.csproj" />
|
|
</ItemGroup>
|
|
</Project> |