Skip to content

Commit ce6fb51

Browse files
committed
Add support for odata v9
1 parent 3fc0719 commit ce6fb51

File tree

9 files changed

+22
-16
lines changed

9 files changed

+22
-16
lines changed

examples/AspNetCore/OData/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Import Project="$([MSBuild]::GetPathOfFileAbove('$(MSBuildThisFile)','$(MSBuildThisFileDirectory)../'))" />
55

66
<ItemGroup>
7-
<PackageReference Include="Microsoft.AspNetCore.OData" Version="8.2.3" />
7+
<PackageReference Include="Microsoft.AspNetCore.OData" Version="9.0.0" />
88
</ItemGroup>
99

1010
</Project>

src/Abstractions/src/Asp.Versioning.Abstractions/Asp.Versioning.Abstractions.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>8.1.0</VersionPrefix>
5-
<AssemblyVersion>8.1.0.0</AssemblyVersion>
4+
<VersionPrefix>9.0.0</VersionPrefix>
5+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
66
<TargetFrameworks>$(DefaultTargetFramework);netstandard1.0;netstandard2.0</TargetFrameworks>
77
<AssemblyTitle>API Versioning Abstractions</AssemblyTitle>
88
<Description>The abstractions library for API versioning.</Description>

src/AspNetCore/OData/src/Asp.Versioning.OData.ApiExplorer/ApiExplorer/ODataApiDescriptionProvider.cs

+6
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,15 @@ protected virtual void ExploreQueryOptions( IEnumerable<ApiDescription> apiDescr
167167
{
168168
var localODataOptions = ODataOptions;
169169
var localQueryOptions = Options.QueryOptions;
170+
#pragma warning disable CS0618 // Type or member is obsolete
170171
var settings = new ODataQueryOptionSettings()
171172
{
172173
NoDollarPrefix = localODataOptions.EnableNoDollarQueryOptions,
173174
DescriptionProvider = localQueryOptions.DescriptionProvider,
174175
DefaultQuerySettings = localODataOptions.QuerySettings,
175176
ModelMetadataProvider = ModelMetadataProvider,
176177
};
178+
#pragma warning restore CS0618 // Type or member is obsolete
177179

178180
localQueryOptions.ApplyTo( apiDescriptions, settings );
179181
}
@@ -309,10 +311,14 @@ private void ExpandNavigationPropertyLinks(
309311
switch ( template[i] )
310312
{
311313
case EntitySetSegmentTemplate segment:
314+
#pragma warning disable CS0618 // Type or member is obsolete
312315
entity = segment.EntitySet.EntityType();
316+
#pragma warning restore CS0618 // Type or member is obsolete
313317
break;
314318
case SingletonSegmentTemplate segment:
319+
#pragma warning disable CS0618 // Type or member is obsolete
315320
entity = segment.Singleton.EntityType();
321+
#pragma warning restore CS0618 // Type or member is obsolete
316322
break;
317323
}
318324
}

src/AspNetCore/OData/src/Asp.Versioning.OData.ApiExplorer/Asp.Versioning.OData.ApiExplorer.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>8.1.0</VersionPrefix>
5-
<AssemblyVersion>8.1.0.0</AssemblyVersion>
4+
<VersionPrefix>9.0.0</VersionPrefix>
5+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
66
<TargetFramework>$(DefaultTargetFramework)</TargetFramework>
77
<RootNamespace>Asp.Versioning</RootNamespace>
88
<AssemblyTitle>ASP.NET Core API Versioning API Explorer for OData v4.0</AssemblyTitle>

src/AspNetCore/OData/src/Asp.Versioning.OData/Asp.Versioning.OData.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>8.1.0</VersionPrefix>
5-
<AssemblyVersion>8.1.0.0</AssemblyVersion>
4+
<VersionPrefix>9.0.0</VersionPrefix>
5+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
66
<TargetFramework>$(DefaultTargetFramework)</TargetFramework>
77
<RootNamespace>Asp.Versioning</RootNamespace>
88
<AssemblyTitle>ASP.NET Core API Versioning with OData v4.0</AssemblyTitle>
@@ -15,7 +15,7 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Microsoft.AspNetCore.OData" Version="[8.0.2,9.0.0)" />
18+
<PackageReference Include="Microsoft.AspNetCore.OData" Version="[8.0.2,10.0.0)" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

src/AspNetCore/WebApi/src/Asp.Versioning.Http/Asp.Versioning.Http.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>8.1.0</VersionPrefix>
5-
<AssemblyVersion>8.1.0.0</AssemblyVersion>
4+
<VersionPrefix>9.0.0</VersionPrefix>
5+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
66
<TargetFramework>$(DefaultTargetFramework)</TargetFramework>
77
<RootNamespace>Asp.Versioning</RootNamespace>
88
<AssemblyTitle>ASP.NET Core API Versioning</AssemblyTitle>

src/AspNetCore/WebApi/src/Asp.Versioning.Mvc.ApiExplorer/Asp.Versioning.Mvc.ApiExplorer.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>8.1.0</VersionPrefix>
5-
<AssemblyVersion>8.1.0.0</AssemblyVersion>
4+
<VersionPrefix>9.0.0</VersionPrefix>
5+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
66
<TargetFramework>$(DefaultTargetFramework)</TargetFramework>
77
<RootNamespace>Asp.Versioning.ApiExplorer</RootNamespace>
88
<AssemblyTitle>ASP.NET Core API Versioning API Explorer</AssemblyTitle>

src/AspNetCore/WebApi/src/Asp.Versioning.Mvc/Asp.Versioning.Mvc.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>8.1.0</VersionPrefix>
5-
<AssemblyVersion>8.1.0.0</AssemblyVersion>
4+
<VersionPrefix>9.0.0</VersionPrefix>
5+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
66
<TargetFramework>$(DefaultTargetFramework)</TargetFramework>
77
<RootNamespace>Asp.Versioning</RootNamespace>
88
<AssemblyTitle>ASP.NET Core API Versioning</AssemblyTitle>

src/Client/src/Asp.Versioning.Http.Client/Asp.Versioning.Http.Client.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<VersionPrefix>8.1.0</VersionPrefix>
5-
<AssemblyVersion>8.1.0.0</AssemblyVersion>
4+
<VersionPrefix>9.0.0</VersionPrefix>
5+
<AssemblyVersion>9.0.0.0</AssemblyVersion>
66
<TargetFrameworks>$(DefaultTargetFramework);netstandard1.1;netstandard2.0</TargetFrameworks>
77
<RootNamespace>Asp.Versioning.Http</RootNamespace>
88
<AssemblyTitle>API Versioning Client Extensions</AssemblyTitle>

0 commit comments

Comments
 (0)