DhcpServer.csproj 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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.8</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <PlatformTarget>AnyCPU</PlatformTarget>
  19. <DebugSymbols>true</DebugSymbols>
  20. <DebugType>full</DebugType>
  21. <Optimize>false</Optimize>
  22. <OutputPath>..\bin\Debug\</OutputPath>
  23. <DefineConstants>DEBUG;TRACE</DefineConstants>
  24. <ErrorReport>prompt</ErrorReport>
  25. <WarningLevel>4</WarningLevel>
  26. <LangVersion>8</LangVersion>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <PlatformTarget>AnyCPU</PlatformTarget>
  30. <DebugType>pdbonly</DebugType>
  31. <Optimize>true</Optimize>
  32. <OutputPath>..\bin\Release\</OutputPath>
  33. <DefineConstants>TRACE</DefineConstants>
  34. <ErrorReport>prompt</ErrorReport>
  35. <WarningLevel>4</WarningLevel>
  36. <LangVersion>8</LangVersion>
  37. </PropertyGroup>
  38. <ItemGroup>
  39. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  40. <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
  41. </Reference>
  42. <Reference Include="PacketDotNet, Version=1.0.3.0, Culture=neutral, PublicKeyToken=451414c7667b2a58, processorArchitecture=MSIL">
  43. <HintPath>..\packages\PacketDotNet.1.0.3\lib\net45\PacketDotNet.dll</HintPath>
  44. </Reference>
  45. <Reference Include="SharpPcap, Version=5.1.0.0, Culture=neutral, processorArchitecture=MSIL">
  46. <HintPath>..\packages\SharpPcap.5.1.0\lib\netstandard2.0\SharpPcap.dll</HintPath>
  47. </Reference>
  48. <Reference Include="System" />
  49. <Reference Include="System.Configuration" />
  50. <Reference Include="System.Core" />
  51. <Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  52. <HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.6.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
  53. </Reference>
  54. <Reference Include="System.Xml.Linq" />
  55. <Reference Include="System.Data.DataSetExtensions" />
  56. <Reference Include="Microsoft.CSharp" />
  57. <Reference Include="System.Data" />
  58. <Reference Include="System.Net.Http" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="App\DhcpEntryManager.cs" />
  63. <Compile Include="App\DhcpEntry.cs" />
  64. <Compile Include="App\DhcpPacket.cs" />
  65. <Compile Include="Models\PoolSlot.cs" />
  66. <Compile Include="Properties\Settings.Designer.cs">
  67. <AutoGen>True</AutoGen>
  68. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  69. <DependentUpon>Settings.settings</DependentUpon>
  70. </Compile>
  71. <Compile Include="Protocol\DhcpBootpFlag.cs" />
  72. <Compile Include="Protocol\DhcpHardwareType.cs" />
  73. <Compile Include="Protocol\DhcpMessageType.cs" />
  74. <Compile Include="Protocol\DhcpOpCode.cs" />
  75. <Compile Include="Protocol\DhcpOption.cs" />
  76. <Compile Include="Protocol\DhcpPacket.cs" />
  77. <Compile Include="DhcpProgram.cs" />
  78. <Compile Include="Properties\AssemblyInfo.cs" />
  79. </ItemGroup>
  80. <ItemGroup>
  81. <None Include="App.config" />
  82. <None Include="packages.config" />
  83. <None Include="Properties\Settings.settings">
  84. <Generator>SettingsSingleFileGenerator</Generator>
  85. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  86. </None>
  87. </ItemGroup>
  88. <ItemGroup>
  89. <ProjectReference Include="..\Utils\Utils.csproj">
  90. <Project>{369BBF56-A30E-478F-AE99-8427BC7415E8}</Project>
  91. <Name>Utils</Name>
  92. </ProjectReference>
  93. </ItemGroup>
  94. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  95. </Project>