Light Bulb.csproj 740 B

12345678910111213141516171819
  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>Receiver</RootNamespace>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\..\..\inabox\InABox.Client.RPC\InABox.Client.RPC.csproj" />
  12. <ProjectReference Include="..\..\..\..\inabox\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  13. <ProjectReference Include="..\..\..\..\inabox\InABox.Server\InABox.Server.csproj" />
  14. <ProjectReference Include="..\Command\Command.csproj" />
  15. </ItemGroup>
  16. </Project>