blob: 920d5f634b71b48bf79e6b21868a89d5c4f8db0c (
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 $(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 $(InputPath) $(OutDir)\Resources\Inspector\Images\"
Outputs="$(OutDir)\Resources\Inspector\Images\$(InputFileName)"
FileExtensions="*.png"
ExecutionDescription="Copying resource file..."
>
<Properties>
</Properties>
</CustomBuildRule>
</Rules>
</VisualStudioToolFile>
|