Skip to content

Commit

Permalink
Fixing web skill package reference (#982)
Browse files Browse the repository at this point in the history
Setting the PackageVersion in Directory.Packages.props to fix warning
called out in #913
  • Loading branch information
shawncal authored May 15, 2023
1 parent c312d23 commit ba55ac0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions dotnet/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<PackageVersion Include="Microsoft.OpenApi" Version="[1.6.3, )" />
<PackageVersion Include="Microsoft.OpenApi.Readers" Version="[1.6.3, )" />
<PackageVersion Include="Newtonsoft.Json" Version="[13.0.3, )" />
<PackageVersion Include="Google.Apis.CustomSearchAPI.v1" Version="[1.60.0.3001, )" />
<PackageVersion Include="Grpc.Net.Client" Version="2.52.0" />
<PackageVersion Include="protobuf-net" Version="3.2.16" />
<PackageVersion Include="protobuf-net.Reflection" Version="3.2.12" />
Expand Down
6 changes: 3 additions & 3 deletions dotnet/src/Skills/Skills.Web/Skills.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" VersionOverride="[6.0.0, )" />
<PackageReference Include="System.Text.Json" VersionOverride="[6.0.0, )" />
<PackageReference Include="Google.Apis.CustomSearchAPI.v1" VersionOverride="[1.60.0.3001, )" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="System.Text.Json" />
<PackageReference Include="Google.Apis.CustomSearchAPI.v1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit ba55ac0

Please sign in to comment.