Skip to content

Commit c838032

Browse files
Bump the extensionsai group with 1 update
Bumps Microsoft.Extensions.AI.Abstractions from 9.6.0 to 9.7.1 --- updated-dependencies: - dependency-name: Microsoft.Extensions.AI.Abstractions dependency-version: 9.7.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: extensionsai ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 86741c2 commit c838032

3 files changed

Lines changed: 14 additions & 39 deletions

File tree

src/Directory.Build.props

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@
44
<PropertyGroup Label="CI" Condition="'$(CI)' == ''">
55
<CI>false</CI>
66
<!-- GH, CircleCI, GitLab and BitBucket already use CI -->
7-
<CI Condition="'$(TF_BUILD)' == 'true' or
8-
'$(TEAMCITY_VERSION)' != '' or
9-
'$(APPVEYOR)' != '' or
10-
'$(BuildRunner)' == 'MyGet' or
11-
'$(JENKINS_URL)' != '' or
12-
'$(TRAVIS)' == 'true' or
13-
'$(BUDDY)' == 'true'">true</CI>
7+
<CI Condition="'$(TF_BUILD)' == 'true' or '$(TEAMCITY_VERSION)' != '' or '$(APPVEYOR)' != '' or '$(BuildRunner)' == 'MyGet' or '$(JENKINS_URL)' != '' or '$(TRAVIS)' == 'true' or '$(BUDDY)' == 'true'">true</CI>
148
</PropertyGroup>
159

1610
<PropertyGroup>
@@ -153,7 +147,7 @@
153147
<Using Include="System.ArgumentNullException" Static="true" />
154148
</ItemGroup>
155149

156-
<Import Project="Directory.props" Condition="Exists('Directory.props')"/>
150+
<Import Project="Directory.props" Condition="Exists('Directory.props')" />
157151
<Import Project="Directory.props.user" Condition="Exists('Directory.props.user')" />
158152

159153
<!-- If the imported props changed ManagePackageVersionsCentrally, we need to replicate

src/Directory.Build.targets

Lines changed: 11 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,14 @@
3737
<!-- Only difference is we don't copy either to output directory -->
3838

3939
<!-- Project-level icon/readme will already be part of None items -->
40-
<None Update="@(None -> WithMetadataValue('Filename', 'icon'))"
41-
Pack="true" PackagePath="%(Filename)%(Extension)"
42-
CopyToOutputDirectory="Never"
43-
Condition="'$(PackageIcon)' != ''" />
44-
45-
<None Update="@(None -> WithMetadataValue('Filename', 'readme'))"
46-
Pack="true" PackagePath="%(Filename)%(Extension)"
47-
CopyToOutputDirectory="Never"
48-
Condition="'$(PackReadme)' != 'false' and '$(PackageReadmeFile)' != ''" />
40+
<None Update="@(None -&gt; WithMetadataValue('Filename', 'icon'))" Pack="true" PackagePath="%(Filename)%(Extension)" CopyToOutputDirectory="Never" Condition="'$(PackageIcon)' != ''" />
41+
42+
<None Update="@(None -&gt; WithMetadataValue('Filename', 'readme'))" Pack="true" PackagePath="%(Filename)%(Extension)" CopyToOutputDirectory="Never" Condition="'$(PackReadme)' != 'false' and '$(PackageReadmeFile)' != ''" />
4943

5044
<!-- src-level will need explicit inclusion -->
51-
<None Include="$(MSBuildThisFileDirectory)icon.png" Link="icon.png" Visible="false"
52-
Pack="true" PackagePath="%(Filename)%(Extension)"
53-
CopyToOutputDirectory="Never"
54-
Condition="Exists('$(MSBuildThisFileDirectory)icon.png') and !Exists('$(MSBuildProjectDirectory)\icon.png')" />
55-
56-
<None Include="$(MSBuildThisFileDirectory)readme.md" Link="readme.md"
57-
Pack="true" PackagePath="%(Filename)%(Extension)"
58-
CopyToOutputDirectory="Never"
59-
Condition="'$(PackReadme)' != 'false' and Exists('$(MSBuildThisFileDirectory)readme.md') and !Exists('$(MSBuildProjectDirectory)\readme.md')" />
45+
<None Include="$(MSBuildThisFileDirectory)icon.png" Link="icon.png" Visible="false" Pack="true" PackagePath="%(Filename)%(Extension)" CopyToOutputDirectory="Never" Condition="Exists('$(MSBuildThisFileDirectory)icon.png') and !Exists('$(MSBuildProjectDirectory)\icon.png')" />
46+
47+
<None Include="$(MSBuildThisFileDirectory)readme.md" Link="readme.md" Pack="true" PackagePath="%(Filename)%(Extension)" CopyToOutputDirectory="Never" Condition="'$(PackReadme)' != 'false' and Exists('$(MSBuildThisFileDirectory)readme.md') and !Exists('$(MSBuildProjectDirectory)\readme.md')" />
6048
</ItemGroup>
6149

