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)
This commit is contained in:
parent
de5c262943
commit
b87088848a
|
@ -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.0">
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
||||||
|
</PackageReference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
|
@ -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="12.0.2" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
|
@ -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")]
|
|
|
@ -1,159 +1,23 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>net48</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProductVersion>8.0.30703</ProductVersion>
|
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
|
||||||
<ProjectGuid>{BE8A04DD-C704-40B2-8AD2-3655B429FAE1}</ProjectGuid>
|
<ProjectGuid>{BE8A04DD-C704-40B2-8AD2-3655B429FAE1}</ProjectGuid>
|
||||||
<OutputType>Library</OutputType>
|
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">./</SolutionDir>
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>WebDAVSharp.Server</RootNamespace>
|
<RootNamespace>WebDAVSharp.Server</RootNamespace>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
<AssemblyName>WebDAVSharp.Server</AssemblyName>
|
<AssemblyName>WebDAVSharp.Server</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
<AssemblyDescription>WebDAV Server implementation for WebDAV#</AssemblyDescription>
|
||||||
<FileAlignment>512</FileAlignment>
|
<Version>1.5.0.0</Version>
|
||||||
<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>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<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.Web" />
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
|
<PackageReference Include="Common.Logging" Version="3.4.1" />
|
||||||
|
<PackageReference Include="Common.Logging.Core" Version="3.4.1" />
|
||||||
</ItemGroup>
|
</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>
|
</Project>
|
|
@ -2,20 +2,19 @@
|
||||||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>WebDAVSharp.Server</id>
|
<id>WebDAVSharp.Server</id>
|
||||||
<version>1.0.7</version>
|
<version>1.5.0</version>
|
||||||
<title>WebDAV# Server</title>
|
<title>WebDAV# Server</title>
|
||||||
<authors>Ewout Merckx,Lieven Janssen</authors>
|
<authors>Lasse V. Karlsen,Ewout Merckx,Lieven Janssen,Franz Heinz,Michael Vesely</authors>
|
||||||
<owners>Xplore+</owners>
|
<owners>ART-ist</owners>
|
||||||
<projectUrl>http://webdavsharp.github.io/</projectUrl>
|
<projectUrl>http://webdavsharp.github.io/</projectUrl>
|
||||||
<iconUrl>https://raw.githubusercontent.com/WebDAVSharp/WebDAVSharp.Server/master/Icon.png</iconUrl>
|
<iconUrl>https://raw.githubusercontent.com/WebDAVSharp/WebDAVSharp.Server/master/Icon.png</iconUrl>
|
||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||||
<description>A WebDAV server, coded in C#, which can be used for various WebDAV .NET applications.
|
<description>A WebDAV server, coded in C#, which can be used for various WebDAV .NET applications.</description>
|
||||||
|
<summary>
|
||||||
This server was based on another open source project, also called WebDAV#, maintained by Lasse V. Karlsen.</description>
|
The WebDAV server was based on another open source project, also called WebDAV#, maintained by Lieven Janssen and Ewout Merckx
|
||||||
<summary>The WebDAV server was based on another open source project, also called WebDAV#, maintained by Lasse V. Karlsen.
|
wich 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>
|
This version of WebDAV# has been developed by Franz Heinz,Michael Vesely.</summary>
|
||||||
<copyright>2014 Xplore+</copyright>
|
<tags>WebDAV, server, WebDAVSharp, WebDAV#, API, Framework, MVC, WebApi</tags>
|
||||||
<tags>WebDAV, server, WebDAVSharp, WebDAV#, API, framework, Xplore+</tags>
|
|
||||||
<frameworkAssemblies>
|
<frameworkAssemblies>
|
||||||
<frameworkAssembly assemblyName="System" targetFramework="" />
|
<frameworkAssembly assemblyName="System" targetFramework="" />
|
||||||
<frameworkAssembly assemblyName="System.Core" targetFramework="" />
|
<frameworkAssembly assemblyName="System.Core" targetFramework="" />
|
||||||
|
|
|
@ -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>
|
|
|
@ -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")]
|
|
|
@ -1,146 +1,44 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
<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.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')" />
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<TargetFramework>net48</TargetFramework>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
||||||
<ProductVersion>
|
|
||||||
</ProductVersion>
|
|
||||||
<SchemaVersion>2.0</SchemaVersion>
|
|
||||||
<ProjectGuid>{61960A13-2683-468D-AC74-8ED97207F395}</ProjectGuid>
|
<ProjectGuid>{61960A13-2683-468D-AC74-8ED97207F395}</ProjectGuid>
|
||||||
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
|
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">../WebDAVSharp.Server</SolutionDir>
|
||||||
<OutputType>Library</OutputType>
|
|
||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
||||||
<RootNamespace>WebApplication</RootNamespace>
|
<RootNamespace>WebApplication</RootNamespace>
|
||||||
<AssemblyName>WebApplication</AssemblyName>
|
</PropertyGroup>
|
||||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<AssemblyName>WebDAVSharp.WebApplication</AssemblyName>
|
||||||
|
<AssemblyTitle>WebDAVSharp.WebApplication</AssemblyTitle>
|
||||||
|
<AssemblyCopyright>Copyright © 2016</AssemblyCopyright>
|
||||||
|
<Version>1.5.0.0</Version>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
<UseIISExpress>true</UseIISExpress>
|
<UseIISExpress>true</UseIISExpress>
|
||||||
<IISExpressSSLPort />
|
<IISExpressSSLPort />
|
||||||
<IISExpressAnonymousAuthentication />
|
<IISExpressAnonymousAuthentication />
|
||||||
<IISExpressWindowsAuthentication />
|
<IISExpressWindowsAuthentication />
|
||||||
<IISExpressUseClassicPipelineMode />
|
<IISExpressUseClassicPipelineMode />
|
||||||
<UseGlobalApplicationHostFile />
|
<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>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<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.Web" />
|
||||||
<Reference Include="System.Xml" />
|
|
||||||
<Reference Include="System.Configuration" />
|
<PackageReference Include="Microsoft.AspNet.Mvc" Version="5.2.3" />
|
||||||
<Reference Include="System.Web.Services" />
|
<PackageReference Include="Microsoft.AspNet.Razor" Version="3.2.3" />
|
||||||
<Reference Include="System.EnterpriseServices" />
|
<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>
|
||||||
<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>
|
<ProjectExtensions>
|
||||||
<VisualStudio>
|
<VisualStudio>
|
||||||
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
|
||||||
|
@ -159,18 +57,5 @@
|
||||||
</FlavorProperties>
|
</FlavorProperties>
|
||||||
</VisualStudio>
|
</VisualStudio>
|
||||||
</ProjectExtensions>
|
</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>
|
</Project>
|
|
@ -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>
|
|
|
@ -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>
|
|
Loading…
Reference in New Issue