|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
| 2 | + |
2 | 3 | <PropertyGroup>
|
3 | 4 | <IsPackable>true</IsPackable>
|
4 | 5 | <PackageId>SpeakeasySDK</PackageId>
|
5 |
| - <Version>5.9.18</Version> |
| 6 | + <Version>5.9.19</Version> |
6 | 7 | <Authors>Speakeasy</Authors>
|
7 | 8 | <TargetFramework>net8.0</TargetFramework>
|
8 |
| - <Nullable>enable</Nullable> |
9 |
| - <PackageReadmeFile>README.md</PackageReadmeFile> |
10 |
| - <PackageLicenseFile>LICENSE.md</PackageLicenseFile> |
11 |
| - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
12 |
| - <NoWarn>1591</NoWarn> |
13 |
| - <RepositoryUrl>https://github.com/speakeasy-api/speakeasy-client-sdk-csharp</RepositoryUrl> |
| 9 | + <Authors>Speakeasy</Authors> |
| 10 | + <ProjectUrl>https://speakeasyapi.dev</ProjectUrl> |
| 11 | + <Description>C# Client SDK</Description> |
| 12 | + <PackageTags>Speakeasy API SDK Generation</PackageTags> |
| 13 | + <RepositoryUrl>https://github.com/speakeasy-api/speakeasy-client-sdk-csharp.git</RepositoryUrl> |
| 14 | + <RepositoryType>git</RepositoryType> |
14 | 15 | </PropertyGroup>
|
15 | 16 |
|
| 17 | + <PropertyGroup> |
| 18 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 19 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 20 | + <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
| 21 | + <PackageIcon>icon.png</PackageIcon> |
| 22 | + <PropertyGroup> |
| 23 | + |
16 | 24 | <ItemGroup>
|
17 | 25 | <None Include="..\NUGET.md" Pack="true" PackagePath="README.md"/>
|
18 | 26 | <None Include="..\LICENSE.md" Pack="true" PackagePath="\"/>
|
19 | 27 | <None Include="..\docs\**\*" Pack="true" PackagePath="\docs" CopyToOutputDirectory="PreserveNewest"/>
|
| 28 | + </ItemGroup> |
| 29 | + |
| 30 | + <PropertyGroup> |
| 31 | + <IncludeSymbols>true</IncludeSymbols> |
| 32 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 33 | + <Nullable>enable</Nullable> |
| 34 | + <NoWarn>1591</NoWarn> |
| 35 | + </PropertyGroup> |
| 36 | + |
| 37 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 38 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 39 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 40 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 41 | + <DebugType>embedded</DebugType> |
| 42 | + </PropertyGroup> |
20 | 43 |
|
| 44 | + <ItemGroup> |
21 | 45 | <PackageReference Include="newtonsoft.json" Version="13.0.3" />
|
22 | 46 | <PackageReference Include="nodatime" Version="3.1.9" />
|
| 47 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/> |
23 | 48 | </ItemGroup>
|
| 49 | + |
24 | 50 | </Project>
|
0 commit comments