WebDavSharp/WebDavSharp_MVC/WebDAVSharp.Server/WebDAVSharp.Server.csproj

159 lines
8.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{BE8A04DD-C704-40B2-8AD2-3655B429FAE1}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>WebDAVSharp.Server</RootNamespace>
<AssemblyName>WebDAVSharp.Server</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DocumentationFile>bin\Debug\WebDAVSharp.Server.XML</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<LangVersion>latest</LangVersion>
<NoWarn>1572,1573,1591,1734</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DocumentationFile>bin\Release\WebDAVSharp.Server.XML</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<LangVersion>latest</LangVersion>
<NoWarn>1572,1573,1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseBinaries|AnyCPU'">
<OutputPath>bin\ReleaseBinaries\</OutputPath>
<DefineConstants>TRACE;USE_RELEASE_KEY</DefineConstants>
<DocumentationFile>bin\Release\WebDAVSharp.Server.XML</DocumentationFile>
<Optimize>true</Optimize>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<DebugType>pdbonly</DebugType>
<PlatformTarget>AnyCPU</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
<CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
<CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
<Prefer32Bit>false</Prefer32Bit>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>false</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>..\Lasse V. Karlsen.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Common.Logging, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
<HintPath>..\..\..\Common\packages\Common.Logging.3.4.1\lib\net40\Common.Logging.dll</HintPath>
</Reference>
<Reference Include="Common.Logging.Core, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
<HintPath>..\..\..\Common\packages\Common.Logging.Core.3.4.1\lib\net40\Common.Logging.Core.dll</HintPath>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Net" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Adapters\HttpListenerContextAdapter.cs" />
<Compile Include="Adapters\HttpListenerRequestAdapter.cs" />
<Compile Include="Adapters\HttpListenerResponseAdapter.cs" />
<Compile Include="Adapters\IAdapter.cs" />
<Compile Include="Adapters\IHttpListenerContext.cs" />
<Compile Include="Adapters\IHttpListenerRequest.cs" />
<Compile Include="Adapters\IHttpListenerResponse.cs" />
<Compile Include="Exceptions\WebDavLengthRequiredException.cs" />
<Compile Include="Exceptions\WebDavUnsupportedMediaTypeException.cs" />
<Compile Include="Exceptions\WebDavPreconditionFailedException.cs" />
<Compile Include="Exceptions\WebDavForbiddenException.cs" />
<Compile Include="Exceptions\WebDavUnauthorizedException.cs" />
<Compile Include="Exceptions\WebDavConflictException.cs" />
<Compile Include="Exceptions\WebDavException.cs" />
<Compile Include="Exceptions\WebDavInternalServerException.cs" />
<Compile Include="Exceptions\WebDavMethodNotAllowedException.cs" />
<Compile Include="Exceptions\WebDavNotFoundException.cs" />
<Compile Include="Exceptions\WebDavNotImplementedException.cs" />
<Compile Include="LockProperty.cs" />
<Compile Include="MethodHandlers\WebDavHeadMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavLockMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavMethodHandlerBase.cs" />
<Compile Include="MethodHandlers\WebDavPropfindMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavCopyMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavDeleteMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavMkColMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavMoveMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavOptionsMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavProppatchMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavPutMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavUnlockMethodHandler.cs" />
<Compile Include="Utilities\Md5Util.cs" />
<Compile Include="Stores\BaseClasses\WebDavStoreDocumentBase.cs" />
<Compile Include="Stores\BaseClasses\WebDavStoreBase.cs" />
<Compile Include="Stores\BaseClasses\WebDavStoreItemBase.cs" />
<Compile Include="Stores\DiskStore\WebDavDiskStore.cs" />
<Compile Include="Stores\DiskStore\WebDavDiskStoreCollection.cs" />
<Compile Include="Stores\DiskStore\WebDavDiskStoreDocument.cs" />
<Compile Include="Stores\DiskStore\WebDavDiskStoreItem.cs" />
<Compile Include="Stores\IWebDavStore.cs" />
<Compile Include="Adapters\IHttpListener.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="MethodHandlers\IWebDavMethodHandler.cs" />
<Compile Include="MethodHandlers\WebDavGetMethodHandler.cs" />
<Compile Include="Stores\IWebDavStoreCollection.cs" />
<Compile Include="Stores\IWebDavStoreDocument.cs" />
<Compile Include="Stores\IWebDavStoreItem.cs" />
<Compile Include="Utilities\WebDavStatusCode.cs" />
<Compile Include="WebDavDisposableBase.cs" />
<Compile Include="WebDavExtensions.cs" />
<Compile Include="WebDavProperty.cs" />
<Compile Include="WebDavServer.cs" />
<Compile Include="Adapters\HttpListenerAdapter.cs" />
<Compile Include="MethodHandlers\WebDavMethodHandlers.cs" />
</ItemGroup>
<ItemGroup>
<None Include="ClassDiagram.cd" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>