Skip to content

Commit 5429eb1

Browse files
[wasm] Don't use MS.Build.NoTargets SDK for runtime tests (#76107)
This will also avoid intermittent failures like #75391 Co-authored-by: Ankit Jain <[email protected]>
1 parent 87f8d0a commit 5429eb1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/tests/Common/wasm-test-runner/WasmTestRunner.proj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
<!-- This project requires an explicit SDK version number because it is used on Helix,
2-
and global.json is not available. -->
3-
<Project Sdk="Microsoft.Build.NoTargets/3.5.0" DefaultTargets="WasmBuildApp">
1+
<Project DefaultTargets="WasmBuildApp">
2+
<PropertyGroup>
3+
<IntermediateOutputPath Condition="'$(IntermediateOutputPath)' == ''">$(TestBinDir)\obj\</IntermediateOutputPath>
4+
</PropertyGroup>
5+
46
<Import Project="$(CORE_ROOT)\build\WasmApp.InTree.props" />
57
<PropertyGroup>
68
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>

0 commit comments

Comments
 (0)