|
9 | 9 | # Set Strict Mode |
10 | 10 | Set-StrictMode -Version Latest |
11 | 11 |
|
12 | | -#region Module Variables |
13 | | -$script:DOTNET_VERSION = '9.0' |
14 | | -$script:LICENSE_TEMPLATE = Join-Path $PSScriptRoot "LICENSE.template" |
15 | | - |
16 | | -# Set PowerShell preferences |
17 | | -$ErrorActionPreference = 'Stop' |
18 | | -$WarningPreference = 'Stop' |
19 | | -$InformationPreference = 'Continue' |
20 | | -$DebugPreference = 'Ignore' |
21 | | -$VerbosePreference = 'Ignore' |
22 | | -$ProgressPreference = 'Ignore' |
23 | | - |
24 | | -# Get the line ending for the current system |
25 | | -$script:lineEnding = Get-GitLineEnding |
26 | | -#endregion |
27 | | - |
28 | 12 | #region Environment and Configuration |
29 | 13 |
|
30 | 14 | function Initialize-BuildEnvironment { |
@@ -1944,3 +1928,19 @@ Export-ModuleMember -Function Assert-LastExitCode, |
1944 | 1928 | Export-ModuleMember -Function Invoke-BuildWorkflow, |
1945 | 1929 | Invoke-ReleaseWorkflow, |
1946 | 1930 | Invoke-CIPipeline |
| 1931 | + |
| 1932 | +#region Module Variables |
| 1933 | +$script:DOTNET_VERSION = '9.0' |
| 1934 | +$script:LICENSE_TEMPLATE = Join-Path $PSScriptRoot "LICENSE.template" |
| 1935 | + |
| 1936 | +# Set PowerShell preferences |
| 1937 | +$ErrorActionPreference = 'Stop' |
| 1938 | +$WarningPreference = 'Stop' |
| 1939 | +$InformationPreference = 'Continue' |
| 1940 | +$DebugPreference = 'Ignore' |
| 1941 | +$VerbosePreference = 'Ignore' |
| 1942 | +$ProgressPreference = 'Ignore' |
| 1943 | + |
| 1944 | +# Get the line ending for the current system |
| 1945 | +$script:lineEnding = Get-GitLineEnding |
| 1946 | +#endregion |
0 commit comments