DnsBlockListApp.csproj 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>1.0.1</Version>
  6. <Company>Technitium</Company>
  7. <Product>Technitium DNS Server</Product>
  8. <Authors>Shreyas Zare</Authors>
  9. <AssemblyName>DnsBlockListApp</AssemblyName>
  10. <RootNamespace>DnsBlockList</RootNamespace>
  11. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  12. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  13. <Description>Allows creating APP records in primary and forwarder zones that can return A or TXT records based on the DNS Block Lists (DNSBL) configured. The implementation is based on RFC 5782.</Description>
  14. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  15. <OutputType>Library</OutputType>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
  19. <Private>false</Private>
  20. </ProjectReference>
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Reference Include="TechnitiumLibrary">
  24. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
  25. <Private>false</Private>
  26. </Reference>
  27. <Reference Include="TechnitiumLibrary.Net">
  28. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  29. <Private>false</Private>
  30. </Reference>
  31. </ItemGroup>
  32. <ItemGroup>
  33. <None Update="dnsApp.config">
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. </None>
  36. <None Update="domain-blocklist.txt">
  37. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  38. </None>
  39. <None Update="ip-blocklist.txt">
  40. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  41. </None>
  42. </ItemGroup>
  43. </Project>