| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <Nullable>enable</Nullable>
- <LangVersion>latest</LangVersion>
- <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
- <ImplicitUsings>enable</ImplicitUsings>
- <Company>Ruben Hyldgaard Negendahl</Company>
- <Product>PicView</Product>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <IsAotCompatible>True</IsAotCompatible>
- <IsTrimmable>True</IsTrimmable>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <IsAotCompatible>True</IsAotCompatible>
- <IsTrimmable>True</IsTrimmable>
- </PropertyGroup>
-
- <ItemGroup>
- <AvaloniaResource Include="Assets\**" />
- </ItemGroup>
-
- <ItemGroup>
- <AvaloniaXaml Remove="Themes\**" />
- <Compile Remove="Themes\**" />
- <EmbeddedResource Remove="Themes\**" />
- <None Remove="Themes\**" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia" Version="11.0.7" />
- <PackageReference Include="Avalonia.ReactiveUI" Version="11.0.7" />
- <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
- <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.7" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="Views\UC\ImageViewer.axaml.cs">
- <DependentUpon>ImageViewer.axaml</DependentUpon>
- </Compile>
- <Compile Update="Views\UC\TitleTextbox.axaml.cs">
- <DependentUpon>TitleTextBox.axaml</DependentUpon>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Assets\" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\PicView.Core\PicView.Core.csproj" />
- </ItemGroup>
- </Project>
|