wolfSSL-TLS-Server.csproj 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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>{8921AD35-4E62-4DAC-8FEE-8C9F8E57DDD2}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>wolfSSL_TLS_Server</RootNamespace>
  11. <AssemblyName>wolfSSL-TLS-Server</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <PublishUrl>publish\</PublishUrl>
  15. <Install>true</Install>
  16. <InstallFrom>Disk</InstallFrom>
  17. <UpdateEnabled>false</UpdateEnabled>
  18. <UpdateMode>Foreground</UpdateMode>
  19. <UpdateInterval>7</UpdateInterval>
  20. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  21. <UpdatePeriodically>false</UpdatePeriodically>
  22. <UpdateRequired>false</UpdateRequired>
  23. <MapFileExtensions>true</MapFileExtensions>
  24. <ApplicationRevision>0</ApplicationRevision>
  25. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  26. <IsWebBootstrapper>false</IsWebBootstrapper>
  27. <UseApplicationTrust>false</UseApplicationTrust>
  28. <BootstrapperEnabled>true</BootstrapperEnabled>
  29. </PropertyGroup>
  30. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  31. <PlatformTarget>AnyCPU</PlatformTarget>
  32. <DebugSymbols>true</DebugSymbols>
  33. <DebugType>full</DebugType>
  34. <Optimize>false</Optimize>
  35. <OutputPath>..\DLL Debug\Win32\</OutputPath>
  36. <DefineConstants>DEBUG;TRACE</DefineConstants>
  37. <ErrorReport>prompt</ErrorReport>
  38. <WarningLevel>3</WarningLevel>
  39. </PropertyGroup>
  40. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  41. <PlatformTarget>AnyCPU</PlatformTarget>
  42. <DebugType>pdbonly</DebugType>
  43. <Optimize>true</Optimize>
  44. <OutputPath>..\DLL Release\Win32\</OutputPath>
  45. <DefineConstants>TRACE</DefineConstants>
  46. <ErrorReport>prompt</ErrorReport>
  47. <WarningLevel>4</WarningLevel>
  48. </PropertyGroup>
  49. <PropertyGroup>
  50. <StartupObject />
  51. </PropertyGroup>
  52. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  53. <DebugSymbols>true</DebugSymbols>
  54. <OutputPath>..\DLL Debug\x64\</OutputPath>
  55. <DefineConstants>DEBUG;TRACE</DefineConstants>
  56. <WarningLevel>4</WarningLevel>
  57. <DebugType>full</DebugType>
  58. <PlatformTarget>x64</PlatformTarget>
  59. <ErrorReport>prompt</ErrorReport>
  60. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  61. <Prefer32Bit>true</Prefer32Bit>
  62. </PropertyGroup>
  63. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  64. <OutputPath>..\DLL Release\x64\</OutputPath>
  65. <DefineConstants>TRACE</DefineConstants>
  66. <Optimize>true</Optimize>
  67. <DebugType>pdbonly</DebugType>
  68. <PlatformTarget>x64</PlatformTarget>
  69. <ErrorReport>prompt</ErrorReport>
  70. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  71. <Prefer32Bit>true</Prefer32Bit>
  72. </PropertyGroup>
  73. <ItemGroup>
  74. <Reference Include="System" />
  75. <Reference Include="System.Core" />
  76. <Reference Include="System.Xml.Linq" />
  77. <Reference Include="System.Data.DataSetExtensions" />
  78. <Reference Include="System.Data" />
  79. <Reference Include="System.Xml" />
  80. </ItemGroup>
  81. <ItemGroup>
  82. <Compile Include="Properties\AssemblyInfo.cs" />
  83. <Compile Include="wolfSSL-TLS-Server.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <None Include="App.config" />
  87. </ItemGroup>
  88. <ItemGroup>
  89. <ProjectReference Include="..\wolfSSL_CSharp\wolfSSL_CSharp.csproj">
  90. <Project>{52609808-0418-46d3-8e17-141927a1a39a}</Project>
  91. <Name>wolfSSL_CSharp</Name>
  92. </ProjectReference>
  93. </ItemGroup>
  94. <ItemGroup>
  95. <BootstrapperPackage Include=".NETFramework,Version=v4.5">
  96. <Visible>False</Visible>
  97. <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
  98. <Install>true</Install>
  99. </BootstrapperPackage>
  100. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  101. <Visible>False</Visible>
  102. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  103. <Install>false</Install>
  104. </BootstrapperPackage>
  105. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  106. <Visible>False</Visible>
  107. <ProductName>.NET Framework 3.5 SP1</ProductName>
  108. <Install>false</Install>
  109. </BootstrapperPackage>
  110. </ItemGroup>
  111. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  112. <PropertyGroup>
  113. <PreBuildEvent>
  114. </PreBuildEvent>
  115. </PropertyGroup>
  116. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  117. Other similar extension points exist, see Microsoft.Common.targets.
  118. <Target Name="BeforeBuild">
  119. </Target>
  120. <Target Name="AfterBuild">
  121. </Target>
  122. -->
  123. </Project>