| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | 
							- <Project Sdk="Microsoft.NET.Sdk">
 
-   <PropertyGroup>
 
-     <OutputType>WinExe</OutputType>
 
-     <!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
 
-     One for Windows with net7.0-windows TFM, one for MacOS with net7.0-macos and one with net7.0 TFM for Linux.-->
 
-     <TargetFramework>net8.0</TargetFramework>
 
-     <Nullable>enable</Nullable>
 
-     <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
 
-     <ApplicationManifest>app.manifest</ApplicationManifest>
 
-     <Company>Ruben Hyldgaard Negendahl</Company>
 
-     <Product>PicView</Product>
 
-     <UseAppHost>true</UseAppHost>
 
-     <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
 
-   </PropertyGroup>
 
-   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
 
-     <DebugType>none</DebugType>
 
-   </PropertyGroup>
 
-   <ItemGroup>
 
-     <PackageReference Include="Avalonia.Desktop" Version="11.1.0-rc1" />
 
-     <PackageReference Include="Avalonia.Themes.Simple" Version="11.1.0-rc1" />
 
-   </ItemGroup>
 
-   <ItemGroup>
 
-     <ProjectReference Include="..\PicView.Avalonia\PicView.Avalonia.csproj" />
 
-     <ProjectReference Include="..\PicView.Core\PicView.Core.csproj" />
 
-     <ProjectReference Include="..\PicView.MacOS\PicView.MacOS.csproj" />
 
-   </ItemGroup>
 
-   <ItemGroup>
 
-     <AvaloniaXaml Update="Views\ExifWindow.axaml">
 
-       <SubType>Designer</SubType>
 
-     </AvaloniaXaml>
 
-   </ItemGroup>
 
-   <ItemGroup>
 
-     <Compile Update="App.axaml.cs">
 
-       <DependentUpon>App.axaml</DependentUpon>
 
-     </Compile>
 
-     <Compile Update="Views\ExifWindow.axaml.cs">
 
-       <SubType>Code</SubType>
 
-       <DependentUpon>%(Filename)</DependentUpon>
 
-     </Compile>
 
-   </ItemGroup>
 
- 	<ItemGroup>
 
- 		<InternalsVisibleTo Include="PicView.Tests" />
 
- 	</ItemGroup>
 
- 	<ItemGroup>
 
- 	  <UpToDateCheckInput Remove="Views\SettingsWindow.axaml" />
 
- 	</ItemGroup>
 
- </Project>
 
 
  |