OnlineLogViewer.csproj 718 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Tools\OnlineLogView</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <Nullable>enable</Nullable>
  9. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Microsoft.AspNetCore.SignalR.Client" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\Log\Log\Log.csproj" />
  16. <ProjectReference Include="..\..\Universal\Universal.csproj" />
  17. </ItemGroup>
  18. </Project>