As with everything Core, support by third-party tools is spotty at this point. I wanted to check with you to see if you have a good solution for packaging an ASP.NET Core w/ .NET Core application. I have reviewed the following urls:
Packaging Applications - which says to use dotnet pack but links to an article that uses dotnet publish. ‘dotnet pack’ may also not be relevant to ASP.NET Core because it doesn’t pack the MVC Views.
Deploying ASP.NET Core Web Applications - Which uses command line to do do the packaging.
The later seems closest to what I need to do but wedging that into TeamCity is not straightforward. I have installed the TeamCity .NET Core plugins to get access to ‘dotnet publish’ but I can’t find a good way to octo pack the resulting folder of files. With full .NET framework apps there is a nice Octopus plugin that gives a checkbox to do this.
Do you have any suggestions on how to octo pack that folder of files short of deploying and maintaining a copy of octo.exe on every build agent and accessing it via PATH?
Thank you,
Kevin