-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAltinn.Common.PEP.csproj
More file actions
52 lines (45 loc) · 1.96 KB
/
Altinn.Common.PEP.csproj
File metadata and controls
52 lines (45 loc) · 1.96 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<!-- SonarCloud needs this -->
<ProjectGuid>{92f10f90-79c5-459f-8238-0ec4d02aa93c}</ProjectGuid>
<IsPackable>true</IsPackable>
<!-- NuGet package properties -->
<PackageId>Altinn.Common.PEP</PackageId>
<Version>4.1.2</Version>
<PackageTags>Altinn;Studio;Authorization;Policy;Enforcement;Point</PackageTags>
<Description>
Policy Enforcement Point for Attribute-based authorization using Altinn.Authorization.ABAC in ASP.Net apps.
See our repository for the full documentation.
</Description>
<PackageReleaseNotes>
</PackageReleaseNotes>
<Authors>Altinn Platform Contributors</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.2.39" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Altinn.Authorization.ABAC" Version="0.1.1" />
<!-- More about this dependency in issue #5706 -->
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.36" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='Debug'">
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<AdditionalFiles Include="..\..\..\stylecop.json">
<Link>stylecop.json</Link>
</AdditionalFiles>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<CodeAnalysisRuleSet>..\..\..\Altinn3.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
</Project>