SplitHorizonApp.csproj 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>6.0.2</Version>
  6. <Company>Technitium</Company>
  7. <Product>Technitium DNS Server</Product>
  8. <Authors>Shreyas Zare</Authors>
  9. <AssemblyName>SplitHorizonApp</AssemblyName>
  10. <RootNamespace>SplitHorizon</RootNamespace>
  11. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  12. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  13. <Description>Allows creating APP records in a primary and forwarder zones that can return different set of A or AAAA records, or CNAME record for clients querying over public, private, or other specified networks.\n\nEnables Address Translation of IP addresses in a DNS response for A &amp; AAAA type request based on the client's network address and the configured 1:1 translation.</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. </ItemGroup>
  37. </Project>