FailoverApp.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>7.0.1</Version>
  6. <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
  7. <Company>Technitium</Company>
  8. <Product>Technitium DNS Server</Product>
  9. <Authors>Shreyas Zare</Authors>
  10. <AssemblyName>FailoverApp</AssemblyName>
  11. <RootNamespace>Failover</RootNamespace>
  12. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  13. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  14. <Description>Allows creating APP records in primary and forwarder zones that can return A or AAAA records, or CNAME record based on the health status of the servers. The app supports email alerts and web hooks to relay the health status.</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.IO">
  29. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.IO.dll</HintPath>
  30. <Private>false</Private>
  31. </Reference>
  32. <Reference Include="TechnitiumLibrary.Net">
  33. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  34. <Private>false</Private>
  35. </Reference>
  36. <Reference Include="TechnitiumLibrary.Net.Mail">
  37. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.Mail.dll</HintPath>
  38. <Private>true</Private>
  39. </Reference>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <None Update="dnsApp.config">
  43. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  44. </None>
  45. </ItemGroup>
  46. </Project>