Skip to content

Commit

Permalink
Fixed TestIt.Client.csproj (#23)
Browse files Browse the repository at this point in the history
Co-authored-by: Dmitry.Gridnev <[email protected]>
  • Loading branch information
gibiw and Dmitry.Gridnev authored Sep 13, 2023
1 parent 72e2d81 commit 88dfba6
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions src/TestIt.Client/TestIt.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,24 +1,28 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo><!-- setting GenerateAssemblyInfo to false causes this bug https://github.com/dotnet/project-system/issues/3934 -->
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>TestIt.Client</AssemblyName>
<PackageId>TestIt.Client</PackageId>
<OutputType>Library</OutputType>
<Authors>OpenAPI</Authors>
<Company>OpenAPI</Company>
<AssemblyTitle>OpenAPI Library</AssemblyTitle>
<Description>A library generated from a OpenAPI doc</Description>
<Copyright>No Copyright</Copyright>
<RootNamespace>TestIt.Client</RootNamespace>
<Version>1.0.0</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\TestIt.Client.xml</DocumentationFile>
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Minor update</PackageReleaseNotes>
<LangVersion>10</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Title>Test IT API client</Title>
<PackageId>TestIt.ApiClient</PackageId>
<Authors>Test IT</Authors>
<Description>Test IT TMS API client for .NET</Description>
<Copyright>Copyright (c) 2019 - 2023 Test IT</Copyright>
<RepositoryUrl>https://github.com/testit-tms/api-client-dotnet</RepositoryUrl>
<PackageProjectUrl>https://testit.software</PackageProjectUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
<None Include="../../README.md" Pack="true" PackagePath="$(PackageReadmeFile)" />
<None Include="../../LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)" />
<None Include="../../images/icon.png" Pack="true" PackagePath="$(PackageIcon)" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="JsonSubTypes" Version="2.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
Expand Down

0 comments on commit 88dfba6

Please sign in to comment.