Skip to content

Commit 560e18e

Browse files
committed
Fix vcxproj to work with all flavors
1 parent a8f6f24 commit 560e18e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Samples/CustomOperator/desktop/cpp/custom-operator-sample.vcxproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,11 @@
220220
<ObjectFileOutput Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
221221
</ObjectFileOutput>
222222
<EntryPointName Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Relu</EntryPointName>
223+
<EntryPointName Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Relu</EntryPointName>
224+
<EntryPointName Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">Relu</EntryPointName>
225+
<EntryPointName Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">Relu</EntryPointName>
226+
<EntryPointName Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Relu</EntryPointName>
227+
<EntryPointName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Relu</EntryPointName>
223228
</FxCompile>
224229
</ItemGroup>
225230
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

0 commit comments

Comments
 (0)