Skip to content

Commit 66b197b

Browse files
Update sample apps and test project to netcoreapp3.0
1 parent ffc2dc5 commit 66b197b

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

sample/ChannelsSample/ChannelsSample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
<DebugType>portable</DebugType>
77
</PropertyGroup>
88
<ItemGroup>

sample/Controller.Sample/Controller.Sample.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let userController = controller {
2727
subController "/comments" commentController
2828

2929
plug [All] (setHttpHeader "user-controller-common" "123")
30-
plug [Index; Show] (setHttpHeader "user-controller-specialized" "123")
30+
plug [Show; Action.Index;] (setHttpHeader "user-controller-specialized" "123")
3131

3232
index (fun ctx -> "Index handler no version" |> Controller.text ctx)
3333
show (fun ctx id -> (sprintf "Show handler no version - %i" id) |> Controller.text ctx)

sample/Controller.Sample/Controller.Sample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
77
</PropertyGroup>
88
<ItemGroup>

sample/CsrfSample/CsrfSample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
<DebugType>portable</DebugType>
77
<PlatformTarget>x64</PlatformTarget>
88
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

sample/JWTSample/JWTSample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
77
</PropertyGroup>
88
<ItemGroup>

sample/Saturn.Sample/Saturn.Sample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
<DebugType>portable</DebugType>
77
<PlatformTarget>x64</PlatformTarget>
88
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

sample/TurbolinksSample/TurbolinksSample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
<DebugType>portable</DebugType>
77
</PropertyGroup>
88
<ItemGroup>

sample/WindowsAuthSample/WindowsAuthSample.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.0</TargetFramework>
5+
<TargetFramework>netcoreapp3.0</TargetFramework>
66
<DebugType>portable</DebugType>
77
</PropertyGroup>
88
<ItemGroup>

tests/Saturn.UnitTests/Saturn.UnitTests.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>netcoreapp2.1</TargetFramework>
4+
<TargetFramework>netcoreapp3.0</TargetFramework>
55
</PropertyGroup>
66
<ItemGroup>
77
<ProjectReference Include="..\..\src\Saturn\Saturn.fsproj">

0 commit comments

Comments
 (0)