refactored app common project

This commit is contained in:
Shreyas Zare
2021-09-18 11:48:28 +05:30
parent d795ab167e
commit de9337590d
6 changed files with 7 additions and 7 deletions

View File

@@ -10,8 +10,8 @@
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
<RepositoryType></RepositoryType>
<Description>.NET 5</Description>
<PackageId>DnsApplicationCommon</PackageId>
<Version>1.1</Version>
<PackageId>DnsServerCore.ApplicationCommon</PackageId>
<Version>2.0</Version>
</PropertyGroup>
<ItemGroup>

View File

@@ -22,7 +22,7 @@ using System.Net;
using System.Threading.Tasks;
using TechnitiumLibrary.Net.Dns;
namespace DnsApplicationCommon
namespace DnsServerCore.ApplicationCommon
{
/// <summary>
/// Allows a DNS App to handle incoming DNS requests for configured APP records in the DNS server zones.

View File

@@ -22,7 +22,7 @@ using System.Net;
using System.Threading.Tasks;
using TechnitiumLibrary.Net.Dns;
namespace DnsApplicationCommon
namespace DnsServerCore.ApplicationCommon
{
/// <summary>
/// Lets a DNS App to handle incoming requests for the DNS server's authoritative zone allowing it to act as an authoritative zone by itself and respond to any requests.

View File

@@ -23,7 +23,7 @@ using System.Net;
using System.Threading.Tasks;
using TechnitiumLibrary.Net.Dns;
namespace DnsApplicationCommon
namespace DnsServerCore.ApplicationCommon
{
public enum DnsServerResponseType : byte
{

View File

@@ -22,7 +22,7 @@ using System.Net;
using System.Threading.Tasks;
using TechnitiumLibrary.Net.Dns;
namespace DnsApplicationCommon
namespace DnsServerCore.ApplicationCommon
{
public enum DnsRequestControllerAction
{

View File

@@ -22,7 +22,7 @@ using System.Threading.Tasks;
using TechnitiumLibrary.Net.Dns;
using TechnitiumLibrary.Net.Proxy;
namespace DnsApplicationCommon
namespace DnsServerCore.ApplicationCommon
{
/// <summary>
/// Provides an interface to access the internal DNS Server core.