Skip to content

Commit cae6bde

Browse files
Fix project
1 parent 1a5840a commit cae6bde

File tree

12 files changed

+138
-58
lines changed

12 files changed

+138
-58
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,3 +308,5 @@ TesterMetadata.xml
308308

309309
!*/wwwroot/css/Site.css
310310
*.DS_Store
311+
/ASP.NET MVC5/.tools
312+
/ASP.NET MVC5/lib
0 Bytes
Binary file not shown.

ASP.NET MVC5/Index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
<head>
44
<title></title>
55
<meta charset="utf-8" />
6-
<script src="node_modules/jquery/dist/jquery.min.js"></script>
7-
<script src="node_modules/devextreme/dist/js/dx.all.js"></script>
8-
<script src="node_modules/devextreme-aspnet-data/js/dx.aspnet.data.js"></script>
6+
<script src="lib/jquery/dist/jquery.min.js"></script>
7+
<script src="lib/devextreme/js/dx.all.js"></script>
8+
<script src="lib/devextreme-aspnet-data/js/dx.aspnet.data.js"></script>
99
<script src="js/code.js"></script>
10-
<link rel="stylesheet" type="text/css" href="node_modules/devextreme/dist/css/dx.common.css" />
11-
<link rel="stylesheet" type="text/css" href="node_modules/devextreme/dist/css/dx.light.css" />
10+
<link rel="stylesheet" type="text/css" href="lib/devextreme/css/dx.common.css" />
11+
<link rel="stylesheet" type="text/css" href="lib/devextreme/css/dx.light.css" />
1212
</head>
1313
<body>
1414
<div id="grid"></div>

ASP.NET MVC5/Views/Shared/_Layout.cshtml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>@ViewBag.Title - DevExtreme DataGrid MVC5</title>
77

8-
<script src="~/node_modules/jquery/dist/jquery.min.js"></script>
9-
<script src="~/node_modules/devextreme/dist/js/dx.all.js"></script>
10-
<script src="~/node_modules/devextreme-aspnet-data/js/dx.aspnet.data.js"></script>
11-
12-
<link rel="stylesheet" type="text/css" href="~/node_modules/devextreme/dist/css/dx.common.css" />
13-
<link rel="stylesheet" type="text/css" href="~/node_modules/devextreme/dist/css/dx.light.css" />
8+
<script src="~/lib/jquery/dist/jquery.min.js"></script>
9+
<script src="~/lib/devextreme/js/dx.all.js"></script>
10+
<script src="~/lib/devextreme-aspnet-data/js/dx.aspnet.data.js"></script>
11+
12+
<link rel="stylesheet" type="text/css" href="~/lib/devextreme/css/dx.common.css" />
13+
<link rel="stylesheet" type="text/css" href="~/lib/devextreme/css/dx.light.css" />
1414
</head>
1515
<body>
1616
@RenderBody()

ASP.NET MVC5/Views/web.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0"?>
22
<configuration>
33
<configSections>
4-
<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=8F50407C4E9E73B6">
5-
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=8F50407C4E9E73B6" requirePermission="false" />
6-
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=8F50407C4E9E73B6" requirePermission="false" />
4+
<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">
5+
<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" />
6+
<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" />
77
</sectionGroup>
88
</configSections>
99

ASP.NET MVC5/Web.config

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
1616
</appSettings>
1717
<system.web>
18-
<compilation debug="true" targetFramework="4.6" />
19-
<httpRuntime targetFramework="4.6" />
18+
<compilation debug="true" targetFramework="4.7.2" />
19+
<httpRuntime targetFramework="4.7.2" />
2020
</system.web>
2121
<system.webServer>
2222
<handlers>
@@ -52,7 +52,11 @@
5252
</dependentAssembly>
5353
<dependentAssembly>
5454
<assemblyIdentity name="DevExtreme.AspNet.Data" publicKeyToken="982f5dab1439d0f7" culture="neutral" />
55-
<bindingRedirect oldVersion="0.0.0.0-2.5.1.0" newVersion="2.5.1.0" />
55+
<bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0" />
56+
</dependentAssembly>
57+
<dependentAssembly>
58+
<assemblyIdentity name="System.Text.Json" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
59+
<bindingRedirect oldVersion="0.0.0.0-8.0.0.5" newVersion="8.0.0.5" />
5660
</dependentAssembly>
5761
</assemblyBinding>
5862
</runtime>

ASP.NET MVC5/datagrid-mvc5.csproj

