-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAPI.Library.csproj
More file actions
130 lines (115 loc) · 6.21 KB
/
Copy pathAPI.Library.csproj
File metadata and controls
130 lines (115 loc) · 6.21 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU;x64</Platforms>
<TargetFramework>net8.0</TargetFramework>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<Configuration></Configuration>
<Company>Central Statistics Office, Ireland</Company>
<PackageId>API.Library</PackageId>
<Product>API Library</Product>
<Copyright>Central Statistics Office, Ireland</Copyright>
<Version>8.0.0</Version>
<Authors>Central Statistics Office, Ireland</Authors>
<SignAssembly>False</SignAssembly>
<RepositoryUrl>https://github.com/CSOIreland/Server-API-Library</RepositoryUrl>
<PackageReleaseNotes>
- [ENHANCEMENT] added support for entra SSO login
- [ENHANCEMENT] upgrade to .net8 log for JWKS success
- [ENHANCEMENT] packages updated to latest vesion
- [BUGFIX] moving response content length to correct if statement
- [BUG FIX] JSONRPC AND RESTFUL threw exceptions if ParseError used in certain scenarios
- [BUG FIX] removed unnecessary instantiation of EntraTokenAuthentication()
- [ENHANCEMENT] log4net updated to 3.1.0
- [ENHANCEMENT] cache external JWKS once recevied and fail back to cached copy if unable to get latest copy
- [ENHANCEMENT] added first business phone record from graph api
- [ENHANCEMENT] EnyimMemcachedCore updated to 3.4.0
- [ENHANCEMENT] update Console/ConsoleConfiguration.cs -> AddApiLibrary to allow for optional packages to be added at runtime
- [ENHANCEMENT] Added GetStatsDictionary to return a Dictionary of memcache stats
- [BUG FIX] memcache works with a DNS name
- [ENHANCEMENT] allow machine to machine authentication using entra SSO tokens
- [ENHANCEMENT] Added filename to byte[] streamed output
- [ENHANCEMENT] remove transaction on trace insert
- [ENHANCEMENT] dont log for OperationCanceledException
- [ENHANCEMENT] changing error logs to info logs for jsopnrpc exceptionns for malformed json
- [ENHANCEMENT] added attribute used for identity within the API when an external ENTRAID token that is a service account
- [BUG FIX] memcache fix for on startup when node is not available. Note: appsettings.json memcached times need to be low enough to allow app to startup in time
- [ENHANCEMENT] a white list of endpoints that can be access is now recorded
- [ENHANCEMENT] a list of assemblies for reflection can now be supplied otherwise all assemblies have to be iterated through
- [ENHANCEMENT] removing head as an allowed endpoint from APISettings
</PackageReleaseNotes>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestoreLockedMode>false</RestoreLockedMode>
</PropertyGroup>
<ItemGroup>
<Compile Remove="bin\**" />
<EmbeddedResource Remove="bin\**" />
<None Remove="
 -bin\**" />
</ItemGroup>
<ItemGroup>
<None Remove="Config\CommonConfig.cs~RF52c4cb0.TMP" />
<None Remove="Entities\ADO.cs~RF5780ef96.TMP" />
<None Remove="Entities\API.Auth.cs~RF2897d5d0.TMP" />
<None Remove="Entities\API.Auth.cs~RF8d05362.TMP" />
<None Remove="Entities\API.Common.cs~RF1e6b9c0d.TMP" />
<None Remove="Entities\API.Common.cs~RF2872793d.TMP" />
<None Remove="Entities\Constants.cs~RF270438fc.TMP" />
<None Remove="Entities\MemCacheD.cs~RFcba3198.TMP" />
<None Remove="Entities\MethodReader.cs~RF8645ca5e.TMP" />
<None Remove="Entities\Tracing\Trace\TraceBackgroundService.cs~RF15aa50a0.TMP" />
<None Remove="Interfaces\Tracing\ITraceSink.cs~RF68e0ec3.TMP" />
<None Remove="log4net.config" />
<None Remove="Middleware\olzfgeai.dth~" />
<None Remove="Middleware\ServiceConfiguration.cs~RF1c6e307d.TMP" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.17.0" />
<PackageReference Include="EnyimMemcachedCore" Version="3.4.5" />
<PackageReference Include="Konscious.Security.Cryptography.Argon2" Version="1.3.1" />
<PackageReference Include="log4net" Version="3.2.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.2" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="8.0.0" />
<PackageReference Include="Microsoft.Graph" Version="5.95.0" />
<PackageReference Include="Microsoft.Identity.Client" Version="4.78.0" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="8.14.0" />
<PackageReference Include="System.Diagnostics.PerformanceCounter" Version="9.0.10" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="9.0.10" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.14.0" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(MSBuildProjectName).Test</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
<ItemGroup>
<Reference Include="Azure.Identity">
<HintPath>\\3.9.2.42\dev\softwareArchitecture\net8ApplicationsDivisionTrunk\installed_packages3\azure.identity\1.14.2\lib\net8.0\Azure.Identity.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Identity.Client">
<HintPath>\\3.9.2.42\dev\softwareArchitecture\net8ApplicationsDivisionTrunk\installed_packages3\microsoft.identity.client\4.73.1\lib\net8.0\Microsoft.Identity.Client.dll</HintPath>
</Reference>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>False</Optimize>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<IncludeSymbols>true</IncludeSymbols>
<DebugSymbols>true</DebugSymbols>
<DebugType>Portable</DebugType>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>