AdvancedBlockingApp.csproj 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>7.1.1</Version>
  6. <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
  7. <Company>Technitium</Company>
  8. <Product>Technitium DNS Server</Product>
  9. <Authors>Shreyas Zare</Authors>
  10. <AssemblyName>AdvancedBlockingApp</AssemblyName>
  11. <RootNamespace>AdvancedBlocking</RootNamespace>
  12. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  13. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  14. <Description>Blocks domain names using block lists and regex block lists. Supports creating groups based on client's IP address or subnet to enforce different block lists and regex block lists for each group.\n\nNote! This app works independent of the DNS server's built-in blocking feature. The options configured in DNS server Settings section does not apply to this app.</Description>
  15. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  16. <OutputType>Library</OutputType>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
  20. <Private>false</Private>
  21. </ProjectReference>
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Reference Include="TechnitiumLibrary">
  25. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
  26. <Private>false</Private>
  27. </Reference>
  28. <Reference Include="TechnitiumLibrary.Net">
  29. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  30. <Private>false</Private>
  31. </Reference>
  32. </ItemGroup>
  33. <ItemGroup>
  34. <None Update="dnsApp.config">
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. </None>
  37. </ItemGroup>
  38. </Project>