SplitHorizonApp.csproj 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  5. <Version>3.0</Version>
  6. <Company>Technitium</Company>
  7. <Product>Technitium DNS Server</Product>
  8. <Authors>Shreyas Zare</Authors>
  9. <AssemblyName>SplitHorizonApp</AssemblyName>
  10. <RootNamespace>SplitHorizon</RootNamespace>
  11. <PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
  12. <RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
  13. <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
  14. <OutputType>Library</OutputType>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\..\DnsServerCore.ApplicationCommon\DnsServerCore.ApplicationCommon.csproj">
  21. <Private>false</Private>
  22. </ProjectReference>
  23. </ItemGroup>
  24. <ItemGroup>
  25. <Reference Include="TechnitiumLibrary">
  26. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.dll</HintPath>
  27. <Private>false</Private>
  28. </Reference>
  29. <Reference Include="TechnitiumLibrary.Net">
  30. <HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
  31. <Private>false</Private>
  32. </Reference>
  33. </ItemGroup>
  34. <ItemGroup>
  35. <None Update="dnsApp.config">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </None>
  38. </ItemGroup>
  39. </Project>