|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>net7.0</TargetFramework> |
| 4 | + <Nullable>enable</Nullable> |
| 5 | + <LangVersion>latest</LangVersion> |
| 6 | + <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault> |
| 7 | + <Platforms>AnyCPU;x64</Platforms> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + |
| 11 | + <ItemGroup> |
| 12 | + <AvaloniaResource Include="Assets\**" /> |
| 13 | + </ItemGroup> |
| 14 | + |
| 15 | + |
| 16 | + <ItemGroup> |
| 17 | + <None Remove="Assets\exifglass_icon_512.ico" /> |
| 18 | + <None Remove="Assets\exifglass_store_badge.svg" /> |
| 19 | + </ItemGroup> |
| 20 | + |
| 21 | + <ItemGroup> |
| 22 | + <PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" /> |
| 23 | + <PackageReference Include="Avalonia.Controls.DataGrid" Version="11.0.0" /> |
| 24 | + <PackageReference Include="Avalonia.Svg.Skia" Version="11.0.0" /> |
| 25 | + <PackageReference Include="Avalonia.Themes.Fluent" Version="$(AvaloniaVersion)" /> |
| 26 | + <PackageReference Include="Avalonia.Fonts.Inter" Version="$(AvaloniaVersion)" /> |
| 27 | + <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.--> |
| 28 | + <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" /> |
| 29 | + <PackageReference Include="CliWrap" Version="3.6.4" /> |
| 30 | + <PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" /> |
| 31 | + <PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" /> |
| 32 | + <PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="7.0.0" /> |
| 33 | + <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" /> |
| 34 | + </ItemGroup> |
| 35 | + |
| 36 | + <ItemGroup> |
| 37 | + <ProjectReference Include="..\..\..\..\@imageglass\ImageGlass.Tools\Source\ImageGlass.Tools\ImageGlass.Tools.csproj" /> |
| 38 | + </ItemGroup> |
| 39 | + |
| 40 | + <ItemGroup> |
| 41 | + <Compile Update="AboutWindow.axaml.cs"> |
| 42 | + <DependentUpon>%(Filename)</DependentUpon> |
| 43 | + </Compile> |
| 44 | + <Compile Update="MainWindow.axaml.cs"> |
| 45 | + <DependentUpon>%(Filename)</DependentUpon> |
| 46 | + </Compile> |
| 47 | + <Compile Update="SettingsWindow.axaml.cs"> |
| 48 | + <DependentUpon>%(Filename)</DependentUpon> |
| 49 | + </Compile> |
| 50 | + <Compile Update="UpdateWindow.axaml.cs"> |
| 51 | + <DependentUpon>%(Filename)</DependentUpon> |
| 52 | + </Compile> |
| 53 | + </ItemGroup> |
| 54 | +</Project> |
0 commit comments