Skip to content

Commit de8dce4

Browse files
committed
Merge branch 'release/2.2' into 'release/3.0'
2 parents 04705ee + bfb2551 commit de8dce4

File tree

5 files changed

+11
-0
lines changed

5 files changed

+11
-0
lines changed

eng/Dependencies.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,8 @@ and are generated based on the last package release.
172172
<LatestPackageReference Include="MessagePack" Version="$(MessagePackPackageVersion)" />
173173
<LatestPackageReference Include="Microsoft.Azure.KeyVault" Version="$(MicrosoftAzureKeyVaultPackageVersion)" />
174174
<LatestPackageReference Include="Microsoft.Azure.Storage.Blob" Version="$(MicrosoftAzureStorageBlobPackageVersion)" />
175+
<LatestPackageReference Include="Microsoft.Data.OData" Version="$(MicrosoftDataODataPackageVersion)" />
176+
<LatestPackageReference Include="Microsoft.Data.Services.Client" Version="$(MicrosoftDataServicesClientPackageVersion)" />
175177
<LatestPackageReference Include="Mono.Cecil" Version="$(MonoCecilPackageVersion)" />
176178
<LatestPackageReference Include="Mono.WebAssembly.Interop" Version="$(MonoWebAssemblyInteropPackageVersion)" />
177179
<LatestPackageReference Include="Moq" Version="$(MoqPackageVersion)" />

eng/PatchConfig.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ Later on, this will be checked using this condition:
6565
</PropertyGroup>
6666
<PropertyGroup Condition=" '$(VersionPrefix)' == '2.2.7' ">
6767
<PackagesInPatch>
68+
Microsoft.AspNetCore.DataProtection.AzureStorage;
6869
Microsoft.AspNetCore.Hosting;
70+
Microsoft.AspNetCore.SpaServices;
6971
</PackagesInPatch>
7072
</PropertyGroup>
7173
</Project>

eng/Versions.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,8 @@
207207
<MicrosoftCodeAnalysisCommonPackageVersion>3.0.0</MicrosoftCodeAnalysisCommonPackageVersion>
208208
<MicrosoftCodeAnalysisCSharpPackageVersion>3.0.0</MicrosoftCodeAnalysisCSharpPackageVersion>
209209
<MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>3.0.0</MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>
210+
<MicrosoftDataODataPackageVersion>5.8.4</MicrosoftDataODataPackageVersion>
211+
<MicrosoftDataServicesClientPackageVersion>5.8.4</MicrosoftDataServicesClientPackageVersion>
210212
<MicrosoftIdentityModelClientsActiveDirectoryPackageVersion>3.19.8</MicrosoftIdentityModelClientsActiveDirectoryPackageVersion>
211213
<MicrosoftIdentityModelLoggingPackageVersion>5.5.0</MicrosoftIdentityModelLoggingPackageVersion>
212214
<MicrosoftIdentityModelProtocolsOpenIdConnectPackageVersion>5.5.0</MicrosoftIdentityModelProtocolsOpenIdConnectPackageVersion>

src/DataProtection/AzureStorage/src/Microsoft.AspNetCore.DataProtection.AzureStorage.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
88
<PackageTags>aspnetcore;dataprotection;azure;blob</PackageTags>
99
<IsShippingPackage>true</IsShippingPackage>
10+
<UseLatestPackageReferences>true</UseLatestPackageReferences>
1011
</PropertyGroup>
1112

1213
<ItemGroup>
@@ -17,6 +18,7 @@
1718
<ItemGroup Condition="'$(AspNetCoreMajorMinorVersion)' == '3.0'">
1819
<!-- This dependency was replaced by Microsoft.Azure.Storage.Blob between 3.0 and 2.2. This suppression can be removed after 3.0 is complete. -->
1920
<SuppressBaselineReference Include="WindowsAzure.Storage" />
21+
<Reference Include="Microsoft.Data.OData" />
2022
</ItemGroup>
2123

2224
</Project>

src/DataProtection/AzureStorage/test/Microsoft.AspNetCore.DataProtection.AzureStorage.Tests.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@
33
<PropertyGroup>
44
<TargetFramework>netcoreapp3.0</TargetFramework>
55
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6+
<UseLatestPackageReferences>true</UseLatestPackageReferences>
67
</PropertyGroup>
78

89
<ItemGroup>
910
<Reference Include="Microsoft.AspNetCore.DataProtection" />
1011
<Reference Include="Microsoft.AspNetCore.DataProtection.AzureStorage" />
1112
<Reference Include="Microsoft.Extensions.DependencyInjection" />
13+
<Reference Include="Microsoft.Data.OData"/>
14+
<Reference Include="Microsoft.Data.Services.Client"/>
1215
</ItemGroup>
1316

1417
</Project>

0 commit comments

Comments
 (0)