GeoContinentApp.csproj 1.6 KB

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