TftpServer.csproj 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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>{21F3E98E-0210-4118-84F1-8DA4D90BCB0B}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <RootNamespace>TftpServer</RootNamespace>
  10. <AssemblyName>TftpServer</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="System" />
  39. <Reference Include="System.Core" />
  40. <Reference Include="System.Xml.Linq" />
  41. <Reference Include="System.Data.DataSetExtensions" />
  42. <Reference Include="Microsoft.CSharp" />
  43. <Reference Include="System.Data" />
  44. <Reference Include="System.Net.Http" />
  45. <Reference Include="System.Xml" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="TftpProgram.cs" />
  49. <Compile Include="Properties\AssemblyInfo.cs" />
  50. <Compile Include="Properties\Settings.Designer.cs">
  51. <DependentUpon>Settings.settings</DependentUpon>
  52. <AutoGen>True</AutoGen>
  53. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  54. </Compile>
  55. <Compile Include="Protocol\TftpOpCode.cs" />
  56. <Compile Include="Protocol\TftpPacket.cs" />
  57. <Compile Include="Utils\ExtensionMethods.cs" />
  58. </ItemGroup>
  59. <ItemGroup>
  60. <None Include="App.config" />
  61. <None Include="Properties\Settings.settings">
  62. <Generator>SettingsSingleFileGenerator</Generator>
  63. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  64. </None>
  65. </ItemGroup>
  66. <ItemGroup>
  67. <Folder Include="App\" />
  68. </ItemGroup>
  69. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  70. </Project>