Is it possible to parameterize a reference in c#?
I'm using an external library (google.dfp) and i need to update it every year with the new version. The library name contains the version (for example: "using Google.Api.Ads.Dfp.v201708;
").
I would like to set the version in the app/web.config and build the using directive with this value. Is there any possibility to set a placeholder or something like this?
Thank you