Skip to content

Commit a8f1006

Browse files
committed
Upgrade to MVC 5 and framework 4.6
Full updarage to mvc 5 and framework 4.6
1 parent 4ce140f commit a8f1006

32 files changed

+22344
-50
lines changed

.vs/config/applicationhost.config

+1,038
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<map />

jQuery-File-Upload.MVC3/Models/AccountModels.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class ChangePasswordModel
2323

2424
[DataType(DataType.Password)]
2525
[Display(Name = "Confirm new password")]
26-
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
26+
[System.Web.Mvc.Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
2727
public string ConfirmPassword { get; set; }
2828
}
2929

@@ -61,7 +61,7 @@ public class RegisterModel
6161

6262
[DataType(DataType.Password)]
6363
[Display(Name = "Confirm password")]
64-
[Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
64+
[System.ComponentModel.DataAnnotations.Compare("Password", ErrorMessage = "The password and confirmation password do not match.")]
6565
public string ConfirmPassword { get; set; }
6666
}
6767
}

jQuery-File-Upload.MVC3/Views/Web.config

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<configuration>
44
<configSections>
5-
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
6-
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
7-
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
5+
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
6+
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
7+
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
88
</sectionGroup>
99
</configSections>
1010

@@ -38,11 +38,11 @@
3838
-->
3939
<pages
4040
validateRequest="false"
41-
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
42-
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
43-
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
41+
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
42+
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"
43+
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
4444
<controls>
45-
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
45+
<add assembly="System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" namespace="System.Web.Mvc" tagPrefix="mvc" />
4646
</controls>
4747
</pages>
4848
</system.web>

jQuery-File-Upload.MVC3/Web.config

