-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
34 deletions.
There are no files selected for viewing
68 changes: 35 additions & 33 deletions
68
src/Criteo.OpenApi.Comparator.Cli/Criteo.OpenApi.Comparator.Cli.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,35 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net6;net8;</TargetFrameworks> | ||
<LangVersion>Latest</LangVersion> | ||
<OutputType>Exe</OutputType> | ||
<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: --> | ||
<GenerateProgramFile>false</GenerateProgramFile> | ||
<RootNamespace>Criteo.OpenApi.Comparator.Cli</RootNamespace> | ||
<!-- Nuget Package definition --> | ||
<PackageId>Criteo.OpenApi.Comparator.Cli</PackageId> | ||
<Title>Criteo.OpenApi.Comparator.Cli</Title> | ||
<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>Copyright (c) Criteo Technology. All rights reserved.</Copyright> | ||
<Version>0.7.3</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> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackAsTool>true</PackAsTool> | ||
<ToolCommandName>openapi-compare</ToolCommandName> | ||
<PackageReadmeFile>Readme.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Criteo.OpenApi.Comparator" Version="0.7.3" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\Readme.md" Pack="true" PackagePath="\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net6;net8;</TargetFrameworks> | ||
<LangVersion>Latest</LangVersion> | ||
<OutputType>Exe</OutputType> | ||
<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: --> | ||
<GenerateProgramFile>false</GenerateProgramFile> | ||
<RootNamespace>Criteo.OpenApi.Comparator.Cli</RootNamespace> | ||
<!-- Nuget Package definition --> | ||
<PackageId>Criteo.OpenApi.Comparator.Cli</PackageId> | ||
<Title>Criteo.OpenApi.Comparator.Cli</Title> | ||
<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>Copyright (c) Criteo Technology. All rights reserved.</Copyright> | ||
<Version>0.8.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> | ||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<PackAsTool>true</PackAsTool> | ||
<ToolCommandName>openapi-compare</ToolCommandName> | ||
<PackageReadmeFile>Readme.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Criteo.OpenApi.Comparator\Criteo.OpenApi.Comparator.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="..\..\Readme.md" Pack="true" PackagePath="\" /> | ||
</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