Hoardling
Hoardling

Reputation: 103

Azure DevOps keep NLog configuration on Release, when Nuget Packaging updates

I am trying to keep my NLog configurations, when I do a release from Azure Devops. The Nuget Package portion overwrites my NLog configurations and sets it back to default. I would like to know how to preserve my configurations when I release my build, but keep the Nuget Packages update to date for the other packages.

Upvotes: 1

Views: 273

Answers (1)

Julian
Julian

Reputation: 36770

You need to remove the NLog.Config package for that.

It's documented here: https://www.nuget.org/packages/NLog.Config

Note: Unfortunately this package won't work well when using

Advised to:

Upvotes: 1

Related Questions