-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'vnext' into feature/improve-ci-cd
- Loading branch information
Showing
226 changed files
with
32,535 additions
and
3,524 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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,7 +1,7 @@ | ||
$latest = Get-ChildItem .\artifacts\ Microsoft.OpenApi.Tool* | select-object -Last 1 | ||
$latest = Get-ChildItem .\artifacts\Microsoft.OpenApi.Hidi* | select-object -Last 1 | ||
$version = $latest.Name.Split(".")[3..5] | join-string -Separator "." | ||
|
||
if (Test-Path -Path ./artifacts/openapi-parser.exe) { | ||
dotnet tool uninstall --tool-path artifacts Microsoft.OpenApi.Tool | ||
if (Test-Path -Path ./artifacts/hidi.exe) { | ||
dotnet tool uninstall --tool-path artifacts Microsoft.OpenApi.Hidi | ||
} | ||
dotnet tool install --tool-path artifacts --add-source .\artifacts\ --version $version Microsoft.OpenApi.Tool | ||
dotnet tool install --tool-path artifacts --add-source .\artifacts\ --version $version Microsoft.OpenApi.Hidi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
xmlns:edm="http://docs.oasis-open.org/odata/ns/edm" | ||
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl" | ||
> | ||
<xsl:output method="xml" indent="yes"/> | ||
|
||
<xsl:param name="entitySetOrSingleton" select="'serviceappointments'"></xsl:param> | ||
|
||
<xsl:template match="edm:EntityContainer"> | ||
<xsl:copy> | ||
<xsl:apply-templates select="@* | edm:EntitySet[contains($entitySetOrSingleton,@Name)] | edm:Singleton[contains($entitySetOrSingleton,@Name)]"/> | ||
</xsl:copy> | ||
</xsl:template> | ||
|
||
<xsl:template match="@* | node()"> | ||
<xsl:copy> | ||
<xsl:apply-templates select="@* | node()"/> | ||
</xsl:copy> | ||
</xsl:template> | ||
|
||
</xsl:stylesheet> |
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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<LangVersion>9.0</LangVersion> | ||
<PackAsTool>true</PackAsTool> | ||
<PackageIconUrl>http://go.microsoft.com/fwlink/?LinkID=288890</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/Microsoft/OpenAPI.NET</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | ||
<Authors>Microsoft</Authors> | ||
<Company>Microsoft</Company> | ||
<Title>Microsoft.OpenApi.Hidi</Title> | ||
<PackageId>Microsoft.OpenApi.Hidi</PackageId> | ||
<ToolCommandName>hidi</ToolCommandName> | ||
<PackageOutputPath>./../../artifacts</PackageOutputPath> | ||
<Version>1.0.0-preview1</Version> | ||
<Description>OpenAPI.NET CLI tool for slicing OpenAPI documents</Description> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<PackageTags>OpenAPI .NET</PackageTags> | ||
<RepositoryUrl>https://github.com/Microsoft/OpenAPI.NET</RepositoryUrl> | ||
<PackageReleaseNotes> | ||
- Upgrades Microsoft.OpenApi.OData to 1.0.10-preview1 | ||
- Fixes an issue where hidi would not process async operations | ||
</PackageReleaseNotes> | ||
<AssemblyName>Microsoft.OpenApi.Hidi</AssemblyName> | ||
<RootNamespace>Microsoft.OpenApi.Hidi</RootNamespace> | ||
<SignAssembly>true</SignAssembly> | ||
<!-- https://github.com/dotnet/sourcelink/blob/main/docs/README.md#embeduntrackedsources --> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Remove="CsdlFilter.xslt" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="CsdlFilter.xslt" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="6.0.0" /> | ||
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" /> | ||
<PackageReference Include="Microsoft.OData.Edm" Version="7.10.0" /> | ||
<PackageReference Include="Microsoft.OpenApi.OData" Version="1.0.10-preview3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Microsoft.OpenApi.Readers\Microsoft.OpenApi.Readers.csproj" /> | ||
<ProjectReference Include="..\Microsoft.OpenApi\Microsoft.OpenApi.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="1.1.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.