differences between dotnet pack vs dotnet publish




dotnet publish build and ensure your application is ready for deployment and ready for runtime - it comes with all the necessary dll, project dependencies.


dotnet pack on the other hand, ensure that you application is build as a nuget package and allows your users to pull down only this .dll. Nuget will resolves dependencies but only your dll is packaged and distributed.


Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm