Dispenser/DispenserDesktop/DispenserDesktop.csproj

50 lines
2.0 KiB
XML

<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>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<LangVersion>latest</LangVersion>
<AssemblyName>Dispenser</AssemblyName>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<Version>1.0.0.11</Version>
<AssemblyVersion>1.0.0.11</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AspectInjector" Version="2.8.3-pre3"/>
<PackageReference Include="Avalonia" Version="11.0.10"/>
<PackageReference Include="Avalonia.Desktop" Version="11.0.10"/>
<PackageReference Include="Avalonia.Diagnostics" Version="11.0.10"/>
<PackageReference Include="MessageBox.Avalonia" Version="3.1.5.1"/>
<PackageReference Include="Serilog.Exceptions" Version="8.4.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DispenserUI\DispenserUI.csproj"/>
<Content Include="./settings.ini">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Templates\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="halcon\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Libs\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="package\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="coordinate"/>
</ItemGroup>
</Project>