This is my first swag at using Octopus deployment. We have a TeamCity project configured to build our solution. I included OctoPack in my MVC webproject and set up the parameters as described here: http://octopusdeploy.com/automated-deployments/teamcity-deployment. Everything seemed to be going okay until the compilation step on the build server when it failed with the following exception:
error OCTONUGET: File not found: ‘C:\TeamCity<PathToOurSite>\Content\site.css’.
This error makes sense, as we don’t actually have that file. It’s generated using LESS in VS. It’s something that has never come up for the team, as we currently package using VS Publish to disk, then check the published site into source control and pull it. I’m trying to POC use of Octopus and this is a bit of a showstopper for me… Is there something special needed to handle LESS preprocessing for NuGet using OctoPack?
Thanks for any help you can afford us.