c# - .NET Core, Running msbuild task after CopyLocalLockFileAssemblies -
i have @ netcoreapp2.0 application following property set:
<copylocallockfileassemblies>true</copylocallockfileassemblies> right after finishes copying dependency dll's output folder want run msbuild-task depends on dll's being in folder.
i have tried following, seems run command step , command not see dll's.
<target name="somename" aftertargets="build"> <exec command="somecommand" /> </target> tried find list of targets .net core supports, no avail, i'm looking list of build targets or target can trigger on after dependency dll's have been copied.
the (public, non underscore-prefixed) target use copyfilestooutputdirectory:
<target name="myprocessingstep" aftertargets="copyfilestooutputdirectory"> … </target>
Comments
Post a Comment