forked from dotnet/aspnet-api-versioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.AspNetCore.Mvc.Versioning.ApiExplorer.csproj
More file actions
31 lines (25 loc) · 1.43 KB
/
Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.csproj
File metadata and controls
31 lines (25 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>2.2.0</VersionPrefix>
<AssemblyVersion>2.2.0.0</AssemblyVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<NETStandardImplicitPackageVersion>2.0.0-*</NETStandardImplicitPackageVersion>
<NETStandardLibraryNETFrameworkVersion>2.0.0-*</NETStandardLibraryNETFrameworkVersion>
<AssemblyTitle>Microsoft ASP.NET Core API Versioning</AssemblyTitle>
<Description>ASP.NET Core MVC API explorer functionality for discovering metadata such as the list of API-versioned controllers and actions, and their URLs and allowed HTTP methods.</Description>
<RootNamespace>Microsoft.AspNetCore.Mvc.ApiExplorer</RootNamespace>
<PackageTags>Microsoft;AspNet;AspNetCore;Versioning;ApiExplorer</PackageTags>
</PropertyGroup>
<ItemGroup>
<ReleaseNotes Include="Support substituting API version parameter in route templates (Issue 247)" />
<ReleaseNotes Include="Fix NullReferenceException when parameter without metadata is encountered (Issue 250)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.AspNetCore.Mvc.Versioning\Microsoft.AspNetCore.Mvc.Versioning.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.ApiExplorer" Version="2.3.0" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
<Import Project="..\Common.ApiExplorer\Common.ApiExplorer.projitems" Label="Shared" />
</Project>