Compare commits

...

5 Commits
master ... dev

Author SHA1 Message Date
Michael Vesely 7491c0bb2d Update package Newtonsoft.Json 12.02 →13.0.2 2023-02-27 07:12:23 +01:00
Michael Vesely 4c8bb095f1 Update .net reference assemblies to 1.0.2 2022-11-16 17:29:46 +01:00
Michael Vesely ac04ca65ba Add .gitignore 2021-08-28 08:15:33 +02:00
Michael Vesely 601f03b411 Delete /obj/Debug 2021-08-28 08:15:19 +02:00
Michael Vesely b87088848a Switch _MVC.csproj files to "SDK Style"
- Manually rewriting .csproj files
- Deleting all Properties/AssemblyInfo files (now in csproj)
- Deleting all packages.config files (now in csproj)
- Adding Directory.Build.props/tagrget files to set defaults and allow central Package versioning
- WIP: update .nuspec file (sh/could be included i csproj)
2021-07-21 22:24:19 +02:00
21 changed files with 95 additions and 512 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
**/obj/
**/bin/
**/*.user
node_modules/

View File

@ -0,0 +1,17 @@
<Project>
<!--
see: https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2019
seealso: https://docs.microsoft.com/de-de/visualstudio/msbuild/common-msbuild-project-items?view=vs-2019 https://docs.microsoft.com/en-us/visualstudio/msbuild/common-msbuild-project-properties?view=vs-2019
-->
<ItemGroup>
<!--
Packages required when not building on .NET Framework 4.8
-->
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net48" Version="1.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>

View File

@ -0,0 +1,22 @@
<Project>
<ItemGroup>
<!--
Overwrite versions of referenced packages to avoid version conflicts and allow central package upgrades.
("PackageReference Update" allows/requires the individual project to opt in referencing a package using "PackageReference Include".)
-->
<PackageReference Update="Common.Logging" Version="3.4.1" />
<PackageReference Update="Common.Logging.Core" Version="3.4.1" />
<PackageReference Update="Microsoft.AspNet.Mvc" Version="5.2.3" />
<PackageReference Update="Microsoft.AspNet.Razor" Version="3.2.3" />
<PackageReference Update="Microsoft.AspNet.WebApi" Version="5.2.3" />
<PackageReference Update="Microsoft.AspNet.WebApi.Client" Version="5.2.3" />
<PackageReference Update="Microsoft.AspNet.WebApi.Core" Version="5.2.3" />
<PackageReference Update="Microsoft.AspNet.WebApi.WebHost" Version="5.2.3" />
<PackageReference Update="Microsoft.AspNet.WebPages" Version="3.2.3" />
<PackageReference Update="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" Version="1.0.0" />
<PackageReference Update="Microsoft.Web.Infrastructure" Version="1.0.0.0" />
<PackageReference Update="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
</Project>

View File

@ -1,21 +0,0 @@
using System;
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("WebDAVSharp.Server")]
[assembly: AssemblyDescription("WebDAV Server implementation for WebDAV#")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("WebDAVSharp")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("947fc4a0-9ed5-4d6c-9a97-9daf02524439")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: NeutralResourcesLanguage("en")]
[assembly: CLSCompliant(true)]
[assembly: InternalsVisibleTo("WebDAVSharp.Server.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b3873160e2fe02227fcc8df15c8beb7bb90a43f375f587ed283f770172cb6215fe4ab11c07508c97cda3220b36e2f59a246b9ab659a49dfd360bbbac1b7bf4e84f1d8c356f6504c3659d8c8742d7cb591254674898fdff5121bd8fd79953ad43bed463fe054b62d27a83ae561380562cd624d775353697c0e28194bd0896df97")]

View File

@ -1,159 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<TargetFramework>net48</TargetFramework>
<ProjectGuid>{BE8A04DD-C704-40B2-8AD2-3655B429FAE1}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">./</SolutionDir>
<RootNamespace>WebDAVSharp.Server</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<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>
<AssemblyDescription>WebDAV Server implementation for WebDAV#</AssemblyDescription>
<Version>1.5.0.0</Version>
</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" />
<PackageReference Include="Common.Logging" Version="3.4.1" />
<PackageReference Include="Common.Logging.Core" Version="3.4.1" />
</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>

View File

@ -2,20 +2,19 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>WebDAVSharp.Server</id>
<version>1.0.7</version>
<version>1.5.0</version>
<title>WebDAV# Server</title>
<authors>Ewout Merckx,Lieven Janssen</authors>
<owners>Xplore+</owners>
<authors>Lasse V. Karlsen,Ewout Merckx,Lieven Janssen,Franz Heinz,Michael Vesely</authors>
<owners>ART-ist</owners>
<projectUrl>http://webdavsharp.github.io/</projectUrl>
<iconUrl>https://raw.githubusercontent.com/WebDAVSharp/WebDAVSharp.Server/master/Icon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A WebDAV server, coded in C#, which can be used for various WebDAV .NET applications.
This server was based on another open source project, also called WebDAV#, maintained by Lasse V. Karlsen.</description>
<summary>The WebDAV server was based on another open source project, also called WebDAV#, maintained by Lasse V. Karlsen.
This version of WebDAV# has been developed by Lieven Janssen and Ewout Merckx.</summary>
<copyright>2014 Xplore+</copyright>
<tags>WebDAV, server, WebDAVSharp, WebDAV#, API, framework, Xplore+</tags>
<description>A WebDAV server, coded in C#, which can be used for various WebDAV .NET applications.</description>
<summary>
The WebDAV server was based on another open source project, also called WebDAV#, maintained by Lieven Janssen and Ewout Merckx
wich was based on another open source project, also called WebDAV#, maintained by Lasse V. Karlsen.
This version of WebDAV# has been developed by Franz Heinz,Michael Vesely.</summary>
<tags>WebDAV, server, WebDAVSharp, WebDAV#, API, Framework, MVC, WebApi</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework="" />
<frameworkAssembly assemblyName="System.Core" targetFramework="" />

View File

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Common.Logging" version="3.4.1" targetFramework="net45" />
<package id="Common.Logging.Core" version="3.4.1" targetFramework="net45" />
<package id="Microsoft.CSharp" version="4.0.1" targetFramework="net45" />
<package id="Microsoft.Net.Compilers" version="2.4.0" targetFramework="net45" developmentDependency="true" />
</packages>

View File

@ -1,35 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("WebDAVSharp.WebServer")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("WebDAVSharp.WebServer")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("61960a13-2683-468d-ac74-8ed97207f395")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View File

@ -1,146 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\WebDAVSharp.Server\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\WebDAVSharp.Server\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
<Import Project="..\WebDAVSharp.Server\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\WebDAVSharp.Server\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<!-- <Import Project="..\WebDAVSharp.Server\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\WebDAVSharp.Server\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" /> -->
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>
</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<TargetFramework>net48</TargetFramework>
<ProjectGuid>{61960A13-2683-468D-AC74-8ED97207F395}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">../WebDAVSharp.Server</SolutionDir>
<RootNamespace>WebApplication</RootNamespace>
<AssemblyName>WebApplication</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>WebDAVSharp.WebApplication</AssemblyName>
<AssemblyTitle>WebDAVSharp.WebApplication</AssemblyTitle>
<AssemblyCopyright>Copyright © 2016</AssemblyCopyright>
<Version>1.5.0.0</Version>
</PropertyGroup>
<PropertyGroup>
<UseIISExpress>true</UseIISExpress>
<IISExpressSSLPort />
<IISExpressAnonymousAuthentication />
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Web.DynamicData" />
<Reference Include="System.Web.ApplicationServices" />
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Core" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="System.Xml" />
<Reference Include="System.Configuration" />
<Reference Include="System.Web.Services" />
<Reference Include="System.EnterpriseServices" />
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.3" />
<PackageReference Include="Microsoft.AspNet.Razor" Version="3.2.3" />
<PackageReference Include="Microsoft.AspNet.WebApi" Version="5.2.3" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.3" />
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.3" />
<PackageReference Include="Microsoft.AspNet.WebApi.WebHost" Version="5.2.3" />
<PackageReference Include="Microsoft.AspNet.WebPages" Version="3.2.3" />
<PackageReference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" Version="1.0.0" />
<PackageReference Include="Microsoft.Web.Infrastructure" Version="1.0.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="6.0.4" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Web.Razor">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
</Reference>
<Reference Include="System.Web.Webpages">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Webpages.dll</HintPath>
</Reference>
<Reference Include="System.Web.Webpages.Deployment">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Webpages.Deployment.dll</HintPath>
</Reference>
<Reference Include="System.Web.Webpages.Razor">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Webpages.Razor.dll</HintPath>
</Reference>
<Reference Include="System.Web.Helpers">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.Webpages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Web.Infrastructure">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
</Reference>
<Reference Include="System.Web.Mvc">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\WebDAVSharp.Server\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http.Formatting">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath>
</Reference>
<Reference Include="System.Web.Http">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.WebApi.Core.5.2.3\lib\net45\System.Web.Http.dll</HintPath>
</Reference>
<Reference Include="System.Web.Http.WebHost">
<HintPath>..\WebDAVSharp.Server\packages\Microsoft.AspNet.WebApi.WebHost.5.2.3\lib\net45\System.Web.Http.WebHost.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Content Include="Global.asax" />
<Content Include="Web.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="App_Start\RouteConfig.cs" />
<Compile Include="App_Start\WebApiConfig.cs" />
<Compile Include="Controllers\WebDAVController.cs" />
<Compile Include="Global.asax.cs">
<DependentUpon>Global.asax</DependentUpon>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Views\web.config">
<SubType>Designer</SubType>
</Content>
<Content Include="packages.config" />
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</None>
<None Include="Web.Release.config">
<DependentUpon>Web.config</DependentUpon>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="App_Data\" />
<Folder Include="Models\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WebDAVSharp.Server\WebDAVSharp.Server.csproj">
<Project>{BE8A04DD-C704-40B2-8AD2-3655B429FAE1}</Project>
<Name>WebDAVSharp.Server</Name>
</ProjectReference>
</ItemGroup>
<PropertyGroup>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
@ -159,18 +57,5 @@
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<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>
<Error Condition="!Exists('..\WebDAVSharp.Server\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\WebDAVSharp.Server\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props'))" />
<Error Condition="!Exists('..\WebDAVSharp.Server\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\WebDAVSharp.Server\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
</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>

View File

@ -1,37 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<UseIISExpress>true</UseIISExpress>
<WebStackScaffolding_ControllerDialogWidth>600</WebStackScaffolding_ControllerDialogWidth>
<WebStackScaffolding_IsLayoutPageSelected>True</WebStackScaffolding_IsLayoutPageSelected>
<WebStackScaffolding_IsPartialViewSelected>False</WebStackScaffolding_IsPartialViewSelected>
<WebStackScaffolding_IsReferencingScriptLibrariesSelected>True</WebStackScaffolding_IsReferencingScriptLibrariesSelected>
<WebStackScaffolding_LayoutPageFile />
<WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected>
</PropertyGroup>
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<StartPageUrl>
</StartPageUrl>
<StartAction>NoStartPage</StartAction>
<AspNetDebugging>True</AspNetDebugging>
<SilverlightDebugging>False</SilverlightDebugging>
<NativeDebugging>False</NativeDebugging>
<SQLDebugging>False</SQLDebugging>
<ExternalProgram>
</ExternalProgram>
<StartExternalURL>
</StartExternalURL>
<StartCmdLineArguments>
</StartCmdLineArguments>
<StartWorkingDirectory>
</StartWorkingDirectory>
<EnableENC>True</EnableENC>
<AlwaysStartWebServerOnDebug>True</AlwaysStartWebServerOnDebug>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
</Project>

View File

@ -1,47 +0,0 @@
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\csc.exe
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\Microsoft.CodeAnalysis.CSharp.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\Microsoft.CodeAnalysis.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\Microsoft.CodeAnalysis.VisualBasic.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\Microsoft.CSharp.Core.targets
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\Microsoft.VisualBasic.Core.targets
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\System.Collections.Immutable.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\System.Reflection.Metadata.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\vbc.exe
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\VBCSCompiler.exe
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\roslyn\VBCSCompiler.exe.config
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\WebApplication.dll.config
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\WebApplication.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\WebApplication.pdb
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Microsoft.Web.Infrastructure.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Newtonsoft.Json.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Net.Http.Formatting.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Helpers.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Http.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Http.WebHost.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Mvc.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Razor.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Webpages.Deployment.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Webpages.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Webpages.Razor.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Razor.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Webpages.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Webpages.Deployment.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Webpages.Razor.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Helpers.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Mvc.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Newtonsoft.Json.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Net.Http.Formatting.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Http.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\System.Web.Http.WebHost.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\obj\Debug\WebApplication.csprojResolveAssemblyReference.cache
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\obj\Debug\WebApplication.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\obj\Debug\WebApplication.pdb
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\WebDAVSharp.Server.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Common.Logging.Core.dll
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\WebDAVSharp.Server.pdb
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\WebDAVSharp.Server.xml
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Common.Logging.Core.pdb
D:\_Coding\Art-IST\WebDAV\WebDavSharp_Web\WebApplication\bin\Common.Logging.Core.xml

View File

@ -1,47 +0,0 @@
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\obj\Debug\WebApplication.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\obj\Debug\WebApplication.pdb
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\csc.exe
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\Microsoft.CodeAnalysis.CSharp.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\Microsoft.CodeAnalysis.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\Microsoft.CodeAnalysis.VisualBasic.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\Microsoft.CSharp.Core.targets
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\Microsoft.VisualBasic.Core.targets
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\System.Collections.Immutable.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\System.Reflection.Metadata.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\vbc.exe
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\VBCSCompiler.exe
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\roslyn\VBCSCompiler.exe.config
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\WebApplication.dll.config
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\WebApplication.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\WebApplication.pdb
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Microsoft.Web.Infrastructure.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Newtonsoft.Json.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Net.Http.Formatting.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Helpers.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Http.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Http.WebHost.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Mvc.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Razor.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Webpages.Deployment.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Webpages.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Webpages.Razor.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\WebDAVSharp.Server.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Common.Logging.Core.dll
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\WebDAVSharp.Server.pdb
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\WebDAVSharp.Server.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Razor.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Webpages.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Webpages.Deployment.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Webpages.Razor.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Helpers.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Mvc.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Newtonsoft.Json.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Net.Http.Formatting.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Http.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\System.Web.Http.WebHost.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Common.Logging.Core.pdb
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\bin\Common.Logging.Core.xml
C:\Users\Charly\Source\Repos\WebDAV\WebDavSharp_MVC\WebDAVSharp.WebServer\obj\Debug\WebDAVSharp.WebServer.csprojResolveAssemblyReference.cache

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.Core" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.2.3" targetFramework="net452" />
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net452" />
<package id="Microsoft.CodeDom.Providers.DotNetCompilerPlatform" version="1.0.0" targetFramework="net452" />
<package id="Microsoft.Net.Compilers" version="1.0.0" targetFramework="net452" developmentDependency="true" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net452" />
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net452" />
</packages>