DnsService.csproj 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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>{7873B2B8-01BA-48BC-B4B0-0857FFD873C9}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>DnsService</RootNamespace>
  10. <AssemblyName>DnsService</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>none</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="System.Configuration.Install" />
  43. <Reference Include="System.ServiceProcess" />
  44. <Reference Include="TechnitiumLibrary.Net.Firewall">
  45. <HintPath>..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.Firewall.dll</HintPath>
  46. </Reference>
  47. </ItemGroup>
  48. <ItemGroup>
  49. <Compile Include="ProjectInstaller.cs">
  50. <SubType>Component</SubType>
  51. </Compile>
  52. <Compile Include="ProjectInstaller.Designer.cs">
  53. <DependentUpon>ProjectInstaller.cs</DependentUpon>
  54. </Compile>
  55. <Compile Include="DnsService.cs">
  56. <SubType>Component</SubType>
  57. </Compile>
  58. <Compile Include="DnsService.Designer.cs">
  59. <DependentUpon>DnsService.cs</DependentUpon>
  60. </Compile>
  61. <Compile Include="Program.cs" />
  62. <Compile Include="Properties\AssemblyInfo.cs" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <EmbeddedResource Include="ProjectInstaller.resx">
  66. <DependentUpon>ProjectInstaller.cs</DependentUpon>
  67. </EmbeddedResource>
  68. <EmbeddedResource Include="DnsService.resx">
  69. <DependentUpon>DnsService.cs</DependentUpon>
  70. </EmbeddedResource>
  71. </ItemGroup>
  72. <ItemGroup>
  73. <None Include="App.config" />
  74. <None Include="logo2.ico" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <ProjectReference Include="..\DnsServerCore\DnsServerCore.csproj">
  78. <Project>{4494b79b-588c-41f2-95ad-0897123af154}</Project>
  79. <Name>DnsServerCore</Name>
  80. </ProjectReference>
  81. </ItemGroup>
  82. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  83. </Project>