DhcpServer.csproj 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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>{D28B4902-AF2D-4D86-B6F9-66B3D6767EF2}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>DhcpServer</RootNamespace>
  10. <AssemblyName>DhcpServer</AssemblyName>
  11. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  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. <LangVersion>8</LangVersion>
  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. <LangVersion>8</LangVersion>
  36. </PropertyGroup>
  37. <ItemGroup>
  38. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  39. <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  40. </Reference>
  41. <Reference Include="System" />
  42. <Reference Include="System.Core" />
  43. <Reference Include="System.Xml.Linq" />
  44. <Reference Include="System.Data.DataSetExtensions" />
  45. <Reference Include="Microsoft.CSharp" />
  46. <Reference Include="System.Data" />
  47. <Reference Include="System.Net.Http" />
  48. <Reference Include="System.Xml" />
  49. </ItemGroup>
  50. <ItemGroup>
  51. <Compile Include="AppConfigs.cs" />
  52. <Compile Include="App\ClientEntry.cs" />
  53. <Compile Include="App\DhcpPacket.cs" />
  54. <Compile Include="Properties\Settings.Designer.cs">
  55. <AutoGen>True</AutoGen>
  56. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  57. <DependentUpon>Settings.settings</DependentUpon>
  58. </Compile>
  59. <Compile Include="Protocol\DhcpBootpFlag.cs" />
  60. <Compile Include="Protocol\DhcpHardwareType.cs" />
  61. <Compile Include="Protocol\DhcpMessageType.cs" />
  62. <Compile Include="Protocol\DhcpOpCode.cs" />
  63. <Compile Include="Protocol\DhcpOption.cs" />
  64. <Compile Include="Protocol\DhcpPacket.cs" />
  65. <Compile Include="DhcpProgram.cs" />
  66. <Compile Include="Properties\AssemblyInfo.cs" />
  67. <Compile Include="Utils\ExtensionMethods.cs" />
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Include="App.config" />
  71. <None Include="packages.config" />
  72. <None Include="Properties\Settings.settings">
  73. <Generator>SettingsSingleFileGenerator</Generator>
  74. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  75. </None>
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. </Project>