File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 26
26
27
27
# Visual Studio 2015 cache/options directory
28
28
.vs /
29
+ .vscode /
29
30
# Uncomment if you have tasks that create the project's static files in wwwroot
30
31
# wwwroot/
31
32
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ public IActionResult Index()
22
22
var folderPath = Path . Combine ( path , "Database" ) ;
23
23
var filePath = Path . Combine ( folderPath , "northwind.xml" ) ;
24
24
25
+ //var data = new[] { "Foo", "Bar" };
25
26
var data = NorthwindDb . GetRetiredEmployees ( filePath ) ;
26
27
return View ( "index" , data ) ;
27
28
}
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netcoreapp2.1 </TargetFramework >
4
+ <TargetFramework >netcoreapp2.0 </TargetFramework >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
- <PackageReference Include =" Microsoft.AspNetCore.All" Version =" 2.1 .0" />
9
- <PackageReference Include =" Northwind.Data" Version =" 1.0 .0" />
8
+ <PackageReference Include =" Microsoft.AspNetCore.All" Version =" 2.0 .0" />
9
+ <PackageReference Include =" Northwind.Data" Version =" 1.1 .0" />
10
10
</ItemGroup >
11
11
12
12
<ItemGroup >
You can’t perform that action at this time.
0 commit comments