Skip to content

Commit 6e887a1

Browse files
dependabot[bot]kzu
authored andcommitted
Bump the extensionsai group with 1 update
Bumps Microsoft.Extensions.AI from 9.7.0 to 9.7.1 --- updated-dependencies: - dependency-name: Microsoft.Extensions.AI dependency-version: 9.7.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: extensionsai ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ab2bde7 commit 6e887a1

File tree

4 files changed

+15
-40
lines changed

4 files changed

+15
-40
lines changed

src/AI/AI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="NuGetizer" Version="1.2.4" PrivateAssets="all" />
13-
<PackageReference Include="Microsoft.Extensions.AI" Version="9.7.0" />
13+
<PackageReference Include="Microsoft.Extensions.AI" Version="9.7.1" />
1414
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.7.0-preview.1.25356.2" />
1515
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.7" />
1616
<PackageReference Include="OpenAI" Version="2.2.0" />

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>
@@ -152,7 +146,7 @@
152146
<Using Include="System.ArgumentNullException" Static="true" />
153147
</ItemGroup>
154148

155-
<Import Project="Directory.props" Condition="Exists('Directory.props')"/>
149+
<Import Project="Directory.props" Condition="Exists('Directory.props')" />
156150
<Import Project="Directory.props.user" Condition="Exists('Directory.props.user')" />
157151

158152
<!-- 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>
@@ -169,11 +154,7 @@
169154

170155
</Target>
171156

172-
<Target Name="UpdatePackageMetadata"
173-
BeforeTargets="PrepareForBuild;GenerateMSBuildEditorConfigFileShouldRun;GetAssemblyVersion;GetPackageMetadata;GenerateNuspec;Pack"
174-
DependsOnTargets="EnsureProjectInformation"
175-
Condition="'$(SourceControlInformationFeatureSupported)' == 'true' And
176-
'$(IsPackable)' == 'true'">
157+
<Target Name="UpdatePackageMetadata" BeforeTargets="PrepareForBuild;GenerateMSBuildEditorConfigFileShouldRun;GetAssemblyVersion;GetPackageMetadata;GenerateNuspec;Pack" DependsOnTargets="EnsureProjectInformation" Condition="'$(SourceControlInformationFeatureSupported)' == 'true' And '$(IsPackable)' == 'true'">
177158
<PropertyGroup>
178159
<PackageProjectUrl Condition="'$(PackageProjectUrl)' == '' and '$(PublishRepositoryUrl)' == 'true'">$(RepositoryUrl)</PackageProjectUrl>
179160
<PackageDescription>$(Description)</PackageDescription>
@@ -182,7 +163,7 @@
182163
</Target>
183164

184165
<!-- Import before UsingTask because first to declare tasks wins -->
185-
<Import Project="Directory.targets" Condition="Exists('Directory.targets')"/>
166+
<Import Project="Directory.targets" Condition="Exists('Directory.targets')" />
186167
<Import Project="Directory.targets.user" Condition="Exists('Directory.targets.user')" />
187168

188169
</Project>

src/Directory.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ParameterGroup>
1717
<Task>
1818
<Using Namespace="System" />
19-
<Using Namespace="Microsoft.Build.Framework"/>
19+
<Using Namespace="Microsoft.Build.Framework" />
2020
<Code Type="Fragment" Language="cs">
2121
<![CDATA[
2222
var version = this.BuildEngine4.GetRegisteredTaskObject("Version", RegisteredTaskObjectLifetime.Build);

0 commit comments

Comments
 (0)