-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfx.props
More file actions
18 lines (18 loc) · 778 Bytes
/
fx.props
File metadata and controls
18 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(FXBeforeTargets)' == '' and '$(FXAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<FXBeforeTargets>Midl</FXBeforeTargets>
<FXAfterTargets>CustomBuild</FXAfterTargets>
</PropertyGroup>
<PropertyGroup>
<FXDependsOn
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(FXDependsOn)</FXDependsOn>
</PropertyGroup>
<ItemDefinitionGroup>
<FX>
<CommandLineTemplate>fxc /Od /Zi /T fx_2_0 /Fo $(OutDir)%(Filename).fxo %(Filename)%(Extension)</CommandLineTemplate>
<Outputs>$(OutDir)%(Filename).fxo</Outputs>
</FX>
</ItemDefinitionGroup>
</Project>