Skip to content

Commit

Permalink
Fix tests. Only thing remaining is to improve test quality
Browse files Browse the repository at this point in the history
  • Loading branch information
nagilson committed Oct 19, 2022
1 parent b256814 commit d1c8744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Copyright (c) .NET Foundation. All rights reserved.
'$(RuntimeIdentifier)' == '' and
'$(RuntimeIdentifiers)' == '' and
'$(_IsExecutable)' == 'true' and '$(IsTestProject)' != 'true' and
'$(IsRidAgnostic)' != 'true') and
'$(IsRidAgnostic)' != 'true' and
(
'$(SelfContained)' == 'true' or
'$(PublishReadyToRun)' == 'true' or
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public void ImplicitRuntimeIdentifierOptOutCorrecltyOptsOut()
TargetFrameworks = targetFramework
};
testProject.AdditionalProperties["SelfContained"] = "true";
testProject.AdditionalProperties["DisableImplicitRuntimeIdentifier"] = "true";
testProject.AdditionalProperties["UseCurrentRuntime"] = "false";

var testAsset = _testAssetsManager.CreateTestProject(testProject);

Expand Down

0 comments on commit d1c8744

Please sign in to comment.