Skip to content

Commit 8e7e8e3

Browse files
committed
Updated dependencies.
1 parent 1ac9a9e commit 8e7e8e3

File tree

6 files changed

+172
-66
lines changed

6 files changed

+172
-66
lines changed

src/LightResults.Extensions.EntityFrameworkCore/LightResults.Extensions.EntityFrameworkCore.csproj

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@
2525
</ItemGroup>
2626

2727
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
28-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.1"/>
28+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.2"/>
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<PackageReference Include="LightResults" Version="10.0.1" />
33-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
32+
<PackageReference Include="LightResults" Version="10.0.3" />
33+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All"/>
3434
</ItemGroup>
3535

3636
<!-- Output -->
3737
<PropertyGroup>
3838
<AssemblyName>LightResults.Extensions.EntityFrameworkCore</AssemblyName>
39-
<Version>10.0.0</Version>
40-
<AssemblyVersion>10.0.0.0</AssemblyVersion>
41-
<FileVersion>10.0.0.0</FileVersion>
39+
<Version>10.0.1</Version>
40+
<AssemblyVersion>10.0.1.0</AssemblyVersion>
41+
<FileVersion>10.0.1.0</FileVersion>
4242
<NeutralLanguage>en-US</NeutralLanguage>
4343
<Optimize>true</Optimize>
4444
<!-- IsAotCompatible cannot be enabled because of Entity Framework Core limitations -->
@@ -64,6 +64,11 @@
6464
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
6565
</PropertyGroup>
6666

67+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
68+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
69+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
70+
</PropertyGroup>
71+
6772
<ItemGroup>
6873
<None Include="README.md" Pack="true" PackagePath="" Visible="false"/>
6974
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" Visible="false"/>

src/LightResults.Extensions.ExceptionHandling/LightResults.Extensions.ExceptionHandling.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@
1818
<!-- References -->
1919

2020
<ItemGroup>
21-
<PackageReference Include="LightResults" Version="10.0.1" />
22-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
21+
<PackageReference Include="LightResults" Version="10.0.3" />
22+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All"/>
2323
</ItemGroup>
2424

2525
<!-- Output -->
2626
<PropertyGroup>
2727
<AssemblyName>LightResults.Extensions.ExceptionHandling</AssemblyName>
28-
<Version>10.0.0</Version>
29-
<AssemblyVersion>10.0.0.0</AssemblyVersion>
30-
<FileVersion>10.0.0.0</FileVersion>
28+
<Version>10.0.1</Version>
29+
<AssemblyVersion>10.0.1.0</AssemblyVersion>
30+
<FileVersion>10.0.1.0</FileVersion>
3131
<NeutralLanguage>en-US</NeutralLanguage>
3232
<Optimize>true</Optimize>
3333
<IsAotCompatible>true</IsAotCompatible>
@@ -53,6 +53,11 @@
5353
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
5454
</PropertyGroup>
5555

56+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
57+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
58+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
59+
</PropertyGroup>
60+
5661
<ItemGroup>
5762
<None Include="README.md" Pack="true" PackagePath="" Visible="false"/>
5863
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" Visible="false"/>

src/LightResults.Extensions.Json/LightResults.Extensions.Json.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717

1818
<!-- References -->
1919
<ItemGroup>
20-
<PackageReference Include="LightResults" Version="10.0.1" />
21-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
20+
<PackageReference Include="LightResults" Version="10.0.3" />
21+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All"/>
2222
</ItemGroup>
2323

2424
<!-- Output -->
2525
<PropertyGroup>
2626
<AssemblyName>LightResults.Extensions.Json</AssemblyName>
27-
<Version>10.0.0</Version>
28-
<AssemblyVersion>10.0.0.0</AssemblyVersion>
29-
<FileVersion>10.0.0.0</FileVersion>
27+
<Version>10.0.1</Version>
28+
<AssemblyVersion>10.0.1.0</AssemblyVersion>
29+
<FileVersion>10.0.1.0</FileVersion>
3030
<NeutralLanguage>en-US</NeutralLanguage>
3131
<Optimize>true</Optimize>
3232
<IsAotCompatible>true</IsAotCompatible>
@@ -52,6 +52,11 @@
5252
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
5353
</PropertyGroup>
5454

55+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
56+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
57+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
58+
</PropertyGroup>
59+
5560
<ItemGroup>
5661
<None Include="README.md" Pack="true" PackagePath="" Visible="false"/>
5762
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" Visible="false"/>

src/LightResults.Extensions.OpenAI/LightResults.Extensions.OpenAI.csproj

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,21 @@
1717

1818
<!-- References -->
1919
<ItemGroup>
20-
<PackageReference Include="LightResults" Version="10.0.1" />
21-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
22-
<PackageReference Include="OpenAI" Version="2.8.0" />
20+
<PackageReference Include="LightResults" Version="10.0.3" />
21+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="All"/>
22+
<PackageReference Include="OpenAI" Version="2.8.0"/>
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<ProjectReference Include="..\LightResults.Extensions.ExceptionHandling\LightResults.Extensions.ExceptionHandling.csproj" />
26+
<ProjectReference Include="..\LightResults.Extensions.ExceptionHandling\LightResults.Extensions.ExceptionHandling.csproj"/>
2727
</ItemGroup>
2828

2929
<!-- Output -->
3030
<PropertyGroup>
3131
<AssemblyName>LightResults.Extensions.OpenAI</AssemblyName>
32-
<Version>10.0.1</Version>
33-
<AssemblyVersion>10.0.1.0</AssemblyVersion>
34-
<FileVersion>10.0.1.0</FileVersion>
32+
<Version>10.0.2</Version>
33+
<AssemblyVersion>10.0.2.0</AssemblyVersion>
34+
<FileVersion>10.0.2.0</FileVersion>
3535
<NeutralLanguage>en-US</NeutralLanguage>
3636
<Optimize>true</Optimize>
3737
<IsAotCompatible>true</IsAotCompatible>
@@ -57,6 +57,11 @@
5757
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
5858
</PropertyGroup>
5959

60+
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
61+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
62+
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
63+
</PropertyGroup>
64+
6065
<ItemGroup>
6166
<None Include="README.md" Pack="true" PackagePath="" Visible="false"/>
6267
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" Visible="false"/>

0 commit comments

Comments
 (0)