-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCopyOtherFiles.props
More file actions
24 lines (23 loc) · 977 Bytes
/
CopyOtherFiles.props
File metadata and controls
24 lines (23 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project>
<Target Name="CopyOtherFiles" AfterTargets="Build">
<ItemGroup>
<Files Include="MoonSharp.Interpreter.dll" />
<Files Include="MoonSharp.Interpreter.pdb" />
<Files Include="Sigil.dll" />
<Files Include="LightInject.dll" />
<Files Include="OneOf.dll" />
<Files Include="FluentResults.dll" />
<Files Include="Microsoft.Toolkit.Diagnostics.dll" />
<Files Include="Microsoft.CodeAnalysis.CSharp.dll" />
<Files Include="Microsoft.CodeAnalysis.dll" />
<Files Include="Microsoft.Extensions.Logging.Abstractions.dll" />
<Files Include="Basic.Reference.Assemblies.Net80.dll" />
<!--
Add any files you need copied from the output folder
<Files Include="MyLibrary.dll" />
<Files Include="MyLibrary.pdb" />
-->
</ItemGroup>
<Copy SourceFiles="@(Files->'$(TargetDir)%(Identity)')" DestinationFolder="$(ModDeployDir)\$(ModName)\$(PlatformName)" />
</Target>
</Project>