LightSwitch.csproj 863 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows7.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <UseWPF>true</UseWPF>
  8. <RootNamespace>DataLogistics</RootNamespace>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.135" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ProjectReference Include="..\..\..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />
  15. <ProjectReference Include="..\..\..\..\inabox\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  16. <ProjectReference Include="..\..\..\..\inabox\InABox.Server\InABox.Server.csproj" />
  17. <ProjectReference Include="..\Command\Command.csproj" />
  18. </ItemGroup>
  19. </Project>