Lines changed: 53 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="packages\EntityFramework.6.5.1\build\EntityFramework.props" Condition="Exists('packages\EntityFramework.6.5.1\build\EntityFramework.props')" />
4+
<Import Project="packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
5+
<Import Project="packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props" Condition="Exists('packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" />
6+
<Import Project="packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.props" Condition="Exists('packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.props')" />
37
<Import Project="..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props" Condition="Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" />
48
<Import Project="..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props" Condition="Exists('..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" />
9+
<Import Project="..\packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.props" Condition="Exists('..\packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.props')" />
510
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
611
<PropertyGroup>
712
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -15,7 +20,7 @@
1520
<AppDesignerFolder>Properties</AppDesignerFolder>
1621
<RootNamespace>datagrid_mvc5</RootNamespace>
1722
<AssemblyName>datagrid-mvc5</AssemblyName>
18-
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
23+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
1924
<MvcBuildViews>false</MvcBuildViews>
2025
<UseIISExpress>true</UseIISExpress>
2126
<IISExpressSSLPort />
@@ -26,6 +31,7 @@
2631
<NuGetPackageImportStamp>
2732
</NuGetPackageImportStamp>
2833
<Use64BitIISExpress />
34+
<TargetFrameworkProfile />
2935
</PropertyGroup>
3036
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3137
<DebugSymbols>true</DebugSymbols>
@@ -45,27 +51,29 @@
4551
<WarningLevel>4</WarningLevel>
4652
</PropertyGroup>
4753
<ItemGroup>
48-
<Reference Include="DevExtreme.AspNet.Data, Version=2.5.1.0, Culture=neutral, PublicKeyToken=982f5dab1439d0f7, processorArchitecture=MSIL">
49-
<HintPath>..\packages\DevExtreme.AspNet.Data.2.5.1\lib\net452\DevExtreme.AspNet.Data.dll</HintPath>
50-
</Reference>
51-
<Reference Include="DevExtreme.AspNet.Mvc">
52-
<HintPath>..\lib\DevExtreme\DevExtreme.AspNet.Mvc.dll</HintPath>
54+
<Reference Include="DevExtreme.AspNet.Data, Version=5.1.0.0, Culture=neutral, PublicKeyToken=982f5dab1439d0f7, processorArchitecture=MSIL">
55+
<HintPath>packages\DevExtreme.AspNet.Data.5.1.0\lib\net462\DevExtreme.AspNet.Data.dll</HintPath>
5356
</Reference>
5457
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
55-
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
58+
<HintPath>packages\EntityFramework.6.5.1\lib\net45\EntityFramework.dll</HintPath>
5659
<Private>True</Private>
5760
</Reference>
5861
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
59-
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
62+
<HintPath>packages\EntityFramework.6.5.1\lib\net45\EntityFramework.SqlServer.dll</HintPath>
6063
<Private>True</Private>
6164
</Reference>
6265
<Reference Include="Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
63-
<HintPath>..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
66+
<HintPath>packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\lib\net45\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll</HintPath>
6467
<Private>True</Private>
6568
</Reference>
6669
<Reference Include="Microsoft.CSharp" />
70+
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
71+
<HintPath>packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
72+
<Private>True</Private>
73+
</Reference>
6774
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
68-
<HintPath>..\packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
75+
<HintPath>packages\Newtonsoft.Json.11.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
76+
<Private>True</Private>
6977
</Reference>
7078
<Reference Include="System" />
7179
<Reference Include="System.Data" />
@@ -74,48 +82,43 @@
7482
<Reference Include="System.Web.Entity" />
7583
<Reference Include="System.Web.ApplicationServices" />
7684
<Reference Include="System.ComponentModel.DataAnnotations" />
77-
<Reference Include="System.Core" />
78-
<Reference Include="System.Data.DataSetExtensions" />
79-
<Reference Include="System.Xml.Linq" />
80-
<Reference Include="System.Web" />
81-
<Reference Include="System.Web.Extensions" />
82-
<Reference Include="System.Web.Abstractions" />
83-
<Reference Include="System.Web.Routing" />
84-
<Reference Include="System.Xml" />
85-
<Reference Include="System.Configuration" />
86-
<Reference Include="System.Web.Services" />
87-
<Reference Include="System.EnterpriseServices" />
88-
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
89-
<Private>True</Private>
90-
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
91-
</Reference>
92-
<Reference Include="System.Net.Http">
93-
</Reference>
94-
<Reference Include="System.Net.Http.WebRequest">
95-
</Reference>
9685
<Reference Include="System.Web.Helpers, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
86+
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
9787
<Private>True</Private>
98-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.Helpers.dll</HintPath>
9988
</Reference>
10089
<Reference Include="System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
90+
<HintPath>packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
10191
<Private>True</Private>
102-
<HintPath>..\packages\Microsoft.AspNet.Mvc.5.2.3\lib\net45\System.Web.Mvc.dll</HintPath>
10392
</Reference>
10493
<Reference Include="System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
94+
<HintPath>packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
10595
<Private>True</Private>
106-
<HintPath>..\packages\Microsoft.AspNet.Razor.3.2.3\lib\net45\System.Web.Razor.dll</HintPath>
10796
</Reference>
10897
<Reference Include="System.Web.WebPages, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
98+
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
10999
<Private>True</Private>
110-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.dll</HintPath>
111100
</Reference>
112101
<Reference Include="System.Web.WebPages.Deployment, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
102+
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
113103
<Private>True</Private>
114-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Deployment.dll</HintPath>
115104
</Reference>
116105
<Reference Include="System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
106+
<HintPath>packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
117107
<Private>True</Private>
118-
<HintPath>..\packages\Microsoft.AspNet.WebPages.3.2.3\lib\net45\System.Web.WebPages.Razor.dll</HintPath>
108+
</Reference>
109+
<Reference Include="System.Web" />
110+
<Reference Include="System.Web.Abstractions" />
111+
<Reference Include="System.Text.Json, Version=8.0.0.5, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
112+
<HintPath>packages\System.Text.Json.8.0.5\lib\net462\System.Text.Json.dll</HintPath>
113+
</Reference>
114+
<Reference Include="System.Web.Routing" />
115+
<Reference Include="System.Xml" />
116+
<Reference Include="System.Configuration" />
117+
<Reference Include="System.Web.Services" />
118+
<Reference Include="System.EnterpriseServices" />
119+
<Reference Include="System.Net.Http">
120+
</Reference>
121+
<Reference Include="System.Net.Http.WebRequest">
119122
</Reference>
120123
</ItemGroup>
121124
<ItemGroup>
@@ -169,11 +172,17 @@
169172
<ItemGroup>
170173
<Content Include="package.json" />
171174
</ItemGroup>
175+
<ItemGroup>
176+
<Content Include="lib\**\*" />
177+
<None Include="libman.json" />
178+
</ItemGroup>
172179
<PropertyGroup>
173-
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
174-
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
180+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion>
181+
<VSToolsPath Condition="'$(VSToolsPath)' == '' and Exists('$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\WebApplications\Microsoft.WebApplication.targets')">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
175182
</PropertyGroup>
176183
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
184+
<Import Project="packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.targets" Condition="Exists('packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.targets')" />
185+
<Import Project="..\packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.targets" Condition="Exists('..\packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.targets')" />
177186
<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />
178187
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" Condition="false" />
179188
<Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
@@ -202,12 +211,17 @@
202211
<PropertyGroup>
203212
<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>
204213
</PropertyGroup>
205-
<Error Condition="!Exists('..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props'))" />
206-
<Error Condition="!Exists('..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
214+
<Error Condition="!Exists('packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.Net.Compilers.1.0.0\build\Microsoft.Net.Compilers.props'))" />
215+
<Error Condition="!Exists('packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\build\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props'))" />
216+
<Error Condition="!Exists('packages\EntityFramework.6.5.1\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\EntityFramework.6.5.1\build\EntityFramework.props'))" />
217+
<Error Condition="!Exists('packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.props'))" />
218+
<Error Condition="!Exists('packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.Web.LibraryManager.Build.2.1.175\build\Microsoft.Web.LibraryManager.Build.targets'))" />
219+
<Error Condition="!Exists('packages\EntityFramework.6.5.1\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\EntityFramework.6.5.1\build\EntityFramework.targets'))" />
207220
</Target>
208221
<PropertyGroup>
209222
<PreBuildEvent>npm install</PreBuildEvent>
210223
</PropertyGroup>
224+
<Import Project="packages\EntityFramework.6.5.1\build\EntityFramework.targets" Condition="Exists('packages\EntityFramework.6.5.1\build\EntityFramework.targets')" />
211225
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
212226
Other similar extension points exist, see Microsoft.Common.targets.
213227
<Target Name="BeforeBuild">

ASP.NET MVC5/libman.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"version": "1.0",
3+
"defaultProvider": "cdnjs",
4+
"libraries": [
5+
{
6+
"library": "[email protected]",
7+
"destination": "lib/jquery",
8+
"files": [
9+
"dist/jquery.min.js",
10+
"dist/jquery.min.map"
11+
]
12+
},
13+
{
14+
"library": "[email protected]",
15+
"destination": "lib/devextreme",
16+
"files": [
17+
"js/dx.all.js",
18+
"css/dx.common.css",
19+
"css/dx.light.css"
20+
]
21+
},
22+
{
23+
"library": "[email protected]",
24+
"destination": "lib/devextreme-aspnet-data",
25+
"files": [
26+
"js/dx.aspnet.data.js"
27+
]
28+
}
29+
]
30+
}

0 commit comments

Comments
 (0)