Dns64App.csproj 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>Dns64App</AssemblyName>
  11. <RootNamespace>Dns64</RootNamespace>
  12. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  13. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  14. <Description>Enables DNS64 function for both authoritative and recursive resolver responses for use by IPv6 only clients.\n\nWarning! Installing DNS64 app without having NAT64 in place will cause connectivity issues for some websites.</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>