Dns64App.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>2.0</Version>
  6. <Company>Technitium</Company>
  7. <Product>Technitium DNS Server</Product>
  8. <Authors>Shreyas Zare</Authors>
  9. <AssemblyName>Dns64App</AssemblyName>
  10. <RootNamespace>Dns64</RootNamespace>
  11. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  12. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  13. <Description>Enables DNS64 function for both authoritative and recursive resolver responses for use by IPv6 only clients.</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>