Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.2"
".": "0.2.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 19
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless-sd-st%2Fpublishing-test-59a4671c14422137407f09d9ca35e5a98e05ad623203204b8857296b925d0719.yml
openapi_spec_hash: 71f4196faa129c612fb2cbb83f242e30
config_hash: 4d8352fde5b140e442d7104283bdfa00
config_hash: 68271ccc3c1e8ba86a67d63343d3f811
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.0 (2025-08-04)

Full Changelog: [v0.1.2...v0.2.0](https://github.com/sd-st/publishing-test-csharp/compare/v0.1.2...v0.2.0)

### Features

* **api:** update via SDK Studio ([019736f](https://github.com/sd-st/publishing-test-csharp/commit/019736f82ebbdddf53529c7b723b638737c45f87))

## 0.1.2 (2025-08-04)

Full Changelog: [v0.1.1...v0.1.2](https://github.com/sd-st/publishing-test-csharp/compare/v0.1.1...v0.1.2)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
>
> **We'd love your feedback!** Please share any suggestions, bug reports, feature requests, or general thoughts by [filing an issue](https://www.github.com/sd-st/publishing-test-csharp/issues/new).

The Publishing Test C# SDK provides convenient access to the Publishing Test REST API from applications written in C#.
The Publishing Test C# SDK provides convenient access to the [Publishing Test REST API](google.com) from applications written in C#.

It is generated with [Stainless](https://www.stainless.com/).

Expand Down
14 changes: 4 additions & 10 deletions src/PublishingTest/PublishingTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AssemblyTitle>SDK Code Generation Publishing Test C#</AssemblyTitle>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<Nullable>enable</Nullable>
<VersionPrefix>0.0.1</VersionPrefix>
<VersionPrefix>0.2.0</VersionPrefix>
<TargetFrameworks>net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<!-- Generate an XML documentation file for the project. -->
Expand All @@ -22,17 +22,11 @@
<!-- Disable JSON warnings (alpha) -->
<NoWarn>$(NoWarn),IL2026,IL3050</NoWarn>
<Configurations>Debug;Release</Configurations>
<IsTrimmable
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))"
>true</IsTrimmable
>
<IsAotCompatible
Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))"
>true</IsAotCompatible
>
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible>
<ImplicitUsings>disable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>
Loading