Skip to content

Commit

Permalink
reintroduce net6.0 target
Browse files Browse the repository at this point in the history
  • Loading branch information
et1975 committed May 31, 2024
1 parent 1fbe91f commit 3571dfe
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ packages/
output/
tmp/
*.user
.env.local
Directory.Build.props
2 changes: 1 addition & 1 deletion AAD.Giraffe/AAD.Giraffe.fsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion AAD.Suave/AAD.Suave.fsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions AAD.Test/AAD.Test.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>79a3edd0-2092-40a2-a04d-dcb46d5ca9ed</UserSecretsId>
<NoWarn>3511</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="OpenIdConnectMetadata.json">
Expand Down
2 changes: 1 addition & 1 deletion AAD.fs.tasks/AAD.fs.tasks.fsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<DefineConstants>TASKS</DefineConstants>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion AAD.fs/AAD.fs.fsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions AAD.tasks.Test/AAD.tasks.Test.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>79a3edd0-2092-40a2-a04d-dcb46d5ca9ed</UserSecretsId>
<NoWarn>3511</NoWarn>
</PropertyGroup>
<ItemGroup>
<Content Include="../AAD.Test/OpenIdConnectMetadata.json">
Expand Down
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 6.1.0
* Reintroduce net6.0 target while keeping net8.0

### 6.0.0

* Breaking: Generalized certain abstractions to make token validation fully pluggable.
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Target.create "restore" (fun _ ->

Target.create "build" (fun _ ->
let args = sprintf "/p:Version=%s --no-restore" ver.AsString
DotNet.publish (fun a -> a.WithCommon (fun c -> { c with CustomParams = Some args})) "."
DotNet.build (fun a -> a.WithCommon (fun c -> { c with CustomParams = Some args})) "."
)

Target.create "test" (fun _ ->
Expand Down

0 comments on commit 3571dfe

Please sign in to comment.