NoDataApp.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>3.0</Version>
  6. <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
  7. <Company>Technitium</Company>
  8. <Product>Technitium DNS Server</Product>
  9. <Authors>Shreyas Zare</Authors>
  10. <AssemblyName>NoDataApp</AssemblyName>
  11. <RootNamespace>NoData</RootNamespace>
  12. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  13. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  14. <Description>Allows creating APP records in a conditional forwarder zone that can returns a NO DATA response for requests that match the configured query type (QTYPE) to allow blocking records.</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.Net">
  25. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  26. <Private>false</Private>
  27. </Reference>
  28. </ItemGroup>
  29. <ItemGroup>
  30. <None Update="dnsApp.config">
  31. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  32. </None>
  33. </ItemGroup>
  34. </Project>