HttpListener.csproj 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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>{C788981C-7F54-4408-B477-C94E486A1AF5}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>HttpListener</RootNamespace>
  11. <AssemblyName>HttpListener</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. <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
  30. <RestorePackages>true</RestorePackages>
  31. </PropertyGroup>
  32. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  33. <PlatformTarget>AnyCPU</PlatformTarget>
  34. <DebugSymbols>true</DebugSymbols>
  35. <DebugType>full</DebugType>
  36. <Optimize>false</Optimize>
  37. <OutputPath>bin\Debug\</OutputPath>
  38. <DefineConstants>DEBUG;TRACE</DefineConstants>
  39. <ErrorReport>prompt</ErrorReport>
  40. <WarningLevel>4</WarningLevel>
  41. </PropertyGroup>
  42. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  43. <PlatformTarget>AnyCPU</PlatformTarget>
  44. <DebugType>pdbonly</DebugType>
  45. <Optimize>true</Optimize>
  46. <OutputPath>bin\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <ErrorReport>prompt</ErrorReport>
  49. <WarningLevel>4</WarningLevel>
  50. </PropertyGroup>
  51. <ItemGroup>
  52. <Reference Include="EntityFramework">
  53. <HintPath>..\packages\EntityFramework.6.0.0-beta1\lib\net45\EntityFramework.dll</HintPath>
  54. </Reference>
  55. <Reference Include="EntityFramework.SqlServer">
  56. <HintPath>..\packages\EntityFramework.6.0.0-beta1\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  57. </Reference>
  58. <Reference Include="MongoDB.Bson">
  59. <HintPath>..\packages\mongocsharpdriver.1.8.1\lib\net35\MongoDB.Bson.dll</HintPath>
  60. </Reference>
  61. <Reference Include="MongoDB.Driver">
  62. <HintPath>..\packages\mongocsharpdriver.1.8.1\lib\net35\MongoDB.Driver.dll</HintPath>
  63. </Reference>
  64. <Reference Include="Mono.Security">
  65. <HintPath>..\packages\Npgsql.EF6.2.0.12-pre4\lib\net45\Mono.Security.dll</HintPath>
  66. </Reference>
  67. <Reference Include="Mono.Security.Protocol.Tls">
  68. <HintPath>..\packages\Npgsql.EF6.2.0.12-pre4\lib\net45\Mono.Security.Protocol.Tls.dll</HintPath>
  69. </Reference>
  70. <Reference Include="MySql.Data">
  71. <HintPath>..\packages\MySql.Data.Entity.6.7.2-beta-ef6\lib\net45\MySql.Data.dll</HintPath>
  72. </Reference>
  73. <Reference Include="MySql.Data.Entity">
  74. <HintPath>..\packages\MySql.Data.Entity.6.7.2-beta-ef6\lib\net45\MySql.Data.Entity.dll</HintPath>
  75. </Reference>
  76. <Reference Include="Npgsql">
  77. <HintPath>..\packages\Npgsql.EF6.2.0.12-pre4\lib\net45\Npgsql.dll</HintPath>
  78. </Reference>
  79. <Reference Include="RazorGenerator.Templating">
  80. <HintPath>..\packages\RazorGenerator.Templating.2.1.1\lib\net40\RazorGenerator.Templating.dll</HintPath>
  81. </Reference>
  82. <Reference Include="System" />
  83. <Reference Include="System.ComponentModel.DataAnnotations" />
  84. <Reference Include="System.Configuration" />
  85. <Reference Include="System.Core" />
  86. <Reference Include="System.Web" />
  87. <Reference Include="System.Web.Extensions" />
  88. <Reference Include="System.Xml.Linq" />
  89. <Reference Include="System.Data.DataSetExtensions" />
  90. <Reference Include="Microsoft.CSharp" />
  91. <Reference Include="System.Data" />
  92. <Reference Include="System.Xml" />
  93. </ItemGroup>
  94. <ItemGroup>
  95. <Compile Include="Fortunes.generated.cs">
  96. <AutoGen>True</AutoGen>
  97. <DesignTime>True</DesignTime>
  98. <DependentUpon>Fortunes.cshtml</DependentUpon>
  99. </Compile>
  100. <Compile Include="Models\Fortune.cs" />
  101. <Compile Include="Models\MongoDB.cs" />
  102. <Compile Include="Models\World.cs" />
  103. <Compile Include="Program.cs" />
  104. <Compile Include="Properties\AssemblyInfo.cs" />
  105. </ItemGroup>
  106. <ItemGroup>
  107. <None Include="App.config" />
  108. <None Include="Fortunes.cshtml">
  109. <Generator>RazorGenerator</Generator>
  110. <LastGenOutput>Fortunes.generated.cs</LastGenOutput>
  111. </None>
  112. <None Include="packages.config" />
  113. </ItemGroup>
  114. <ItemGroup>
  115. <BootstrapperPackage Include=".NETFramework,Version=v4.5">
  116. <Visible>False</Visible>
  117. <ProductName>Microsoft .NET Framework 4.5 %28x86 and x64%29</ProductName>
  118. <Install>true</Install>
  119. </BootstrapperPackage>
  120. <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
  121. <Visible>False</Visible>
  122. <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
  123. <Install>false</Install>
  124. </BootstrapperPackage>
  125. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  126. <Visible>False</Visible>
  127. <ProductName>.NET Framework 3.5 SP1</ProductName>
  128. <Install>false</Install>
  129. </BootstrapperPackage>
  130. </ItemGroup>
  131. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  132. <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
  133. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  134. Other similar extension points exist, see Microsoft.Common.targets.
  135. <Target Name="BeforeBuild">
  136. </Target>
  137. <Target Name="AfterBuild">
  138. </Target>
  139. -->
  140. </Project>