Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
824f048
Initial cut
marcschier Aug 31, 2025
ba13a02
Merge branch 'master' of https://github.com/OPCFoundation/UA-.NETStan…
marcschier Sep 9, 2025
419b9f0
Fix build
marcschier Sep 9, 2025
a32ab94
Loggers
marcschier Sep 9, 2025
bc5558f
Update
marcschier Sep 12, 2025
7f921eb
Update
marcschier Sep 14, 2025
3f4c94d
Update
marcschier Sep 14, 2025
c66c71b
Merge
marcschier Sep 14, 2025
5a8f42a
Update
marcschier Sep 15, 2025
3d67aae
Tests passing
marcschier Sep 15, 2025
c33bca3
Update
marcschier Sep 15, 2025
7bcfba8
Update
marcschier Sep 16, 2025
226d6ea
Updates
marcschier Sep 16, 2025
6fba3a4
Update
marcschier Sep 17, 2025
14c8a37
Updates
marcschier Sep 20, 2025
9885bc5
UPdates
marcschier Sep 21, 2025
2b1ef8e
Ambient
marcschier Sep 21, 2025
8ea1de0
Merge branch 'master' of https://github.com/OPCFoundation/UA-.NETStan…
marcschier Sep 21, 2025
4349da3
Updates
marcschier Sep 22, 2025
15b7387
Rename
marcschier Sep 22, 2025
dec2afb
Merge and update
marcschier Sep 22, 2025
e6ce749
Update
marcschier Sep 22, 2025
1b6d56e
Update
marcschier Sep 22, 2025
9c07da7
Update
marcschier Sep 22, 2025
2b40403
Docs and obsoleteion
marcschier Sep 22, 2025
f86fccc
Update
marcschier Sep 22, 2025
77435d3
Merge branch 'master' of https://github.com/OPCFoundation/UA-.NETStan…
marcschier Sep 22, 2025
1d8365e
Docs etc
marcschier Sep 22, 2025
88d7dee
Apply roslynator fixes
marcschier Sep 22, 2025
16a879e
Fix
marcschier Sep 23, 2025
c3471e0
Merge
marcschier Sep 23, 2025
50c7b72
Remove unused script
marcschier Sep 23, 2025
678a8b5
Remove global.json
marcschier Sep 23, 2025
6be9b1f
Update
marcschier Sep 23, 2025
e3a596f
Code review feedback
marcschier Sep 24, 2025
6e394e0
Additional documentation
marcschier Sep 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
32 changes: 0 additions & 32 deletions .azurepipelines/get-version.ps1

This file was deleted.

20 changes: 18 additions & 2 deletions .azurepipelines/set-version.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,23 @@
the rest of the build system.
#>

$version = & (Join-Path $PSScriptRoot "get-version.ps1")
# Try install tool
# Note: Keep Version 3.7.115, it is known working for 4 digit versioning
& dotnet @("tool", "install", "--tool-path", "./tools", "--version", "3.7.115", "--framework", "net80", "nbgv") 2>&1

$props = (& ./tools/nbgv @("get-version", "-f", "json")) | ConvertFrom-Json
if ($LastExitCode -ne 0) {
throw "Error: 'nbgv get-version -f json' failed with $($LastExitCode)."
}

$version = [pscustomobject] @{
Full = $props.CloudBuildAllVars.NBGV_Version
Pre = $props.CloudBuildAllVars.NBGV_PrereleaseVersion
Public = $props.CloudBuildAllVars.NBGV_PublicRelease
Nuget = $props.CloudBuildAllVars.NBGV_NuGetPackageVersion
Prefix = $props.CloudBuildAllVars.NBGV_SimpleVersion
Revision = $props.CloudBuildAllVars.NBGV_VersionRevision
}

# Call versioning for build
if ($version.Public -eq 'True')
Expand All @@ -20,7 +36,7 @@ else
}

if ($LastExitCode -ne 0) {
Write-Warning "Error: 'nbgv cloud -c -a' failed with $($LastExitCode)."
throw "Error: 'nbgv cloud -c -a' failed with $($LastExitCode)."
}

# Set build environment version numbers in pipeline context
Expand Down
Loading
Loading