This repository was archived by the owner on Feb 8, 2022. It is now read-only.
This repository was archived by the owner on Feb 8, 2022. It is now read-only.
Make it compatible with VS 2017 new .csproj format #1
Closed
Description
When used in a VS2017 .csproj (i.e. ), targets must be changed to follow the new syntax, and therefore be correctly executed.
before (will not be executed)
<Target Name="AfterCompile" ... >
<Target Name="AfterPublish" ... >
after (will be executed)
<Target Name="TransformConfig" AfterTargets="AfterCompile" ... >
<Target Name="CopyTransformedConfig" AfterTargets="AfterPublish" ... >
The new Target names above are just an exemple, it does not matter anymore AFAIK.