123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <Version>7.0.1</Version>
- <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
- <Company>Technitium</Company>
- <Product>Technitium DNS Server</Product>
- <Authors>Shreyas Zare</Authors>
- <AssemblyName>FailoverApp</AssemblyName>
- <RootNamespace>Failover</RootNamespace>
- <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
- <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
- <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>
- <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
- <OutputType>Library</OutputType>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
- <Private>false</Private>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <Reference Include="TechnitiumLibrary">
- <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
- <Private>false</Private>
- </Reference>
- <Reference Include="TechnitiumLibrary.IO">
- <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.IO.dll</HintPath>
- <Private>false</Private>
- </Reference>
- <Reference Include="TechnitiumLibrary.Net">
- <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
- <Private>false</Private>
- </Reference>
- <Reference Include="TechnitiumLibrary.Net.Mail">
- <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.Mail.dll</HintPath>
- <Private>true</Private>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <None Update="dnsApp.config">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|