Skip to content

Commit

Permalink
✨ net5 and net6 support for OpenAPI Comparator CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-mathon committed Jan 9, 2023
1 parent bec6757 commit 9ec3f41
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3;net5;net6;</TargetFrameworks>
<LangVersion>Latest</LangVersion>
<OutputType>Exe</OutputType>
<TargetFrameworks>netcoreapp3.1;</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Disable generation of fake program file done by Microsoft.NET.Test.Sdk in order to replace it with a static (*Demo.)Main method: -->
Expand All @@ -13,8 +14,8 @@
<Description>OpenApi Specification v3 comparator. Command line tool able to detect API differences between 2 versions of a specification in version 3.</Description>
<Authors>Criteo</Authors>
<Company>Criteo</Company>
<copyright>Criteo</copyright>
<Version>0.6.0</Version>
<Copyright>Copyright (c) Criteo Technology. All rights reserved.</Copyright>
<Version>0.7.0</Version>
<PackageProjectUrl>https://github.com/criteo/openapi-comparator</PackageProjectUrl>
<RepositoryUrl>https://github.com/criteo/openapi-comparator</RepositoryUrl>
<PackageTags>Criteo, OpenApi, OpenApi-Comparator, OpenApi-Diff, Swagger</PackageTags>
Expand All @@ -26,9 +27,9 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Criteo.OpenApi.Comparator" Version="0.5.1" />
<PackageReference Include="Criteo.OpenApi.Comparator" Version="0.6.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Readme.md" Pack="true" PackagePath="\"/>
<None Include="..\..\Readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>Latest</LangVersion>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Disable generation of fake program file done by Microsoft.NET.Test.Sdk in order to replace it with a static (*Demo.)Main method: -->
Expand All @@ -12,8 +13,8 @@
<Description>OpenApi Specification v3 comparator. The tool is able to detect API differences between 2 versions of a specification in version 3.</Description>
<Authors>Criteo</Authors>
<Company>Criteo</Company>
<copyright>Criteo</copyright>
<Version>0.6.0</Version>
<Copyright>Copyright (c) Criteo Technology. All rights reserved.</Copyright>
<Version>0.7.0</Version>
<PackageProjectUrl>https://github.com/criteo/openapi-comparator</PackageProjectUrl>
<RepositoryUrl>https://github.com/criteo/openapi-comparator</RepositoryUrl>
<PackageTags>Criteo, OpenApi, OpenApi-Comparator, OpenApi-Diff, Swagger</PackageTags>
Expand Down

0 comments on commit 9ec3f41

Please sign in to comment.