PRSDigitalKeyUnit.csproj 715 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net9.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\..\DigitalKeyUnitCommands\DigitalKeyUnitCommands.csproj" />
  14. <ProjectReference Include="..\..\inabox\InABox.Server\InABox.Server.csproj" />
  15. <ProjectReference Include="..\..\inabox\inabox.wpf\InABox.Wpf.csproj" />
  16. </ItemGroup>
  17. </Project>