mirror of https://github.com/axmolengine/axmol.git
20 lines
678 B
Plaintext
20 lines
678 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
<ImportGroup Label="PropertySheets" />
|
||
|
|
||
|
<ItemGroup>
|
||
|
<_CustomResource Include="..\Resources\**\*">
|
||
|
<Link>Assets\Resources\%(RecursiveDir)%(FileName)%(Extension)</Link>
|
||
|
<DeploymentContent>true</DeploymentContent>
|
||
|
</_CustomResource>
|
||
|
</ItemGroup>
|
||
|
|
||
|
<Target Name="_CollectCustomResources" BeforeTargets="AssignTargetPaths">
|
||
|
<Message Text="Adding resource: %(_CustomResource.Identity) -> %(_CustomResource.Link)" />
|
||
|
<ItemGroup>
|
||
|
<None Include="@(_CustomResource)" />
|
||
|
</ItemGroup>
|
||
|
</Target>
|
||
|
</Project>
|
||
|
|