зеркало из https://github.com/Azure/AAD.fs.git
reintroduce net6.0 target
This commit is contained in:
Родитель
1fbe91fc02
Коммит
3571dfeec7
|
@ -14,4 +14,5 @@ packages/
|
|||
output/
|
||||
tmp/
|
||||
*.user
|
||||
.env.local
|
||||
Directory.Build.props
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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">
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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 _ ->
|
||||
|
|
Загрузка…
Ссылка в новой задаче