InABox.Client.Local.csproj 888 B

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />
  9. <ProjectReference Include="..\InABox.Database\InABox.Database.csproj" />
  10. <ProjectReference Include="..\InABox.WebSocket.Shared\InABox.WebSocket.Shared.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Compile Remove="archive\**" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <EmbeddedResource Remove="archive\**" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Remove="archive\**" />
  20. <None Remove=".gitignore" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <PackageReference Include="System.Collections.Immutable" Version="7.0.0" />
  24. </ItemGroup>
  25. </Project>