NoDataApp.csproj 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>2.0.1</Version>
  6. <Company>Technitium</Company>
  7. <Product>Technitium DNS Server</Product>
  8. <Authors>Shreyas Zare</Authors>
  9. <AssemblyName>NoDataApp</AssemblyName>
  10. <RootNamespace>NoData</RootNamespace>
  11. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  12. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  13. <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>
  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.Net">
  24. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  25. <Private>false</Private>
  26. </Reference>
  27. </ItemGroup>
  28. <ItemGroup>
  29. <None Update="dnsApp.config">
  30. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  31. </None>
  32. </ItemGroup>
  33. </Project>