-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDarkLoop.Azure.Functions.Authorization.Abstractions.csproj
More file actions
60 lines (49 loc) · 2.4 KB
/
Copy pathDarkLoop.Azure.Functions.Authorization.Abstractions.csproj
File metadata and controls
60 lines (49 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>DarkLoop.Azure.Functions.Authorization.Abstractions</AssemblyName>
<RootNamespace>DarkLoop.Azure.Functions.Authorization</RootNamespace>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<Version>0.0.1-preview</Version>
<Description>DarkLoop's Azure Functions authorization extension shared core functionality for InProc and Isolated modules.</Description>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<Import Project="..\..\.build\release.props" Condition=" '$(Configuration)' == 'Release' " />
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="AsyncKeyedLock" Version="6.4.2" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Metadata" Version="3.0.3" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="DarkLoop.Azure.Functions.Authorization.InProcess" Key="$(PublicKey)" />
<InternalsVisibleTo Include="DarkLoop.Azure.Functions.Authorization.Isolated" Key="$(PublicKey)" />
<InternalsVisibleTo Include="Abstractions.Tests" Key="$(PublicKey)" />
<InternalsVisibleTo Include="Isolated.Tests" Key="$(PublicKey)" />
<InternalsVisibleTo Include="InProc.Tests" Key="$(PublicKey)" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Messages.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Messages.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Messages.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>