Skip to content

Commit

Permalink
Update msbuild packages
Browse files Browse the repository at this point in the history
  • Loading branch information
alnlarsen committed Apr 22, 2024
1 parent 8371cbd commit dbf6ad8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitversion
Expand Up @@ -4,7 +4,7 @@
# This is the version number that will be used. Prerelease numbers are calculated by
# counting git commits since the last change in this value.

version = 10.0.0
version = 9.24.0

# A version is determined to be a "beta" prerelease if it originates from the default branch
# The default branch is the first branch that matches the following regular expession.
Expand Down
12 changes: 11 additions & 1 deletion Engine.UnitTests/ScopeParametersTest.cs
Expand Up @@ -382,8 +382,10 @@ public void SweepLoop2Test()
sweep.SweepValues.Add(new SweepRow());
sweep.SweepValues.Add(new SweepRow());

TypeData.GetTypeData(step).GetMember(nameof(ScopeTestStep.A)).Parameterize(sweep, step, "Parameters \\ A");
TypeData.GetTypeData(step).GetMember(nameof(ScopeTestStep.EnabledTest)).Parameterize(sweep, step, nameof(ScopeTestStep.EnabledTest));
var v2 = AnnotationCollection.Annotate(sweep).GetMember(nameof(SweepParameterStep.SelectedParameters)).Get<IStringReadOnlyValueAnnotation>().Value;
TypeData.GetTypeData(step).GetMember(nameof(ScopeTestStep.A)).Parameterize(sweep, step, "Parameters \\ A");
// var v1 = AnnotationCollection.Annotate(sweep).GetMember(nameof(SweepParameterStep.SelectedParameters)).Get<IStringReadOnlyValueAnnotation>().Value;



Expand All @@ -396,6 +398,14 @@ public void SweepLoop2Test()
// verify Enabled<T> works with SweepParameterStep.
var annotation = AnnotationCollection.Annotate(sweep);
var col = annotation.GetMember(nameof(SweepParameterStep.SelectedParameters)).Get<IStringReadOnlyValueAnnotation>().Value;
if (!col.Equals("EnabledTest, A"))
{

}
else
{

}
Assert.AreEqual("EnabledTest, A", col);
var elements = annotation.GetMember(nameof(SweepParameterStep.SweepValues))
.Get<ICollectionAnnotation>().AnnotatedElements
Expand Down
4 changes: 2 additions & 2 deletions sdk/OpenTap.Sdk.MSBuild/OpenTap.Sdk.MSBuild.csproj
Expand Up @@ -10,8 +10,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.0.461" />
<PackageReference Include="Microsoft.Build" Version="16.0.461" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.9.5" />
<PackageReference Include="Microsoft.Build" Version="17.9.5" />
<PackageReference Include="DotNet.Glob" Version="3.0.1" />
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
</ItemGroup>
Expand Down

0 comments on commit dbf6ad8

Please sign in to comment.