mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-09 13:47:00 +00:00
build.cmd doesn't produce nuget packages #941
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nazar322 on GitHub (Apr 17, 2024).
Steps to Reproduce:
The wiki states
Both projects create their own nuget package. The resulting nuget packages are saved under "/artifacts".After
build.cmdcompletes I don't get any files in theartifactsfolder.The story is that I'm trying to ping-point issue I posted here https://github.com/ElectronNET/Electron.NET/issues/842
So I've added handlers for
apiProcess'suncaughtExceptionandunhandledRejection.I also want to add
render-process-gonelistener.The problem is I want to replace electron.net's nuget files inside
%userprofile%/.dotnetand%userprofile%/.nugetwith the files containing my changes but I cannot do it since nuget files missing in the artifacts folder. For instance, the plain build does not createelectronize.exeexecutable of the CLI project.@gorsheninmv commented on GitHub (May 4, 2024):
What command do you use to create the packages?
Checked right now and the command
build.cmd --target createpackagesproduces packages under theartifactsdirectory.@nazar322 commented on GitHub (Nov 8, 2024):
@gorsheninmv thanks!