+37-29
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,59 @@
1-
<?xml version="1.0"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<!--
33
For more information on how to configure your ASP.NET application, please visit
44
http://go.microsoft.com/fwlink/?LinkId=152368
55
-->
66
<configuration>
77
<configSections>
8-
<section name="clientDependency" type="ClientDependency.Core.Config.ClientDependencySection, ClientDependency.Core" requirePermission="false"/>
8+
<section name="clientDependency" type="ClientDependency.Core.Config.ClientDependencySection, ClientDependency.Core" requirePermission="false" />
99
</configSections>
1010
<!--<location path="Upload">
1111
<system.web>
1212
<httpRuntime maxRequestLength="2097151" executionTimeout="100000"/>
1313
</system.web>
1414
</location>-->
1515
<appSettings>
16-
<add key="webpages:Version" value="1.0.0.0"/>
17-
<add key="ClientValidationEnabled" value="true"/>
18-
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
16+
<add key="webpages:Version" value="3.0.0.0" />
17+
<add key="ClientValidationEnabled" value="true" />
18+
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
1919
</appSettings>
20+
<!--
21+
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
22+
23+
The following attributes can be set on the <httpRuntime> tag.
24+
<system.Web>
25+
<httpRuntime targetFramework="4.6" />
26+
</system.Web>
27+
-->
2028
<system.web>
21-
<httpRuntime maxRequestLength="2097151" executionTimeout="100000"/>
22-
<pages>
29+
<httpRuntime maxRequestLength="2097151" executionTimeout="100000" />
30+
<pages controlRenderingCompatibilityVersion="4.0">
2331
<namespaces>
24-
<add namespace="System.Web.Helpers"/>
25-
<add namespace="System.Web.Mvc"/>
26-
<add namespace="System.Web.Mvc.Ajax"/>
27-
<add namespace="System.Web.Mvc.Html"/>
28-
<add namespace="System.Web.Routing"/>
29-
<add namespace="System.Web.WebPages"/>
32+
<add namespace="System.Web.Helpers" />
33+
<add namespace="System.Web.Mvc" />
34+
<add namespace="System.Web.Mvc.Ajax" />
35+
<add namespace="System.Web.Mvc.Html" />
36+
<add namespace="System.Web.Routing" />
37+
<add namespace="System.Web.WebPages" />
3038
</namespaces>
3139
</pages>
3240
<httpModules>
3341
<!-- ** Need to add the dependency module -->
34-
<add name="ClientDependencyModule" type="ClientDependency.Core.Module.ClientDependencyModule, ClientDependency.Core"/>
42+
<add name="ClientDependencyModule" type="ClientDependency.Core.Module.ClientDependencyModule, ClientDependency.Core" />
3543
</httpModules>
3644
<!--<httpHandlers>
3745
-->
3846
<!-- ** Need to add the dependency handler -->
3947
<!--
4048
<add verb="*" path="DependencyHandler.axd" type="ClientDependency.Core.CompositeFiles.CompositeDependencyHandler, ClientDependency.Core " />
4149
</httpHandlers>-->
42-
<compilation debug="true"/>
50+
<compilation debug="true" targetFramework="4.6" />
4351
</system.web>
4452
<system.webServer>
45-
<validation validateIntegratedModeConfiguration="false"/>
53+
<validation validateIntegratedModeConfiguration="false" />
4654
<modules runAllManagedModulesForAllRequests="true">
47-
<remove name="ClientDependencyModule"/>
48-
<add name="ClientDependencyModule" type="ClientDependency.Core.Module.ClientDependencyModule, ClientDependency.Core"/>
55+
<remove name="ClientDependencyModule" />
56+
<add name="ClientDependencyModule" type="ClientDependency.Core.Module.ClientDependencyModule, ClientDependency.Core" />
4957
</modules>
5058
<!--<handlers>
5159
-->
@@ -58,33 +66,33 @@
5866
<runtime>
5967
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
6068
<dependentAssembly>
61-
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
62-
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
69+
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
70+
<bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="3.0.0.0" />
6371
</dependentAssembly>
6472
<dependentAssembly>
65-
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
66-
<bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0"/>
73+
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
74+
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
6775
</dependentAssembly>
6876
<dependentAssembly>
69-
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
70-
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0"/>
77+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
78+
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
7179
</dependentAssembly>
7280
</assemblyBinding>
7381
</runtime>
7482
<clientDependency version="1">
7583
<!-- This section is used for Web Forms only, the enableCompositeFiles="true" is optional and by default is set to true -->
7684
<fileRegistration defaultProvider="LoaderControlProvider">
7785
<providers>
78-
<add name="PageHeaderProvider" type="ClientDependency.Core.FileRegistration.Providers.PageHeaderProvider, ClientDependency.Core" enableCompositeFiles="true"/>
79-
<add name="LazyLoadProvider" type="ClientDependency.Core.FileRegistration.Providers.LazyLoadProvider, ClientDependency.Core" enableCompositeFiles="true"/>
80-
<add name="LoaderControlProvider" type="ClientDependency.Core.FileRegistration.Providers.LoaderControlProvider, ClientDependency.Core" enableCompositeFiles="true"/>
86+
<add name="PageHeaderProvider" type="ClientDependency.Core.FileRegistration.Providers.PageHeaderProvider, ClientDependency.Core" enableCompositeFiles="true" />
87+
<add name="LazyLoadProvider" type="ClientDependency.Core.FileRegistration.Providers.LazyLoadProvider, ClientDependency.Core" enableCompositeFiles="true" />
88+
<add name="LoaderControlProvider" type="ClientDependency.Core.FileRegistration.Providers.LoaderControlProvider, ClientDependency.Core" enableCompositeFiles="true" />
8189
</providers>
8290
</fileRegistration>
8391
<!-- This section is used for MVC only -->
8492
<mvc defaultRenderer="StandardRenderer">
8593
<renderers>
86-
<add name="StandardRenderer" type="ClientDependency.Core.FileRegistration.Providers.StandardRenderer, ClientDependency.Core" enableCompositeFiles="true"/>
87-
<add name="LazyLoadRenderer" type="ClientDependency.Core.FileRegistration.Providers.LazyLoadRenderer, ClientDependency.Core" enableCompositeFiles="true"/>
94+
<add name="StandardRenderer" type="ClientDependency.Core.FileRegistration.Providers.StandardRenderer, ClientDependency.Core" enableCompositeFiles="true" />
95+
<add name="LazyLoadRenderer" type="ClientDependency.Core.FileRegistration.Providers.LazyLoadRenderer, ClientDependency.Core" enableCompositeFiles="true" />
8896
</renderers>
8997
</mvc>
9098
<!--<compositeFiles defaultFileProcessingProvider="CompositeFileProcessor" compositeFileHandlerPath="~/DependencyHandler.axd">

jQuery-File-Upload.MVC3/jQuery-File-Upload.MVC3.csproj

