Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Azure.Functions.Sdk/Targets/Azure.Functions.Sdk.props
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.2.0" IsImplicitlyDefined="true" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk.Analyzers" Version="1.2.2" IsImplicitlyDefined="true" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk.Generators" Version="1.3.6" IsImplicitlyDefined="true" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,13 @@ public void Item_WorkerPackage_IsIncluded()

// Assert
items.Should().ContainSingle(x => x.EvaluatedInclude == "Microsoft.Azure.Functions.Worker")
.Which.Should()
.HaveMetadata("Version", "2.2.0")
.And.HaveMetadata("IsImplicitlyDefined", "true");
.Which.Should().HaveMetadata("IsImplicitlyDefined", "true");

items.Should().ContainSingle(x => x.EvaluatedInclude == "Microsoft.Azure.Functions.Worker.Sdk.Analyzers")
.Which.Should().HaveMetadata("IsImplicitlyDefined", "true");

items.Should().ContainSingle(x => x.EvaluatedInclude == "Microsoft.Azure.Functions.Worker.Sdk.Generators")
.Which.Should().HaveMetadata("IsImplicitlyDefined", "true");
}

[Fact]
Expand Down
Loading