InABox.Client.Local.csproj 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  8. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  9. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\InABox.Database\InABox.Database.csproj" />
  13. <ProjectReference Include="..\InABox.WebSocket.Shared\InABox.WebSocket.Shared.csproj" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Compile Remove="archive\**" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <EmbeddedResource Remove="archive\**" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <None Remove="archive\**" />
  23. <None Remove=".gitignore" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />
  27. </ItemGroup>
  28. </Project>