Skip to content

Commit

Permalink
Use latest Facility packages.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddunkin committed Oct 16, 2023
1 parent bee5c63 commit f1f8535
Show file tree
Hide file tree
Showing 16 changed files with 67 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>

<PropertyGroup>
<VersionPrefix>0.5.0</VersionPrefix>
<VersionPrefix>0.6.0</VersionPrefix>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.6.0

* Use latest Facility.

## 0.5.0

* Use latest Facility.
6 changes: 3 additions & 3 deletions dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
"isRoot": true,
"tools": {
"fsdgencsharp": {
"version": "2.14.5",
"version": "2.22.0",
"commands": [
"fsdgencsharp"
]
},
"fsdgenmd": {
"version": "2.4.2",
"version": "2.8.0",
"commands": [
"fsdgenmd"
]
},
"fsdgenjs": {
"version": "2.4.0",
"version": "2.9.0",
"commands": [
"fsdgenjs"
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Facility.CodeGen.AspNet" Version="3.3.3" />
<PackageReference Include="Facility.CodeGen.CSharp" Version="2.14.5" />
<PackageReference Include="Facility.CodeGen.JavaScript" Version="2.4.0" />
<PackageReference Include="Facility.CodeGen.Markdown" Version="2.4.2" />
<PackageReference Include="Facility.CodeGen.AspNet" Version="3.6.0" />
<PackageReference Include="Facility.CodeGen.CSharp" Version="2.22.0" />
<PackageReference Include="Facility.CodeGen.JavaScript" Version="2.9.0" />
<PackageReference Include="Facility.CodeGen.Markdown" Version="2.8.0" />
<PackageReference Include="Facility.Definition" Version="2.11.0" />
<PackageReference Include="Facility.Definition.Swagger" Version="2.2.0" />
<PackageReference Include="Facility.Definition.Swagger" Version="2.5.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Facility.AspNetCore" Version="3.3.3" />
<PackageReference Include="Facility.AspNetCore" Version="3.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Facility.GeneratorApi/Facility.GeneratorApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Facility.Core" Version="2.14.5" />
<PackageReference Include="Facility.Core" Version="2.22.0" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions src/Facility.GeneratorApi/FailureDto.g.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Facility.GeneratorApi/GenerateRequestDto.g.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Facility.GeneratorApi/GenerateResponseDto.g.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Facility.GeneratorApi/GeneratorDto.g.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Facility.GeneratorApi/GetApiInfoRequestDto.g.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Facility.GeneratorApi/GetApiInfoResponseDto.g.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Facility.GeneratorApi/NamedTextDto.g.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 33 additions & 2 deletions ts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "facility-generator-api",
"version": "0.5.0",
"version": "0.6.0",
"description": "A web API client for generating code from Facility Service Definitions.",
"scripts": {
"build": "tsc",
Expand Down
8 changes: 4 additions & 4 deletions ts/src/facilityGeneratorApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class FacilityGeneratorApiHttpClient implements IFacilityGeneratorApi {
.then(result => {
const status = result.response.status;
let value: IGetApiInfoResponse | null = null;
if (result.json) {
if (status === 200) {
if (status === 200) {
if (result.json) {
value = result.json as IGetApiInfoResponse | null;
}
}
Expand All @@ -62,8 +62,8 @@ class FacilityGeneratorApiHttpClient implements IFacilityGeneratorApi {
.then(result => {
const status = result.response.status;
let value: IGenerateResponse | null = null;
if (result.json) {
if (status === 200) {
if (status === 200) {
if (result.json) {
value = result.json as IGenerateResponse | null;
}
}
Expand Down

0 comments on commit f1f8535

Please sign in to comment.