wolfSSL-DTLS-Server.csproj 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" 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>{730F047E-37A6-498F-A543-B6C98AA7B338}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>wolfSSL_DTLS_Server</RootNamespace>
  11. <AssemblyName>wolfSSL-DTLS-Server</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  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>$(SolutionDir)$(Configuration)\$(Platform)\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>$(SolutionDir)$(Configuration)\$(Platform)\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  36. <DebugSymbols>true</DebugSymbols>
  37. <OutputPath>$(SolutionDir)$(Configuration)\$(Platform)\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <DebugType>full</DebugType>
  40. <PlatformTarget>x64</PlatformTarget>
  41. <ErrorReport>prompt</ErrorReport>
  42. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  43. <Prefer32Bit>true</Prefer32Bit>
  44. <WarningLevel>0</WarningLevel>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  47. <OutputPath>$(SolutionDir)$(Configuration)\$(Platform)\x64</OutputPath>
  48. <DefineConstants>TRACE</DefineConstants>
  49. <Optimize>true</Optimize>
  50. <DebugType>pdbonly</DebugType>
  51. <PlatformTarget>x64</PlatformTarget>
  52. <ErrorReport>prompt</ErrorReport>
  53. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  54. <Prefer32Bit>true</Prefer32Bit>
  55. </PropertyGroup>
  56. <ItemGroup>
  57. <Reference Include="System" />
  58. <Reference Include="System.Core" />
  59. <Reference Include="System.Xml.Linq" />
  60. <Reference Include="System.Data.DataSetExtensions" />
  61. <Reference Include="System.Data" />
  62. <Reference Include="System.Xml" />
  63. </ItemGroup>
  64. <ItemGroup>
  65. <Compile Include="Properties\AssemblyInfo.cs" />
  66. <Compile Include="wolfSSL-DTLS-Server.cs" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <None Include="App.config" />
  70. </ItemGroup>
  71. <ItemGroup>
  72. <ProjectReference Include="..\wolfSSL_CSharp\wolfSSL_CSharp.csproj">
  73. <Project>{52609808-0418-46d3-8e17-141927a1a39a}</Project>
  74. <Name>wolfSSL_CSharp</Name>
  75. </ProjectReference>
  76. </ItemGroup>
  77. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  78. <PropertyGroup>
  79. <PreBuildEvent>
  80. </PreBuildEvent>
  81. </PropertyGroup>
  82. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  83. Other similar extension points exist, see Microsoft.Common.targets.
  84. <Target Name="BeforeBuild">
  85. </Target>
  86. <Target Name="AfterBuild">
  87. </Target>
  88. -->
  89. </Project>