-
Notifications
You must be signed in to change notification settings - Fork 526
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] finalize paket integration for new .net sdk (msbuild 15) #2125
Conversation
dotnet msbuild /t: RemoveBoostrappedPaket
so `.paket\paket install` works
I am trying different ways to integrate at restore step, each has a prop/cons ( I written something in dev/docs ). I want to maintain the current nuget targets logic as much as possible, because make it easier for other commands (build/publish, the pack is not much useful for paket I think) But override is hard because nuget target is imported AFTER our target file, becuase is inside the Sdk attribute. Monday i’l try using Sdk attribute for paket too, so we can override single targets. |
Hi what's the status here. Next week I'd like to go rc or even release paket 4. |
status is:
maybe i should split in two.. |
closing because obsolete |
WIP, but
basically developing the final example in
dev
, so:dev/.paket
contains the boostrapperdev/console
contains a sample console appNOTES
The
Paket.Sdk
is just for my easy of development, final is insidePaket
nupkgTODO
dotnet restore
paket restore
called ondotnet restore
after boostrappingdotnet publish
)dotnet msbuild
so run .net core (dotnet build
=dotnet msbuild /t:Build
)msbuild
so .net full (so callpaket.exe
)Paket
nupkg instead ofPacket.Sdk
@forki not lot of work todo left 😄