Skip to content

Commit

Permalink
Merge pull request #1 from SchematicHQ/fern-bot/05-15-2024-0632PM
Browse files Browse the repository at this point in the history
🌿 Fern Regeneration -- May 15, 2024
  • Loading branch information
bpapillon authored May 16, 2024
2 parents 196cccf + 21f59c6 commit e5a8879
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 11 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: ci

on: [push]

jobs:
compile:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- uses: actions/checkout@master

- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.404

- name: Install tools
run: |
dotnet tool restore
- name: Build Release
run: dotnet build src -c Release /p:ContinuousIntegrationBuild=true

20 changes: 10 additions & 10 deletions src/Schematic.Client.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Schematic.Client", "Schematic.Client\Schematic.Client.csproj", "{5026C5C7-BD41-4B05-BC38-551887402668}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Schematic.Client", "Schematic.Client\Schematic.Client.csproj", "{56A0A70D-FC1E-4E56-AD82-28480D7F80FC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Schematic.Client.Test", "Schematic.Client.Test\Schematic.Client.Test.csproj", "{83315F39-F170-41FE-8F01-86D13761ACB8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Schematic.Client.Test", "Schematic.Client.Test\Schematic.Client.Test.csproj", "{24AB9957-C74D-4951-A7E8-F59A577954BA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand All @@ -16,13 +16,13 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5026C5C7-BD41-4B05-BC38-551887402668}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5026C5C7-BD41-4B05-BC38-551887402668}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5026C5C7-BD41-4B05-BC38-551887402668}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5026C5C7-BD41-4B05-BC38-551887402668}.Release|Any CPU.Build.0 = Release|Any CPU
{83315F39-F170-41FE-8F01-86D13761ACB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{83315F39-F170-41FE-8F01-86D13761ACB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{83315F39-F170-41FE-8F01-86D13761ACB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{83315F39-F170-41FE-8F01-86D13761ACB8}.Release|Any CPU.Build.0 = Release|Any CPU
{56A0A70D-FC1E-4E56-AD82-28480D7F80FC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{56A0A70D-FC1E-4E56-AD82-28480D7F80FC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{56A0A70D-FC1E-4E56-AD82-28480D7F80FC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{56A0A70D-FC1E-4E56-AD82-28480D7F80FC}.Release|Any CPU.Build.0 = Release|Any CPU
{24AB9957-C74D-4951-A7E8-F59A577954BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{24AB9957-C74D-4951-A7E8-F59A577954BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{24AB9957-C74D-4951-A7E8-F59A577954BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{24AB9957-C74D-4951-A7E8-F59A577954BA}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
2 changes: 1 addition & 1 deletion src/Schematic.Client/Schematic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public Schematic(string apiKey = null, ClientOptions clientOptions = null)
{ "X-Schematic-Api-Key", apiKey },
{ "X-Fern-Language", "C#" },
{ "X-Fern-SDK-Name", "schematic_fern_api_sdk" },
{ "X-Fern-SDK-Version", "0.0.7" },
{ "X-Fern-SDK-Version", "0.0.8" },
},
clientOptions ?? new ClientOptions()
);
Expand Down

0 comments on commit e5a8879

Please sign in to comment.