NxDomainOverrideApp.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>1.0</Version>
  6. <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
  7. <Company>Technitium</Company>
  8. <Product>Technitium DNS Server</Product>
  9. <Authors>Shreyas Zare</Authors>
  10. <AssemblyName>NxDomainOverrideApp</AssemblyName>
  11. <RootNamespace>NxDomainOverride</RootNamespace>
  12. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  13. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  14. <Description>Overrides NX Domain response with custom A/AAAA record response for configured domain names.</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>