DnsServerApp.csproj 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{C166A19B-B533-45F8-813F-861DAB6D1865}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>DnsServerApp</RootNamespace>
  10. <AssemblyName>DnsServerApp</AssemblyName>
  11. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <Prefer32Bit>false</Prefer32Bit>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <PlatformTarget>AnyCPU</PlatformTarget>
  29. <DebugType>pdbonly</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>TRACE</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <Prefer32Bit>false</Prefer32Bit>
  36. </PropertyGroup>
  37. <PropertyGroup>
  38. <ApplicationIcon>logo2.ico</ApplicationIcon>
  39. </PropertyGroup>
  40. <ItemGroup>
  41. <Reference Include="System" />
  42. <Reference Include="TechnitiumLibrary.Net.Firewall">
  43. <HintPath>..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.Firewall.dll</HintPath>
  44. </Reference>
  45. </ItemGroup>
  46. <ItemGroup>
  47. <Compile Include="Program.cs" />
  48. <Compile Include="Properties\AssemblyInfo.cs" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <ProjectReference Include="..\DnsServerCore\DnsServerCore.csproj">
  52. <Project>{4494b79b-588c-41f2-95ad-0897123af154}</Project>
  53. <Name>DnsServerCore</Name>
  54. </ProjectReference>
  55. </ItemGroup>
  56. <ItemGroup>
  57. <None Include="App.config" />
  58. <None Include="logo2.ico" />
  59. </ItemGroup>
  60. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  61. </Project>