45 lines
1.3 KiB
XML
45 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<EnableDefaultEmbeddedResourceItems>False</EnableDefaultEmbeddedResourceItems>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Ooui\Ooui.csproj" />
|
|
<ProjectReference Include="..\Ooui.Forms\Ooui.Forms.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Xamarin.Forms" Version="2.4.0.38779" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="**/*.xaml" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="ButtonXamlPage.xaml.cs">
|
|
<DependentUpon>*.xaml</DependentUpon>
|
|
</Compile>
|
|
<Compile Condition=" '$(EnableDefaultCompileItems)' == 'true' " Update="DisplayAlertPage.xaml.cs">
|
|
<DependentUpon>*.xaml</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="ButtonXamlPage.xaml">
|
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
|
</EmbeddedResource>
|
|
<EmbeddedResource Update="DisplayAlertPage.xaml">
|
|
<Generator>MSBuild:UpdateDesignTimeXaml</Generator>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<RuntimeIdentifiers>win10-x64;osx.10.11-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|