QueryLogsSqliteApp.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
  6. <Version>5.0.2</Version>
  7. <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
  8. <Company>Technitium</Company>
  9. <Product>Technitium DNS Server</Product>
  10. <Authors>Shreyas Zare</Authors>
  11. <AssemblyName>QueryLogsSqliteApp</AssemblyName>
  12. <RootNamespace>QueryLogsSqlite</RootNamespace>
  13. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  14. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  15. <Description>Logs all incoming DNS requests and their responses in a Sqlite database that can be queried from the DNS Server web console. The query logging throughput is limited by the disk throughput on which the Sqlite db file is stored. This app is not recommended to be used with very high throughput (more than 20,000 requests/second).</Description>
  16. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  17. <OutputType>Library</OutputType>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.6" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
  24. <Private>false</Private>
  25. </ProjectReference>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Reference Include="TechnitiumLibrary.Net">
  29. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  30. <Private>false</Private>
  31. </Reference>
  32. <Reference Include="TechnitiumLibrary">
  33. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
  34. <Private>false</Private>
  35. </Reference>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <None Update="dnsApp.config">
  39. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  40. </None>
  41. </ItemGroup>
  42. </Project>