PCC.DevClient.csproj 455 B

12345678910111213141516
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <RootNamespace>PCC</RootNamespace>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\PCC.DevShared\PCC.DevShared.csproj" />
  11. <ProjectReference Include="..\PCC.Shared\PCC.Shared.csproj" />
  12. </ItemGroup>
  13. </Project>