Skip to content

Commit 0f9044a

Browse files
committed
Merge branch 'release/0.0.5'
2 parents f6412ad + 090cc3e commit 0f9044a

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## Introduction
66

7-
SQLDocs is a cross-platform console application build with [.NET 8](https://dotnet.microsoft.com/) to create nice looking [MkDocs](https://www.mkdocs.org/) schema documentations for relational databases. Currently the following database systems are supported:
7+
SQLDocs is a cross-platform console application build with [.NET 9](https://dotnet.microsoft.com/) to create nice looking [MkDocs](https://www.mkdocs.org/) schema documentations for relational databases. Currently the following database systems are supported:
88

99
+ [Firebird](https://firebirdsql.org/)
1010
+ [PostgreSQL](https://www.postgresql.org/)

azure-pipelines.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,12 @@ steps:
1616
secureFile: ClientCert.p12
1717
- task: SSMClientToolsSetup@1
1818
displayName: 'Setup DigiCert Tools'
19+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
1920
inputs:
2021
APIKey: '$(SM_API_KEY)'
2122
- task: PowerShell@2
2223
displayName: 'Prepare DigiCert Code Signing'
24+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
2325
inputs:
2426
targetType: 'inline'
2527
script: |
@@ -34,7 +36,7 @@ steps:
3436
filePath: 'azure-gitversion.ps1'
3537
failOnStderr: true
3638
pwsh: true
37-
- task: Assembly-Info-NetCore@2
39+
- task: Assembly-Info-NetCore@3
3840
displayName: 'Apply Assembly Infos'
3941
inputs:
4042
Path: '$(Build.SourcesDirectory)'
@@ -83,8 +85,10 @@ steps:
8385
modifyOutputPath: false
8486
- task: PowerShell@2
8587
displayName: 'Sign EXE files'
88+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
8689
env:
8790
SM_CLIENT_CERT_FILE : $(SM_CLIENT_CERT_FILE.secureFilePath)
91+
SM_HOST : $(SM_HOST)
8892
inputs:
8993
targetType: 'inline'
9094
script: |
@@ -116,8 +120,10 @@ steps:
116120
replaceExistingArchive: true
117121
- task: PowerShell@2
118122
displayName: 'Sign MSI files'
123+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
119124
env:
120125
SM_CLIENT_CERT_FILE : $(SM_CLIENT_CERT_FILE.secureFilePath)
126+
SM_HOST : $(SM_HOST)
121127
inputs:
122128
targetType: 'inline'
123129
script: |

setup/SqlDocs.Setup.wixproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="WixToolset.Sdk/4.0.0">
1+
<Project Sdk="WixToolset.Sdk/5.0.0">
22
<PropertyGroup>
33
<OutputName>sqldocs-$(Platform)</OutputName>
44
<OutputType>Package</OutputType>
@@ -19,7 +19,7 @@
1919
<Cultures>;</Cultures>
2020
</PropertyGroup>
2121
<ItemGroup>
22-
<PackageReference Include="WixToolset.Netfx.wixext" Version="4.0.1" />
23-
<PackageReference Include="WixToolset.UI.wixext" Version="4.0.1" />
22+
<PackageReference Include="WixToolset.Netfx.wixext" Version="5.0.2" />
23+
<PackageReference Include="WixToolset.UI.wixext" Version="5.0.2" />
2424
</ItemGroup>
2525
</Project>

src/SqlDocs.App.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@
44
<AssemblyName>SqlDocs</AssemblyName>
55
<OutputType>Exe</OutputType>
66
<ApplicationIcon>Program.ico</ApplicationIcon>
7-
<TargetFramework>net8.0</TargetFramework>
7+
<TargetFramework>net9.0</TargetFramework>
88
<Authors>STÜBER SYSTEMS GmbH</Authors>
99
<Company>STÜBER SYSTEMS GmbH</Company>
10-
<Copyright2023 STÜBER SYSTEMS GmbH</Copyright>
10+
<Copyright2025 STÜBER SYSTEMS GmbH</Copyright>
1111
<Product>SQLDocs</Product>
1212
<Title>SQLDocs</Title>
1313
<Description>Building nice looking documention of relational database schemata</Description>
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="Enbrea.Konsoli" Version="0.0.2" />
17+
<PackageReference Include="Enbrea.Konsoli" Version="0.1.1" />
1818
<PackageReference Include="Enbrea.MdBuilder" Version="0.0.3" />
19-
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="10.0.0" />
19+
<PackageReference Include="FirebirdSql.Data.FirebirdClient" Version="10.3.2" />
2020
<PackageReference Include="NGettext" Version="0.6.7" />
21-
<PackageReference Include="Npgsql" Version="8.0.0" />
21+
<PackageReference Include="Npgsql" Version="9.0.3" />
2222
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
2323
</ItemGroup>
2424

0 commit comments

Comments
 (0)