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.
@davidfowl found a bug when we kpm pack an app which references results of kpm wrap. Reproduce steps:
kpm wrap a csproj
Reference the wrapped csproj from a kproj
kpm pack the kproj
Run the packed app
The packed app cannot run because kpm pack only copies source code and it doesn't consider assembly & pdb in project.json of dependency projects.
Here is the solution @davidfowl gives: kpm pack --no-source can resolve this problem. We can automatically "no source" the wrapped projects. That is, if you declare assembly and pdb, we treat the project like a package and build package out of it during kpm pack.
The text was updated successfully, but these errors were encountered:
@davidfowl found a bug when we
kpm pack
an app which references results ofkpm wrap
. Reproduce steps:kpm wrap
a csprojkpm pack
the kprojThe packed app cannot run because
kpm pack
only copies source code and it doesn't considerassembly
&pdb
in project.json of dependency projects.Here is the solution @davidfowl gives:
kpm pack --no-source
can resolve this problem. We can automatically "no source" the wrapped projects. That is, if you declareassembly
andpdb
, we treat the project like a package and build package out of it duringkpm pack
.The text was updated successfully, but these errors were encountered: