blob: 475b5b19bf7a7622d457f5fd82ff3a2fa2ad4ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?xml version="1.0" encoding="utf-8"?>
<VisualStudioToolFile
Name="Inspector file copy"
Version="8.00"
>
<Rules>
<CustomBuildRule
Name="Inspector file copy"
CommandLine="xcopy /Y /D /Q $(InputPath) $(OutDir)\Resources\Inspector\"
Outputs="$(OutDir)\Resources\Inspector\$(InputFileName)"
FileExtensions="*.html;*.js;*.gif;*.css"
ExecutionDescription="Copying resource file..."
>
<Properties>
</Properties>
</CustomBuildRule>
<CustomBuildRule
Name="Inspector image file copy"
CommandLine="xcopy /Y /D /Q $(InputPath) $(OutDir)\Resources\Inspector\Images\"
Outputs="$(OutDir)\Resources\Inspector\Images\$(InputFileName)"
FileExtensions="*.png"
ExecutionDescription="Copying resource file..."
>
<Properties>
</Properties>
</CustomBuildRule>
</Rules>
</VisualStudioToolFile>
|