Skip to content

Commit 0cace90

Browse files
committed
🚧 prepare for 2.0.14 release
1 parent 1a9c757 commit 0cace90

File tree

9 files changed

+746
-392
lines changed

9 files changed

+746
-392
lines changed

STATUS.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ APACHE LOG4NET PROJECT STATUS
44
Project Status
55
==============
66

7-
Apache log4net is a dormant sub project of the Apache Logging Services project.
7+
Apache log4net is a sub project of the Apache Logging Services project.
88
Apache log4net graduated from the Apache Incubator in February 2007.
99

1010

@@ -21,7 +21,7 @@ Mailing Lists:
2121

2222
Active Committers
2323
=================
24-
None
24+
* Davyd McColl (davydm)
2525

2626
Former Committers
2727
================

doc/BUILDING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ Options:
1414
- include desktop targets at least
1515
- include dotnet core targets or download and install
1616
the latest dotnet sdk (you will need at least v2.1)
17+
- note that build is possible with VS2022 build tools, but I had to
18+
install VS2019 build tools _as well_ to get msbuild to recognise
19+
the legacy net35-profile target
1720
- Ensure you have .NET Framework 3.5 SP1 installed
1821
- on Win10+, this can only be installed via Add/Remove Windows Components
1922
- on other platforms, see https://dotnet.microsoft.com/download/dotnet-framework/net35-sp1

install-net-framework-sdk-3.5.ps1

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
1-
Write-Host "Downloading dotnetfx35.exe"
2-
Invoke-WebRequest -Uri "https://download.microsoft.com/download/2/0/E/20E90413-712F-438C-988E-FDAA79A8AC3D/dotnetfx35.exe" -OutFile dotnetfx35.exe
1+
if (-not (Test-Path dotnetfx35.exe)) {
2+
Write-Host "Downloading dotnetfx35.exe"
3+
Invoke-WebRequest -Uri "https://download.microsoft.com/download/2/0/E/20E90413-712F-438C-988E-FDAA79A8AC3D/dotnetfx35.exe" -OutFile dotnetfx35.exe
4+
}
5+
36
Write-Host "Running dotnetfx35.exe"
4-
Start-Process -FilePath dotnetfx35.exe -ArgumentList "/wait","/passive" -Wait
5-
Write-Host "dotnetfx35 installed"
7+
$process = Start-Process -FilePath dotnetfx35.exe -ArgumentList "/wait","/passive" -Wait -PassThru
8+
if ($process.ExitCode -eq 0) {
9+
Write-Host "dotnetfx35 installed"
10+
} else {
11+
Write-Host "dotnetfx35 installer returned exit code ${process.ExitCode}"
12+
}
13+
14+
if (-not (Test-Path dotnetfx35client.exe)) {
15+
Write-host "Downloading dotnetfx35client.exe"
16+
Invoke-WebRequest -Uri "https://download.microsoft.com/download/c/d/c/cdc0f321-4f72-4a08-9bac-082f3692ecd9/DotNetFx35Client.exe" -OutFile dotnetfx35client.exe
17+
}
618

19+
Write-Host "Running dotnetfx35client.exe"
20+
$process = Start-Process -FilePath dotnetfx35client.exe -ArgumentList "/quiet","/passive" -Wait -PassThru
21+
if ($process.ExitCode -eq 0) {
22+
Write-Host "dotnetfx35client installed"
23+
} else {
24+
Write-Host "dotnetfx35client installer returned exit code ${process.ExitCode}"
25+
}

0 commit comments

Comments
 (0)