This commit is contained in:
Eugene Tolmachev 2024-05-30 15:20:49 -04:00 коммит произвёл Eugene Tolmachev
Родитель 1fbe91fc02
Коммит 3571dfeec7
9 изменённых файлов: 11 добавлений и 5 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -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 _ ->