Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

move dotnet dlls to another folder

<ItemGroup>
    <FilesToMove Include="PathToFiles*.dll"/>
  </ItemGroup>

  <Target Name="MoveFiles" AfterTargets="Build" Condition=" '$(Configuration)' == 'Release' ">
    <Message Text="Move Files to the dependencies folder when I build for release"></Message>
    <Move
    SourceFiles="@(FilesToMove)"
    DestinationFolder="PathToFilesdependencies"
    />
  </Target>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #move #dotnet #dlls #folder
ADD COMMENT
Topic
Name
6+5 =