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 has been archived by the owner on Dec 18, 2017. It is now read-only.
Currently .csproj and other msbuild-based project types allow you to link source files that are included in a separate directory. The common scenario for this is that you have a separate src/Common/ folder filled with half a dozen or so .cs files, and individual projects link only the files that are applicable to them. So Project Foo might link A.cs and C.cs, Project Bar might link A.cs and D.cs, and Project Baz might link A.cs and B.cs and D.cs.
We need an equivalent of this in the K build system so that we don't duplicate shared source files among projects.
The text was updated successfully, but these errors were encountered:
We already have this. Take a look at the wiki or the EntityFramework or KRuntime itself. It shows how you can so this with either a shared project or linked file equivalent
Currently .csproj and other msbuild-based project types allow you to link source files that are included in a separate directory. The common scenario for this is that you have a separate src/Common/ folder filled with half a dozen or so .cs files, and individual projects link only the files that are applicable to them. So Project Foo might link A.cs and C.cs, Project Bar might link A.cs and D.cs, and Project Baz might link A.cs and B.cs and D.cs.
We need an equivalent of this in the K build system so that we don't duplicate shared source files among projects.
The text was updated successfully, but these errors were encountered: