WhatIsMyDnsApp.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
  6. <Version>6.0</Version>
  7. <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
  8. <Company>Technitium</Company>
  9. <Product>Technitium DNS Server</Product>
  10. <Authors>Shreyas Zare</Authors>
  11. <AssemblyName>WhatIsMyDnsApp</AssemblyName>
  12. <RootNamespace>WhatIsMyDns</RootNamespace>
  13. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  14. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  15. <Description>Allows creating APP records in primary and forwarder zones that can return the IP address of the user's DNS Server for A, AAAA, and TXT queries.</Description>
  16. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  17. <OutputType>Library</OutputType>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
  21. <Private>false</Private>
  22. </ProjectReference>
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Reference Include="TechnitiumLibrary.Net">
  26. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  27. <Private>false</Private>
  28. </Reference>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <None Update="dnsApp.config">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. </ItemGroup>
  35. </Project>