mirror of
https://github.com/wassname/phaser.git
synced 2026-07-19 11:26:26 +08:00
18 lines
827 B
Plaintext
18 lines
827 B
Plaintext
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<TypeScriptTarget>ES5</TypeScriptTarget>
|
|
<TypeScriptRemoveComments>false</TypeScriptRemoveComments>
|
|
<TypeScriptSourceMap>false</TypeScriptSourceMap>
|
|
<TypeScriptOutFile>../build/phaser-debug.js</TypeScriptOutFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<TypeScriptTarget>ES5</TypeScriptTarget>
|
|
<TypeScriptRemoveComments>true</TypeScriptRemoveComments>
|
|
<TypeScriptSourceMap>false</TypeScriptSourceMap>
|
|
<TypeScriptOutFile>../build/phaser-release.js</TypeScriptOutFile>
|
|
</PropertyGroup>
|
|
<Import Project="$(VSToolsPath)\TypeScript\Microsoft.TypeScript.targets" />
|
|
<PropertyGroup>
|
|
<PostBuildEvent>cd $(ProjectDir)..\build
|
|
copy phaser-debug.js ..\Tests\</PostBuildEvent>
|
|
</PropertyGroup>
|