RamDavisk.csproj 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.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>{6A866CD7-60C2-4EB7-9313-E5C2827FF9F2}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>RamDavisk</RootNamespace>
  11. <AssemblyName>RamDavisk</AssemblyName>
  12. <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="System" />
  36. <Reference Include="System.Core" />
  37. <Reference Include="System.Web" />
  38. <Reference Include="System.Xml.Linq" />
  39. <Reference Include="System.Data.DataSetExtensions" />
  40. <Reference Include="System.Runtime.Caching" />
  41. <Reference Include="Microsoft.CSharp" />
  42. <Reference Include="System.Data" />
  43. <Reference Include="System.Deployment" />
  44. <Reference Include="System.Drawing" />
  45. <Reference Include="System.Net.Http" />
  46. <Reference Include="System.Windows.Forms" />
  47. <Reference Include="System.Xml" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Compile Include="Program.cs" />
  51. <Compile Include="Properties\AssemblyInfo.cs" />
  52. <Compile Include="Ramfs\Inters\StreamWrap.cs" />
  53. <Compile Include="Ramfs\Inters\Utilies.cs" />
  54. <Compile Include="Ramfs\WebDavRamfsStore.cs" />
  55. <Compile Include="Ramfs\WebDavRamfsStoreCollection.cs" />
  56. <Compile Include="Ramfs\WebDavRamfsStoreDocument.cs" />
  57. <Compile Include="Ramfs\WebDavRamfsStoreFileInfo.cs" />
  58. <Compile Include="Ramfs\WebDavRamfsStoreItem.cs" />
  59. <Compile Include="WebDAVSharp.Server\Adapters\AuthenticationTypes\HttpListenerAnyonymousAdapter.cs" />
  60. <Compile Include="WebDAVSharp.Server\Adapters\AuthenticationTypes\HttpListenerBasicAdapter.cs" />
  61. <Compile Include="WebDAVSharp.Server\Adapters\AuthenticationTypes\HttpListenerNegotiateAdapter.cs" />
  62. <Compile Include="WebDAVSharp.Server\Adapters\HttpListenerContextAdapter.cs" />
  63. <Compile Include="WebDAVSharp.Server\Adapters\HttpListenerRequestAdapter.cs" />
  64. <Compile Include="WebDAVSharp.Server\Adapters\HttpListenerResponseAdapter.cs" />
  65. <Compile Include="WebDAVSharp.Server\Adapters\IAdapter.cs" />
  66. <Compile Include="WebDAVSharp.Server\Adapters\IHttpListener.cs" />
  67. <Compile Include="WebDAVSharp.Server\Adapters\IHttpListenerContext.cs" />
  68. <Compile Include="WebDAVSharp.Server\Adapters\IHttpListenerRequest.cs" />
  69. <Compile Include="WebDAVSharp.Server\Adapters\IHttpListenerResponse.cs" />
  70. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavConflictException.cs" />
  71. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavException.cs" />
  72. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavForbiddenException.cs" />
  73. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavInternalServerException.cs" />
  74. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavLengthRequiredException.cs" />
  75. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavMethodNotAllowedException.cs" />
  76. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavNotFoundException.cs" />
  77. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavNotImplementedException.cs" />
  78. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavPreconditionFailedException.cs" />
  79. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavUnauthorizedException.cs" />
  80. <Compile Include="WebDAVSharp.Server\Exceptions\WebDavUnsupportedMediaTypeException.cs" />
  81. <Compile Include="WebDAVSharp.Server\LockProperty.cs" />
  82. <Compile Include="WebDAVSharp.Server\MethodHandlers\IWebDAVMethodHandler.cs" />
  83. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVCopyMethodHandler.cs" />
  84. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVDeleteMethodHandler.cs" />
  85. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVGetMethodHandler.cs" />
  86. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVHeadMethodHandler.cs" />
  87. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVLockMethodHandler.cs" />
  88. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVMethodHandlerBase.cs" />
  89. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVMethodHandlers.cs" />
  90. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVMkColMethodHandler.cs" />
  91. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVMoveMethodHandler.cs" />
  92. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVOptionsMethodHandler.cs" />
  93. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVPropfindMethodHandler.cs" />
  94. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVProppatchMethodHandler.cs" />
  95. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVPutMethodHandler.cs" />
  96. <Compile Include="WebDAVSharp.Server\MethodHandlers\WebDAVUnlockMethodHandler.cs" />
  97. <Compile Include="WebDAVSharp.Server\Stores\BaseClasses\WebDavFileInfoBase.cs" />
  98. <Compile Include="WebDAVSharp.Server\Stores\BaseClasses\WebDAVStoreBase.cs" />
  99. <Compile Include="WebDAVSharp.Server\Stores\BaseClasses\WebDAVStoreDocumentBase.cs" />
  100. <Compile Include="WebDAVSharp.Server\Stores\BaseClasses\WebDAVStoreItemBase.cs" />
  101. <Compile Include="WebDAVSharp.Server\Stores\DiskStore\WebDAVDiskStore.cs" />
  102. <Compile Include="WebDAVSharp.Server\Stores\DiskStore\WebDAVDiskStoreCollection.cs" />
  103. <Compile Include="WebDAVSharp.Server\Stores\DiskStore\WebDAVDiskStoreDocument.cs" />
  104. <Compile Include="WebDAVSharp.Server\Stores\DiskStore\WebDavDiskStoreFileInfo.cs" />
  105. <Compile Include="WebDAVSharp.Server\Stores\DiskStore\WebDAVDiskStoreItem.cs" />
  106. <Compile Include="WebDAVSharp.Server\Stores\IWebDavFileInfo.cs" />
  107. <Compile Include="WebDAVSharp.Server\Stores\IWebDAVStore.cs" />
  108. <Compile Include="WebDAVSharp.Server\Stores\IWebDAVStoreCollection.cs" />
  109. <Compile Include="WebDAVSharp.Server\Stores\IWebDAVStoreDocument.cs" />
  110. <Compile Include="WebDAVSharp.Server\Stores\IWebDAVStoreItem.cs" />
  111. <Compile Include="WebDAVSharp.Server\Stores\Locks\Enums\WebDavLockScope.cs" />
  112. <Compile Include="WebDAVSharp.Server\Stores\Locks\Enums\WebDavLockType.cs" />
  113. <Compile Include="WebDAVSharp.Server\Stores\Locks\Interfaces\IWebDavStoreItemLock.cs" />
  114. <Compile Include="WebDAVSharp.Server\Stores\Locks\Interfaces\IWebDavStoreItemLockInstance.cs" />
  115. <Compile Include="WebDAVSharp.Server\Stores\Locks\WebDavStoreItemLock.cs" />
  116. <Compile Include="WebDAVSharp.Server\Stores\Locks\WebDavStoreItemLockBase.cs" />
  117. <Compile Include="WebDAVSharp.Server\Stores\Locks\WebDavStoreItemLockInstance.cs" />
  118. <Compile Include="WebDAVSharp.Server\Stores\Locks\WebDavStoreItemLockInstanceBase.cs" />
  119. <Compile Include="WebDAVSharp.Server\Utilities\FlagsHelper.cs" />
  120. <Compile Include="WebDAVSharp.Server\Utilities\HttpReciever.cs" />
  121. <Compile Include="WebDAVSharp.Server\Utilities\LimitedConcurrencyLevelTaskScheduler.cs" />
  122. <Compile Include="WebDAVSharp.Server\Utilities\Md5Util.cs" />
  123. <Compile Include="WebDAVSharp.Server\Utilities\WebDavCacheBase.cs" />
  124. <Compile Include="WebDAVSharp.Server\Utilities\WebDavStatusCode.cs" />
  125. <Compile Include="WebDAVSharp.Server\WebDavAuthType.cs" />
  126. <Compile Include="WebDAVSharp.Server\WebDAVDisposableBase.cs" />
  127. <Compile Include="WebDAVSharp.Server\WebDAVExtensions.cs" />
  128. <Compile Include="WebDAVSharp.Server\WebDAVProperty.cs" />
  129. <Compile Include="WebDAVSharp.Server\WebDAVServer.cs" />
  130. <EmbeddedResource Include="Properties\Resources.resx">
  131. <Generator>ResXFileCodeGenerator</Generator>
  132. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  133. <SubType>Designer</SubType>
  134. </EmbeddedResource>
  135. <Compile Include="Properties\Resources.Designer.cs">
  136. <AutoGen>True</AutoGen>
  137. <DependentUpon>Resources.resx</DependentUpon>
  138. </Compile>
  139. <None Include="Properties\Settings.settings">
  140. <Generator>SettingsSingleFileGenerator</Generator>
  141. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  142. </None>
  143. <Compile Include="Properties\Settings.Designer.cs">
  144. <AutoGen>True</AutoGen>
  145. <DependentUpon>Settings.settings</DependentUpon>
  146. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  147. </Compile>
  148. <None Include="WebDAVSharp.Server\LICENSE" />
  149. <None Include="WebDAVSharp.Server\README.md" />
  150. </ItemGroup>
  151. <ItemGroup>
  152. <None Include="App.config" />
  153. </ItemGroup>
  154. <ItemGroup />
  155. <ItemGroup>
  156. <Content Include="WebDAVSharp.Server\Icon.png" />
  157. <Content Include="WebDAVSharp.Server\_SOURCE.TXT" />
  158. </ItemGroup>
  159. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  160. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  161. Other similar extension points exist, see Microsoft.Common.targets.
  162. <Target Name="BeforeBuild">
  163. </Target>
  164. <Target Name="AfterBuild">
  165. </Target>
  166. -->
  167. </Project>