Skip to content

Commit

Permalink
Fix property name for enabling aspire in MSTest.Sdk (#2888)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink committed May 21, 2024
1 parent f77b630 commit 019168f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Package/MSTest.Sdk/Sdk/Runner/NativeAOT.targets
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</Target>

<Target Name="_MSTestSDKValidateAspire" BeforeTargets="Build">
<Error Condition=" '$(EnableAspire)' == 'true' " Text="Aspire MSTest currently doesn't support NativeAOT mode." />
<Error Condition=" '$(EnableAspireTesting)' == 'true' " Text="Aspire MSTest currently doesn't support NativeAOT mode." />
</Target>

<!-- Core -->
Expand Down
2 changes: 1 addition & 1 deletion src/Package/MSTest.Sdk/Sdk/Sdk.props.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />

<PropertyGroup>
<EnableAspire Condition=" '$(EnableAspire)' == '' ">false</EnableAspire>
<EnableAspireTesting Condition=" '$(EnableAspireTesting)' == '' ">false</EnableAspireTesting>
<EnablePlaywright Condition=" '$(EnablePlaywright)' == '' ">false</EnablePlaywright>
<UseVSTest Condition=" '$(UseVSTest)' == '' " >false</UseVSTest>

Expand Down

0 comments on commit 019168f

Please sign in to comment.