20 lines
778 B
XML
20 lines
778 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0-windows7.0</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<OutputType>WinExe</OutputType>
|
|
<ApplicationIcon>XplorerPlane.ico</ApplicationIcon>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Resource Include="XplorerPlane.ico" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Prism.Unity" Version="9.0.537" />
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
|
|
<PackageReference Include="Telerik.UI.for.Wpf.NetCore.Xaml" Version="2024.1.408" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\XP.Common\XP.Common.csproj" />
|
|
<ProjectReference Include="..\XP.Hardware.PLC\XP.Hardware.PLC.csproj" />
|
|
</ItemGroup>
|
|
</Project> |