Skip to content

Commit 57e2ef0

Browse files
committed
Merge branch 'develop'
2 parents 2946006 + 70fded8 commit 57e2ef0

File tree

22 files changed

+167
-133
lines changed

22 files changed

+167
-133
lines changed

.psscripts/build-functions.ps1

Lines changed: 54 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@ function Test-IsWindows
1515
[environment]::OSVersion.Platform -ne "Unix"
1616
}
1717

18+
function Test-IsMonoInstalled
19+
{
20+
<#
21+
.DESCRIPTION
22+
Checks to see whether the current environment has the Mono framework installed.
23+
24+
.EXAMPLE
25+
if (Test-IsMonoInstalled) { Write-Host "Mono is available." }
26+
#>
27+
28+
$result = Invoke-Cmd "mono --version" -Silent
29+
return $result.StartsWith("Mono JIT compiler version")
30+
}
31+
1832
function Get-UbuntuVersion
1933
{
2034
<#
@@ -25,11 +39,13 @@ function Get-UbuntuVersion
2539
$ubuntuVersion = Get-UbuntuVersion
2640
#>
2741

28-
$version = Invoke-Cmd "lsb_release -r -s"
42+
$version = Invoke-Cmd "lsb_release -r -s" -Silent
2943
return $version
3044
}
3145

32-
function Invoke-UnsafeCmd ($cmd)
46+
function Invoke-UnsafeCmd (
47+
[string] $Cmd,
48+
[switch] $Silent)
3349
{
3450
<#
3551
.DESCRIPTION
@@ -45,12 +61,14 @@ function Invoke-UnsafeCmd ($cmd)
4561
Use this PowerShell command to execute any CLI commands which might not exit with 0 on a success.
4662
#>
4763

48-
Write-Host $cmd -ForegroundColor DarkCyan
64+
if (!($Silent.IsPresent)) { Write-Host $cmd -ForegroundColor DarkCyan }
4965
if (Test-IsWindows) { $cmd = "cmd.exe /C $cmd" }
5066
Invoke-Expression -Command $cmd
5167
}
5268

53-
function Invoke-Cmd ($Cmd)
69+
function Invoke-Cmd (
70+
[string] $Cmd,
71+
[switch] $Silent)
5472
{
5573
<#
5674
.DESCRIPTION
@@ -66,7 +84,7 @@ function Invoke-Cmd ($Cmd)
6684
Use this PowerShell command to execute any dotnet CLI commands in order to ensure that they behave the same way in the case of an error across different environments (Windows, OSX and Linux).
6785
#>
6886

69-
Invoke-UnsafeCmd $cmd
87+
if ($Silent.IsPresent) { Invoke-UnsafeCmd $cmd -Silent } else { Invoke-UnsafeCmd $cmd }
7088
if ($LastExitCode -ne 0) { Write-Error "An error occured when executing '$Cmd'."; return }
7189
}
7290

@@ -131,30 +149,6 @@ function Test-CompareVersions ($version, [string]$gitTag)
131149
# .NET Core functions
132150
# ----------------------------------------------
133151

134-
function dotnet-info { Invoke-Cmd "dotnet --info" }
135-
function dotnet-version { Invoke-Cmd "dotnet --version" }
136-
function dotnet-restore ($project, $argv) { Invoke-Cmd "dotnet restore $project $argv" }
137-
function dotnet-build ($project, $argv) { Invoke-Cmd "dotnet build $project $argv" }
138-
function dotnet-run ($project, $argv) { Invoke-Cmd "dotnet run --project $project $argv" }
139-
function dotnet-pack ($project, $argv) { Invoke-Cmd "dotnet pack $project $argv" }
140-
function dotnet-publish ($project, $argv) { Invoke-Cmd "dotnet publish $project $argv" }
141-
142-
function Get-DotNetRuntimeVersion
143-
{
144-
<#
145-
.DESCRIPTION
146-
Runs the dotnet --info command and extracts the .NET Core Runtime version number.
147-
148-
.NOTES
149-
The .NET Core Runtime version can sometimes be useful for other dotnet CLI commands (e.g. dotnet xunit -fxversion ".NET Core Runtime version").
150-
#>
151-
152-
$info = dotnet-info
153-
[System.Array]::Reverse($info)
154-
$version = $info | Where-Object { $_.Contains("Version") } | Select-Object -First 1
155-
$version.Split(":")[1].Trim()
156-
}
157-
158152
function Get-TargetFrameworks ($projFile)
159153
{
160154
<#
@@ -198,20 +192,43 @@ function Get-NetCoreTargetFramework ($projFile)
198192
Get-TargetFrameworks $projFile | Where-Object { $_ -like "netstandard*" -or $_ -like "netcoreapp*" }
199193
}
200194