6250
<!-- Microsoft.NET.Sdk\targets\Microsoft.NET.DefaultAssemblyInfo.targets does this and is imported
@@ -115,7 +103,7 @@
115103
<!-- Consider the project out of date if any of these files changes -->
116104
<UpToDateCheck Include="@(None);@(Content);@(EmbeddedResource)" />
117105
<!-- Opt-in to typed resource generation by setting custom tool to MSBuild:Compile -->
118-
<EmbeddedResource Update="@(EmbeddedResource -> WithMetadataValue('Generator', 'MSBuild:Compile'))" Type="Resx">
106+
<EmbeddedResource Update="@(EmbeddedResource -&gt; WithMetadataValue('Generator', 'MSBuild:Compile'))" Type="Resx">
119107
<!-- Default to Just Works resources generation. See https://www.cazzulino.com/resources.html -->
120108
<StronglyTypedFileName>$(IntermediateOutputPath)\$([MSBuild]::ValueOrDefault('%(RelativeDir)', '').Replace('\', '.').Replace('/', '.'))%(Filename).g$(DefaultLanguageSourceExtension)</StronglyTypedFileName>
121109
<StronglyTypedLanguage>$(Language)</StronglyTypedLanguage>
@@ -141,10 +129,7 @@
141129
</ItemGroup>
142130

143131
<!-- Make sure the source control info is available before calling source generators -->
144-
<Target Name="EnsureProjectInformation"
145-
BeforeTargets="GenerateMSBuildEditorConfigFileShouldRun"
146-
AfterTargets="InitializeSourceControlInformation"
147-
DependsOnTargets="InitializeSourceControlInformation">
132+
<Target Name="EnsureProjectInformation" BeforeTargets="GenerateMSBuildEditorConfigFileShouldRun" AfterTargets="InitializeSourceControlInformation" DependsOnTargets="InitializeSourceControlInformation">
148133

149134
<PropertyGroup Condition="'$(SourceControlInformationFeatureSupported)' == 'true'">
150135
<!-- The project must specify PublishRepositoryUrl=true in order to publish the URL, in order to prevent inadvertent leak of internal URL. -->
@@ -160,7 +145,7 @@
160145

161146
<!-- Add SourceRoot as a project property too -->
162147
<ItemGroup>
163-
<_GitSourceRoot Include="@(SourceRoot -> WithMetadataValue('SourceControl', 'git'))" />
148+
<_GitSourceRoot Include="@(SourceRoot -&gt; WithMetadataValue('SourceControl', 'git'))" />
164149
</ItemGroup>
165150

166151
<PropertyGroup>
@@ -172,11 +157,7 @@
172157

173158
</Target>
174159

175-
<Target Name="UpdatePackageMetadata"
176-
BeforeTargets="PrepareForBuild;GenerateMSBuildEditorConfigFileShouldRun;GetAssemblyVersion;GetPackageMetadata;GenerateNuspec;Pack"
177-
DependsOnTargets="EnsureProjectInformation"
178-
Condition="'$(SourceControlInformationFeatureSupported)' == 'true' And
179-
'$(IsPackable)' == 'true'">
160+
<Target Name="UpdatePackageMetadata" BeforeTargets="PrepareForBuild;GenerateMSBuildEditorConfigFileShouldRun;GetAssemblyVersion;GetPackageMetadata;GenerateNuspec;Pack" DependsOnTargets="EnsureProjectInformation" Condition="'$(SourceControlInformationFeatureSupported)' == 'true' And '$(IsPackable)' == 'true'">
180161
<PropertyGroup>
181162
<PackageProjectUrl Condition="'$(PackageProjectUrl)' == '' and '$(PublishRepositoryUrl)' == 'true'">$(RepositoryUrl.Replace('.git', ''))</PackageProjectUrl>
182163
<PackageDescription>$(Description)</PackageDescription>
@@ -185,7 +166,7 @@
185166
</Target>
186167

187168
<!-- Import before UsingTask because first to declare tasks wins -->
188-
<Import Project="Directory.targets" Condition="Exists('Directory.targets')"/>
169+
<Import Project="Directory.targets" Condition="Exists('Directory.targets')" />
189170
<Import Project="Directory.targets.user" Condition="Exists('Directory.targets.user')" />
190171

191172
</Project>

src/WhatsApp/WhatsApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.3.0" />
2323
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.23.0" />
2424
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage.Queues" Version="5.5.2" />
25-
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="9.6.0" />
25+
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" Version="9.7.1" />
2626
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
2727
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="8.10.0" />
2828
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" />

0 commit comments

Comments
 (0)