-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #482 from microsoft/dependabot/nuget/Microsoft.Ope…
…nApi-1.6.13 Bump Microsoft.OpenApi from 1.6.12 to 1.6.13
- Loading branch information
Showing
6 changed files
with
530 additions
and
120 deletions.
There are no files selected for viewing
152 changes: 76 additions & 76 deletions
152
src/Microsoft.OpenApi.OData.Reader/Microsoft.OpenAPI.OData.Reader.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,76 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>Microsoft.OpenApi.OData.Reader</AssemblyName> | ||
<LangVersion>Latest</LangVersion> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageProjectUrl>https://github.com/Microsoft/OpenAPI.NET.OData</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Authors>Microsoft</Authors> | ||
<Company>Microsoft</Company> | ||
<Title>Microsoft Open API OData Reader</Title> | ||
<RootNamespace>Microsoft.OpenApi.OData</RootNamespace> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<PackageId>Microsoft.OpenApi.OData</PackageId> | ||
<SignAssembly>true</SignAssembly> | ||
<Version>1.6.0-preview.7</Version> | ||
<Description>This package contains the codes you need to convert OData CSDL to Open API Document of Model.</Description> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageTags>Microsoft OpenApi OData EDM</PackageTags> | ||
<RepositoryUrl>https://github.com/Microsoft/OpenAPI.NET.OData</RepositoryUrl> | ||
<PackageReleaseNotes> | ||
- Reads annotations on structural properties of stream types for media entity paths #399 | ||
- Updates the format of the request body schema of a collection of complex property #423 | ||
- Adds a delete operation and a required @id query parameter to collection-valued navigation property paths with $ref #453 | ||
- Fixes inconsistency of nullability of schemas of properties that are a collection of structured types #467 | ||
- Generates $expand query parameter for operations whose return type is a collection #481 | ||
- Adds delete operation for non-contained navigation properties only if explicitly allowed via annotation #483 | ||
- Appends parameters and fixes operation ids of navigation property paths generated via composable functions #486 | ||
- Use alternate keys in the generation of operation ids of operations and navigation property alternate paths #488 | ||
</PackageReleaseNotes> | ||
<AssemblyName>Microsoft.OpenApi.OData.Reader</AssemblyName> | ||
<AssemblyOriginatorKeyFile>..\..\tool\Microsoft.OpenApi.OData.snk</AssemblyOriginatorKeyFile> | ||
<OutputPath Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">..\..\bin\Debug\</OutputPath> | ||
<OutputPath Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">..\..\bin\Release\</OutputPath> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<DocumentationFile>..\..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#embeduntrackedsources --> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\Build.props" /> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.OData.Edm" Version="7.20.0" /> | ||
<PackageReference Include="Microsoft.OpenApi" Version="1.6.12" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="icon.png" Pack="true" PackagePath="\" /> | ||
<Compile Update="Properties\SRResource.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>SRResource.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Properties\SRResource.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>SRResource.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<AssemblyName>Microsoft.OpenApi.OData.Reader</AssemblyName> | ||
<LangVersion>Latest</LangVersion> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackageIcon>icon.png</PackageIcon> | ||
<PackageProjectUrl>https://github.com/Microsoft/OpenAPI.NET.OData</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Authors>Microsoft</Authors> | ||
<Company>Microsoft</Company> | ||
<Title>Microsoft Open API OData Reader</Title> | ||
<RootNamespace>Microsoft.OpenApi.OData</RootNamespace> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<PackageId>Microsoft.OpenApi.OData</PackageId> | ||
<SignAssembly>true</SignAssembly> | ||
<Version>1.6.0-preview.7</Version> | ||
<Description>This package contains the codes you need to convert OData CSDL to Open API Document of Model.</Description> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageTags>Microsoft OpenApi OData EDM</PackageTags> | ||
<RepositoryUrl>https://github.com/Microsoft/OpenAPI.NET.OData</RepositoryUrl> | ||
<PackageReleaseNotes> | ||
- Reads annotations on structural properties of stream types for media entity paths #399 | ||
- Updates the format of the request body schema of a collection of complex property #423 | ||
- Adds a delete operation and a required @id query parameter to collection-valued navigation property paths with $ref #453 | ||
- Fixes inconsistency of nullability of schemas of properties that are a collection of structured types #467 | ||
- Generates $expand query parameter for operations whose return type is a collection #481 | ||
- Adds delete operation for non-contained navigation properties only if explicitly allowed via annotation #483 | ||
- Appends parameters and fixes operation ids of navigation property paths generated via composable functions #486 | ||
- Use alternate keys in the generation of operation ids of operations and navigation property alternate paths #488 | ||
</PackageReleaseNotes> | ||
<AssemblyName>Microsoft.OpenApi.OData.Reader</AssemblyName> | ||
<AssemblyOriginatorKeyFile>..\..\tool\Microsoft.OpenApi.OData.snk</AssemblyOriginatorKeyFile> | ||
<OutputPath Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">..\..\bin\Debug\</OutputPath> | ||
<OutputPath Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">..\..\bin\Release\</OutputPath> | ||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild> | ||
<DocumentationFile>..\..\bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile> | ||
<!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#embeduntrackedsources --> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
|
||
<Import Project="..\Build.props" /> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.OData.Edm" Version="7.20.0" /> | ||
<PackageReference Include="Microsoft.OpenApi" Version="1.6.13" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<None Include="..\..\README.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="icon.png" Pack="true" PackagePath="\" /> | ||
<Compile Update="Properties\SRResource.Designer.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>SRResource.resx</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Update="Properties\SRResource.resx"> | ||
<Generator>ResXFileCodeGenerator</Generator> | ||
<LastGenOutput>SRResource.Designer.cs</LastGenOutput> | ||
</EmbeddedResource> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.