32 строки
1.5 KiB
XML
32 строки
1.5 KiB
XML
<Project Sdk="Uno.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType Condition="'$(Configuration)'=='Release'">WinExe</OutputType>
|
|
<OutputType Condition="'$(Configuration)'=='Debug'">Exe</OutputType>
|
|
<TargetFramework>$(DotNetVersion)</TargetFramework>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Package.appxmanifest" />
|
|
<Manifest Include="$(ApplicationManifest)" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Uno.WinUI.Skia.Gtk" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
|
|
<PackageReference Include="SkiaSharp.Views.Uno.WinUI" />
|
|
<PackageReference Include="SkiaSharp.Skottie" />
|
|
<PackageReference Include="Uno.WinUI.DevServer" Condition="'$(Configuration)'=='Debug'" />
|
|
<PackageReference Include="Uno.UI.Adapter.Microsoft.Extensions.Logging" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\PhotoViewer\PhotoViewer.csproj" />
|
|
</ItemGroup>
|
|
<Import Project="..\PhotoViewer.Shared\base.props" />
|
|
|
|
<Target Name="ValidateOverrides" BeforeTargets="Restore;_CheckForUnsupportedTargetFramework" Condition="'$(OverrideTargetFramework)' != ''">
|
|
<Error
|
|
Text="OverrideTargetFramework set to '$(OverrideTargetFramework)' is invalid. Set OverrideTargetFramework to $([MSBuild]::Escape('$'))(DotNetVersion) or skip building this project (eg unload the project in Visual Studio)"
|
|
Condition="'$(OverrideTargetFramework)'!='$(DotNetVersion)'" />
|
|
</Target>
|
|
</Project>
|