I am trying to use TeamCity and Octopus Deploy for a CI/CD process of a solution built on .NET Core 2.0. I am having trouble with configuring the build steps in teamcity correctly, as I do not get any packages created. I am using the .NET Core Plugin for TeamCity with the corresponding steps:
- 'dotnet restore'
- 'dotnet build'
- 'dotnet pack'
- 'dotnet publish'
I also include a 'OctopusDeploy Package' step, but as there is no packages produced, so this step does nothing.
The poject does not contain any .json files for the project (only some config files), but .csproj files. I am new to this whole CI/CD process, but I have successfully implemented it for a .NET Framework 4.6.1 solution using octopack.
Any idea on how I can solve this? Any feedback is greatly appreciated.