Skip to content

Commit

Permalink
ignore copy error for build test
Browse files Browse the repository at this point in the history
  • Loading branch information
checkymander committed Feb 16, 2024
1 parent 8dd45b1 commit 68cdba4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<ScreenshotDLL Include="$(TargetDir)System.Drawing.Common.dll" />
</ItemGroup>
<Target Name="CopyDLLs" AfterTargets="Build" Condition="'$(ThreatCheck)' != 'True'">
<Copy SourceFiles="@(ScreenshotDLL)" DestinationFolder="$(SolutionDir)\bin\common" SkipUnchangedFiles="false" />
<Copy SourceFiles="@(ScreenshotDLL)" DestinationFolder="$(SolutionDir)\bin\common" SkipUnchangedFiles="false" ContinueOnError="WarnAndContinue"/>
</Target>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Payload_Type/athena/athena/agent_code/ssh/ssh.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<SSHDLLs Include="$(TargetDir)Renci.SshNet.dll;$(TargetDir)SshNet.Security.Cryptography.dll" />
</ItemGroup>
<Target Name="CopyDLLs" AfterTargets="Build" Condition="'$(ThreatCheck)' != 'True'">
<Copy SourceFiles="@(SSHDLLs)" DestinationFolder="$(SolutionDir)\bin\common" SkipUnchangedFiles="false" />
<Copy SourceFiles="@(SSHDLLs)" DestinationFolder="$(SolutionDir)\bin\common" SkipUnchangedFiles="false" ContinueOnError="WarnAndContinue"/>
</Target>

<ItemGroup>
Expand Down

0 comments on commit 68cdba4

Please sign in to comment.