+28-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -8,12 +8,12 @@
88
</ProductVersion>
99
<SchemaVersion>2.0</SchemaVersion>
1010
<ProjectGuid>{0025B4B5-067A-49F6-B34B-4F603B51A726}</ProjectGuid>
11-
<ProjectTypeGuids>{E53F8FEA-EAE0-44A6-8774-FFD645390401};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
11+
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
1212
<OutputType>Library</OutputType>
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
1414
<RootNamespace>jQuery_File_Upload.MVC3</RootNamespace>
1515
<AssemblyName>jQuery-File-Upload.MVC3</AssemblyName>
16-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16+
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
1717
<MvcBuildViews>false</MvcBuildViews>
1818
<UseIISExpress>false</UseIISExpress>
1919
<MvcProjectUpgradeChecked>true</MvcProjectUpgradeChecked>
@@ -26,6 +26,8 @@
2626
<IISExpressAnonymousAuthentication />
2727
<IISExpressWindowsAuthentication />
2828
<IISExpressUseClassicPipelineMode />
29+
<TargetFrameworkProfile />
30+
<UseGlobalApplicationHostFile />
2931
</PropertyGroup>
3032
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3133
<DebugSymbols>true</DebugSymbols>
@@ -35,6 +37,7 @@
3537
<DefineConstants>DEBUG;TRACE</DefineConstants>
3638
<ErrorReport>prompt</ErrorReport>
3739
<WarningLevel>4</WarningLevel>
40+
<Prefer32Bit>false</Prefer32Bit>
3841
</PropertyGroup>
3942
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4043
<DebugType>pdbonly</DebugType>
@@ -43,6 +46,7 @@
4346
<DefineConstants>TRACE</DefineConstants>
4447
<ErrorReport>prompt</ErrorReport>
4548
<WarningLevel>4</WarningLevel>
49+
<Prefer32Bit>false</Prefer32Bit>
4650
</PropertyGroup>
4751
<ItemGroup>
4852
<Reference Include="ClientDependency.Core">
@@ -55,6 +59,11 @@
5559
<HintPath>..\packages\EntityFramework.4.1.10331.0\lib\EntityFramework.dll</HintPath>
5660
</Reference>
5761
<Reference Include="Microsoft.CSharp" />
62+
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
63+
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
64+
<Private>True</Private>
65+
</Reference>
66+
<Reference Include="System.Data.DataSetExtensions" />
5867
<Reference Include="System.Data.Entity" />
5968
<Reference Include="System" />
6069
<Reference Include="System.Data" />
@@ -63,32 +72,39 @@
6372
<Reference Include="System.Web.Entity" />
6473
<Reference Include="System.Web.ApplicationServices" />
6574
<Reference Include="System.ComponentModel.DataAnnotations" />
66-
<Reference Include="System.Core" />
67-
<Reference Include="System.Data.DataSetExtensions" />
68-
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
75+
<Reference Include="System.Web.Extensions" />
76+
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
77+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
6978
<Private>True</Private>
7079
</Reference>
71-
<Reference Include="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
80+
<Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
81+
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
7282
<Private>True</Private>
7383
</Reference>
74-
<Reference Include="System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
84+
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
85+
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
7586
<Private>True</Private>
7687
</Reference>
77-
<Reference Include="System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
88+
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
89+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
7890
<Private>True</Private>
7991
</Reference>
80-
<Reference Include="System.Web.WebPages.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
92+
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
93+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
8194
<Private>True</Private>
8295
</Reference>
83-
<Reference Include="System.Xml.Linq" />
8496
<Reference Include="System.Web" />
85-
<Reference Include="System.Web.Extensions" />
8697
<Reference Include="System.Web.Abstractions" />
8798
<Reference Include="System.Web.Routing" />
99+
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
100+
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
101+
<Private>True</Private>
102+
</Reference>
88103
<Reference Include="System.Xml" />
89104
<Reference Include="System.Configuration" />
90105
<Reference Include="System.Web.Services" />
91106
<Reference Include="System.EnterpriseServices" />
107+
<Reference Include="System.Xml.Linq" />
92108
</ItemGroup>
93109
<ItemGroup>
94110
<Compile Include="Controllers\HomeController.cs" />

jQuery-File-Upload.MVC3/packages.config

+4
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@
77
<package id="jQuery.UI.Combined" version="1.8.11" />
88
<package id="jQuery.Validation" version="1.8.0" />
99
<package id="jQuery.vsdoc" version="1.5.1" />
10+
<package id="Microsoft.AspNet.Mvc" version="5.2.3" targetFramework="net46" />
11+
<package id="Microsoft.AspNet.Razor" version="3.2.3" targetFramework="net46" />
12+
<package id="Microsoft.AspNet.WebPages" version="3.2.3" targetFramework="net46" />
13+
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net46" />
1014
<package id="Modernizr" version="1.7" />
1115
</packages>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0"?>
2+
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
3+
4+
<!-- If runtime tag is absent -->
5+
<runtime xdt:Transform="InsertIfMissing">
6+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
7+
</assemblyBinding>
8+
</runtime>
9+
10+
<!-- If runtime tag is present, but assembly binding tag is absent -->
11+
<runtime>
12+
<assemblyBinding xdt:Transform="InsertIfMissing" xmlns="urn:schemas-microsoft-com:asm.v1">
13+
</assemblyBinding>
14+
</runtime>
15+
16+
<!-- If the binding redirect is already present, the existing entry needs to be removed before inserting the new entry-->
17+
<runtime>
18+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
19+
<dependentAssembly xdt:Transform="Remove"
20+
xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.Mvc')" >
21+
</dependentAssembly>
22+
</assemblyBinding>
23+
</runtime>
24+
25+
<!-- Inserting the new binding redirect -->
26+
<runtime>
27+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
28+
<dependentAssembly xdt:Transform="Insert">
29+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
30+
<bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
31+
</dependentAssembly>
32+
</assemblyBinding>
33+
</runtime>
34+
</configuration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0"?>
2+
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly xdt:Transform="Remove"
6+
xdt:Locator="Condition(./_defaultNamespace:assemblyIdentity/@name='System.Web.Mvc')" >
7+
</dependentAssembly>
8+
</assemblyBinding>
9+
</runtime>
10+
</configuration>
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?xml version="1.0" encoding="utf-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="nuspec" ContentType="application/octet" /><Default Extension="dll" ContentType="application/octet" /><Default Extension="xml" ContentType="application/octet" /><Default Extension="xdt" ContentType="application/octet" /><Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /></Types>
Binary file not shown.

0 commit comments

Comments
 (0)