201-
function dotnet-test ($project, $argv)
195+
function Invoke-DotNetCli ($cmd, $proj, $argv)
202196
{
203197
# Currently dotnet test does not work for net461 on Linux/Mac
204198
# See: https://github.com/Microsoft/vstest/issues/1318
205-
#
206-
# Previously dotnet-xunit was a working alternative, however
207-
# after issues with the maintenance of dotnet xunit it has been
208-
# discontinued since xunit 2.4: https://xunit.github.io/releases/2.4
209-
if(!(Test-IsWindows))
199+
200+
if((!(Test-IsWindows) -and !(Test-IsMonoInstalled)) `
201+
-or (!(Test-IsWindows) -and ($cmd -eq "test")))
210202
{
211-
$fw = Get-NetCoreTargetFramework $project;
203+
$fw = Get-NetCoreTargetFramework($proj)
212204
$argv = "-f $fw " + $argv
213205
}
214-
Invoke-Cmd "dotnet test $project $argv"
206+
Invoke-Cmd "dotnet $cmd $proj $argv"
207+
}
208+
209+
function dotnet-info { Invoke-Cmd "dotnet --info" -Silent }
210+
function dotnet-version { Invoke-Cmd "dotnet --version" -Silent }
211+
function dotnet-restore ($project, $argv) { Invoke-Cmd "dotnet restore $project $argv" }
212+
function dotnet-build ($project, $argv) { Invoke-DotNetCli -Cmd "build" -Proj $project -Argv $argv }
213+
function dotnet-test ($project, $argv) { Invoke-DotNetCli -Cmd "test" -Proj $project -Argv $argv }
214+
function dotnet-run ($project, $argv) { Invoke-Cmd "dotnet run --project $project $argv" }
215+
function dotnet-pack ($project, $argv) { Invoke-Cmd "dotnet pack $project $argv" }
216+
function dotnet-publish ($project, $argv) { Invoke-Cmd "dotnet publish $project $argv" }
217+
218+
function Get-DotNetRuntimeVersion
219+
{
220+
<#
221+
.DESCRIPTION
222+
Runs the dotnet --info command and extracts the .NET Core Runtime version number.
223+
224+
.NOTES
225+
The .NET Core Runtime version can sometimes be useful for other dotnet CLI commands (e.g. dotnet xunit -fxversion ".NET Core Runtime version").
226+
#>
227+
228+
$info = dotnet-info
229+
[System.Array]::Reverse($info)
230+
$version = $info | Where-Object { $_.Contains("Version") } | Select-Object -First 1
231+
$version.Split(":")[1].Trim()
215232
}
216233

217234
function Write-DotnetCoreVersions

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Release Notes
22
=============
33

4+
## 0.20.0
5+
6+
- Added shebang and fixed shellcheck warnings
7+
- Updated Giraffe to version 3.4.x
8+
- Updated TestHost to version 2.1.x for test projects
9+
410
## 0.19.0
511

612
- Updated Giraffe to version 3.2.x

build.ps1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,11 @@ if ($UpdatePaketDependencies.IsPresent -or $TestPermutations.IsPresent -or $Crea
8989
Write-Host "Uninstalling existing Giraffe template..." -ForegroundColor Magenta
9090
$giraffeInstallation = Invoke-UnsafeCmd "dotnet new giraffe --list"
9191
$giraffeInstallation
92-
if ($giraffeInstallation.Length -lt 6) { Invoke-Cmd "dotnet new -u giraffe-template" }
92+
if ($giraffeInstallation[$giraffeInstallation.Length - 2].StartsWith("Giraffe Web App"))
93+
{
94+
Invoke-Cmd "dotnet new -u giraffe-template"
95+
}
96+
# if ($giraffeInstallation.Length -lt 6) { Invoke-Cmd "dotnet new -u giraffe-template" }
9397

9498
$nupkg = Get-ChildItem "./giraffe-template.$version.nupkg"
9599
$nupkgPath = $nupkg.FullName

build.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
export FrameworkPathOverride=$(dirname $(which mono))/../lib/mono/4.5/
2-
pwsh ./build.ps1
1+
#!/bin/sh
2+
FrameworkPathOverride=$(dirname "$(which mono)")/../lib/mono/4.5/
3+
export FrameworkPathOverride
4+
pwsh ./build.ps1

src/content/DotLiquid/paket.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NUGET
33
remote: https://api.nuget.org/v3/index.json
44
DotLiquid (2.0.298) - restriction: || (>= net461) (>= netstandard2.0)
55
FSharp.Core (4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
6-
Giraffe (3.2)
6+
Giraffe (3.4)
77
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
88
Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
99
Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
@@ -892,7 +892,7 @@ NUGET
892892
Microsoft.Win32.Registry (4.5) - restriction: >= netcoreapp1.0
893893
System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
894894
System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
895-
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1) (< netstandard2.0)) (>= netcoreapp1.0)
895+
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1)) (>= netcoreapp1.0)
896896
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8)
897897
Newtonsoft.Json (11.0.2) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0) (>= uap10.0)
898898
Newtonsoft.Json.Bson (1.0.1) - restriction: >= netcoreapp2.1
@@ -1576,23 +1576,23 @@ NUGET
15761576
System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
15771577
System.Threading.Tasks.Extensions (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
15781578
System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
1579-
xunit (2.4)
1579+
xunit (2.4.1)
15801580
xunit.analyzers (>= 0.10)
1581-
xunit.assert (2.4)
1582-
xunit.core (2.4)
1581+
xunit.assert (2.4.1)
1582+
xunit.core (2.4.1)
15831583
xunit.abstractions (2.0.3) - restriction: >= netstandard1.1
15841584
NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) (< netstandard2.0)
15851585
xunit.analyzers (0.10)
1586-
xunit.assert (2.4)
1587-
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) (< netstandard2.0)
1588-
xunit.core (2.4)
1589-
xunit.extensibility.core (2.4)
1590-
xunit.extensibility.execution (2.4)
1591-
xunit.extensibility.core (2.4)
1592-
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) (< netstandard2.0)
1593-
xunit.abstractions (>= 2.0.2) - restriction: >= netstandard1.1
1594-
xunit.extensibility.execution (2.4)
1595-
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) (< netstandard2.0)
1596-
xunit.extensibility.core (2.4) - restriction: >= netstandard1.1
1597-
xunit.runner.visualstudio (2.4)
1586+
xunit.assert (2.4.1)
1587+
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
1588+
xunit.core (2.4.1)
1589+
xunit.extensibility.core (2.4.1)
1590+
xunit.extensibility.execution (2.4.1)
1591+
xunit.extensibility.core (2.4.1)
1592+
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
1593+
xunit.abstractions (>= 2.0.3) - restriction: >= netstandard1.1
1594+
xunit.extensibility.execution (2.4.1)
1595+
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
1596+
xunit.extensibility.core (2.4.1) - restriction: >= netstandard1.1
1597+
xunit.runner.visualstudio (2.4.1)
15981598
Microsoft.NET.Test.Sdk (>= 15.0) - restriction: >= netcoreapp1.0

src/content/DotLiquid/src/AppNamePlaceholder/AppNamePlaceholder.fsproj

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

1111
<ItemGroup Condition="'$(UsePaket)' == false OR '$(UsePaket)' == ''">
1212
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.*" />
13-
<PackageReference Include="Giraffe" Version="3.2.*" />
13+
<PackageReference Include="Giraffe" Version="3.4.*" />
1414
<PackageReference Include="Giraffe.DotLiquid" Version="1.2.*" />
1515
<PackageReference Include="TaskBuilder.fs" Version="2.1.*" />
1616
</ItemGroup>

src/content/DotLiquid/src/AppNamePlaceholder/Program.fs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let webApp =
3434
// ---------------------------------
3535

3636
let errorHandler (ex : Exception) (logger : ILogger) =
37-
logger.LogError(EventId(), ex, "An unhandled exception has occurred while executing the request.")
37+
logger.LogError(ex, "An unhandled exception has occurred while executing the request.")
3838
clearResponse >=> setStatusCode 500 >=> text ex.Message
3939

4040
// ---------------------------------
@@ -62,8 +62,9 @@ let configureServices (services : IServiceCollection) =
6262
services.AddGiraffe() |> ignore
6363

6464
let configureLogging (builder : ILoggingBuilder) =
65-
let filter (l : LogLevel) = l.Equals LogLevel.Error
66-
builder.AddFilter(filter).AddConsole().AddDebug() |> ignore
65+
builder.AddFilter(fun l -> l.Equals LogLevel.Error)
66+
.AddConsole()
67+
.AddDebug() |> ignore
6768

6869
[<EntryPoint>]
6970
let main _ =

src/content/DotLiquid/tests/AppNamePlaceholder.Tests/AppNamePlaceholder.Tests.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
</PropertyGroup>
55

66
<ItemGroup Condition="'$(UsePaket)' == false OR '$(UsePaket)' == ''">
7-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.*" />
7+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.*" />
88
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.*" />
9-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.0.*" />
9+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="2.1.*" />
1010
<PackageReference Include="xunit" Version="2.4.*" />
1111
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.*" />
1212
</ItemGroup>

src/content/Giraffe/paket.lock

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ STORAGE: NONE
22
NUGET
33
remote: https://api.nuget.org/v3/index.json
44
FSharp.Core (4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
5-
Giraffe (3.2)
5+
Giraffe (3.4)
66
FSharp.Core (>= 4.5.2) - restriction: || (>= net461) (>= netstandard2.0)
77
Microsoft.AspNetCore.Authentication (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
88
Microsoft.AspNetCore.Authorization (>= 2.1.2) - restriction: || (>= net461) (>= netstandard2.0)
@@ -884,7 +884,7 @@ NUGET
884884
Microsoft.Win32.Registry (4.5) - restriction: >= netcoreapp1.0
885885
System.Security.AccessControl (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
886886
System.Security.Principal.Windows (>= 4.5) - restriction: || (&& (>= monoandroid) (< netstandard2.0)) (>= monotouch) (&& (< net46) (>= netstandard2.0)) (>= net461) (>= netcoreapp2.0) (>= xamarinios) (>= xamarinmac) (>= xamarintvos) (>= xamarinwatchos)
887-
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1) (< netstandard2.0)) (>= netcoreapp1.0)
887+
NETStandard.Library (2.0.3) - restriction: || (&& (< net35) (>= netstandard1.1) (< netstandard2.0)) (&& (< net45) (>= net461) (>= netstandard1.6)) (&& (< net45) (>= netstandard2.0)) (&& (< net452) (>= netstandard1.1)) (>= netcoreapp1.0)
888888
Microsoft.NETCore.Platforms (>= 1.1) - restriction: || (&& (>= net45) (< netstandard1.3)) (&& (< net45) (>= netstandard1.1) (< netstandard1.2) (< win8)) (&& (< net45) (>= netstandard1.2) (< netstandard1.3) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.3) (< netstandard1.4) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.4) (< netstandard1.5) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.5) (< netstandard1.6) (< win8) (< wpa81)) (&& (< net45) (>= netstandard1.6) (< netstandard2.0) (< win8) (< wpa81)) (&& (< net45) (>= netstandard2.0)) (&& (>= net46) (< netstandard1.4)) (>= net461) (>= netcoreapp2.0) (&& (>= netstandard1.0) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8) (< win8)) (&& (< netstandard1.0) (< portable-net45+win8) (>= portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= portable-net45+win8+wp8+wpa81) (< portable-net45+win8+wpa81)) (&& (< netstandard1.0) (>= win8)) (&& (< netstandard1.3) (< win8) (>= wpa81)) (&& (< netstandard1.5) (>= uap10.0)) (>= uap10.1) (>= wp8)
889889
Newtonsoft.Json (11.0.2) - restriction: || (>= net461) (>= netcoreapp1.0) (>= netstandard2.0) (>= uap10.0)
890890
Newtonsoft.Json.Bson (1.0.1) - restriction: >= netcoreapp2.1
@@ -1568,23 +1568,23 @@ NUGET
15681568
System.Reflection.Emit.Lightweight (>= 4.3) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
15691569
System.Threading.Tasks.Extensions (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
15701570
System.ValueTuple (>= 4.4) - restriction: || (&& (>= net45) (< netstandard2.0)) (&& (< net45) (>= netstandard2.0)) (>= net47)
1571-
xunit (2.4)
1571+
xunit (2.4.1)
15721572
xunit.analyzers (>= 0.10)
1573-
xunit.assert (2.4)
1574-
xunit.core (2.4)
1573+
xunit.assert (2.4.1)
1574+
xunit.core (2.4.1)
15751575
xunit.abstractions (2.0.3) - restriction: >= netstandard1.1
15761576
NETStandard.Library (>= 1.6) - restriction: && (< net35) (>= netstandard1.0) (< netstandard2.0)
15771577
xunit.analyzers (0.10)
1578-
xunit.assert (2.4)
1579-
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) (< netstandard2.0)
1580-
xunit.core (2.4)
1581-
xunit.extensibility.core (2.4)
1582-
xunit.extensibility.execution (2.4)
1583-
xunit.extensibility.core (2.4)
1584-
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) (< netstandard2.0)
1585-
xunit.abstractions (>= 2.0.2) - restriction: >= netstandard1.1
1586-
xunit.extensibility.execution (2.4)
1587-
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1) (< netstandard2.0)
1588-
xunit.extensibility.core (2.4) - restriction: >= netstandard1.1
1589-
xunit.runner.visualstudio (2.4)
1578+
xunit.assert (2.4.1)
1579+
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
1580+
xunit.core (2.4.1)
1581+
xunit.extensibility.core (2.4.1)
1582+
xunit.extensibility.execution (2.4.1)
1583+
xunit.extensibility.core (2.4.1)
1584+
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
1585+
xunit.abstractions (>= 2.0.3) - restriction: >= netstandard1.1
1586+
xunit.extensibility.execution (2.4.1)
1587+
NETStandard.Library (>= 1.6.1) - restriction: && (< net452) (>= netstandard1.1)
1588+
xunit.extensibility.core (2.4.1) - restriction: >= netstandard1.1
1589+
xunit.runner.visualstudio (2.4.1)
15901590
Microsoft.NET.Test.Sdk (>= 15.0) - restriction: >= netcoreapp1.0

src/content/Giraffe/src/AppNamePlaceholder/AppNamePlaceholder.fsproj

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

1111
<ItemGroup Condition="'$(UsePaket)' == false OR '$(UsePaket)' == ''">
1212
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.*" />
13-
<PackageReference Include="Giraffe" Version="3.2.*" />
13+
<PackageReference Include="Giraffe" Version="3.4.*" />
1414
<PackageReference Include="TaskBuilder.fs" Version="2.1.*" />
1515
</ItemGroup>
1616

0 commit comments

Comments
 (0)