You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 11, 2020. It is now read-only.
I am running the RC of Visual Studio Enterprise on a Windows Server 2012 R2 Virtual Machine. Folder that solution is added to is part of a git repo.
Steps to reproduce:
Create new Web Application Project with ASP.NET 5 Starter Web Template
Add an existing .NET 4.5.1 class library project to the solution. Project includes a reference to EF 6.1.3
Add the class library project as a reference in the web application project.
Results:
A reference is added to the project.json file in the web project
"frameworks": {
"dnx451": {
"dependencies": {
"Recipe05.Dal": "1.0.0-*"
}
}
In the class library project a wrap directory is created with the folders:
EntityFramework
EntityFramework.SqlServer
Recipe05.Dal
each folder has it's own project.json file with a bin configuration
"bin": {
"assembly": "../../obj/{configuration}/Recipe05.Dal.dll",
"pdb": "../../obj/{configuration}/Recipe05.Dal.pdb"
}