Skip to content

Commit 240d972

Browse files
authored
Categorize OData operations. (#39)
* Update sensenet references. * Categorize OData operations.
1 parent e15b69f commit 240d972

File tree

6 files changed

+117
-73
lines changed

6 files changed

+117
-73
lines changed

src/Preview/Preview.Controller/Preview.Controller.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</PropertyGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="SenseNet.ContentRepository" Version="7.7.37" />
25+
<PackageReference Include="SenseNet.ContentRepository" Version="7.7.41.1" />
2626
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.9.0" />
2727
</ItemGroup>
2828

src/Preview/Preview.Controller/PreviewCommentActions.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static class PreviewCommentActions
1616
private static readonly object DeleteResultModified = new {modified = true};
1717
private static readonly object DeleteResultNotModified = new {modified = false};
1818

19-
[ODataFunction]
19+
[ODataFunction(Category = "Preview")]
2020
[ContentTypes(N.CT.File)]
2121
[AllowedRoles(N.R.All)]
2222
[RequiredPermissions(N.P.Preview)]
@@ -28,7 +28,7 @@ public static object GetPreviewComments(Content content, int page)
2828
return GetPreviewComments(((File)content.ContentHandler).PreviewComments, page)
2929
.Select(cd => cd.ToPreviewComment());
3030
}
31-
[ODataAction]
31+
[ODataAction(Category = "Preview")]
3232
[ContentTypes(N.CT.File)]
3333
[AllowedRoles(N.R.All)]
3434
[RequiredPermissions(N.P.Open)]
@@ -43,7 +43,7 @@ public static object AddPreviewComment(Content content, int page, double x, doub
4343

4444
return comment.ToPreviewComment();
4545
}
46-
[ODataAction]
46+
[ODataAction(Category = "Preview")]
4747
[ContentTypes(N.CT.File)]
4848
[AllowedRoles(N.R.All)]
4949
[RequiredPermissions(N.P.Open)]

src/Preview/Preview.Tests/Preview.Tests.csproj

Lines changed: 67 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -45,23 +45,26 @@
4545
<Reference Include="BouncyCastle.Crypto, Version=1.9.0.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
4646
<HintPath>..\packages\Portable.BouncyCastle.1.9.0\lib\net40\BouncyCastle.Crypto.dll</HintPath>
4747
</Reference>
48+
<Reference Include="BouncyCastle.Cryptography, Version=2.0.0.0, Culture=neutral, PublicKeyToken=072edcf4a5328938, processorArchitecture=MSIL">
49+
<HintPath>..\packages\BouncyCastle.Cryptography.2.2.1\lib\net461\BouncyCastle.Cryptography.dll</HintPath>
50+
</Reference>
4851
<Reference Include="Google.Authenticator, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
4952
<HintPath>..\packages\GoogleAuthenticator.3.1.0\lib\netstandard2.0\Google.Authenticator.dll</HintPath>
5053
</Reference>
5154
<Reference Include="IdentityModel, Version=4.1.1.0, Culture=neutral, PublicKeyToken=e7877f4675df049f, processorArchitecture=MSIL">
5255
<HintPath>..\packages\IdentityModel.4.1.1\lib\net461\IdentityModel.dll</HintPath>
5356
</Reference>
54-
<Reference Include="MailKit, Version=3.4.0.0, Culture=neutral, PublicKeyToken=4e064fe7c44a8f1b, processorArchitecture=MSIL">
55-
<HintPath>..\packages\MailKit.3.4.1\lib\netstandard2.0\MailKit.dll</HintPath>
57+
<Reference Include="MailKit, Version=4.1.0.0, Culture=neutral, PublicKeyToken=4e064fe7c44a8f1b, processorArchitecture=MSIL">
58+
<HintPath>..\packages\MailKit.4.1.0\lib\netstandard2.0\MailKit.dll</HintPath>
5659
</Reference>
5760
<Reference Include="Microsoft.AspNetCore.Http.Abstractions, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
5861
<HintPath>..\packages\Microsoft.AspNetCore.Http.Abstractions.2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Abstractions.dll</HintPath>
5962
</Reference>
6063
<Reference Include="Microsoft.AspNetCore.Http.Features, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
6164
<HintPath>..\packages\Microsoft.AspNetCore.Http.Features.2.2.0\lib\netstandard2.0\Microsoft.AspNetCore.Http.Features.dll</HintPath>
6265
</Reference>
63-
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
64-
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.7.0.0\lib\netstandard2.0\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
66+
<Reference Include="Microsoft.Bcl.AsyncInterfaces, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
67+
<HintPath>..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\netstandard2.0\Microsoft.Bcl.AsyncInterfaces.dll</HintPath>
6568
</Reference>
6669
<Reference Include="Microsoft.CSharp" />
6770
<Reference Include="Microsoft.Extensions.Caching.Abstractions, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
@@ -106,23 +109,26 @@
106109
<Reference Include="Microsoft.Extensions.Primitives, Version=7.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
107110
<HintPath>..\packages\Microsoft.Extensions.Primitives.7.0.0\lib\netstandard2.0\Microsoft.Extensions.Primitives.dll</HintPath>
108111
</Reference>
109-
<Reference Include="Microsoft.IdentityModel.JsonWebTokens, Version=6.15.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
110-
<HintPath>..\packages\Microsoft.IdentityModel.JsonWebTokens.6.15.1\lib\net461\Microsoft.IdentityModel.JsonWebTokens.dll</HintPath>
112+
<Reference Include="Microsoft.IdentityModel.Abstractions, Version=7.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
113+
<HintPath>..\packages\Microsoft.IdentityModel.Abstractions.7.2.0\lib\net461\Microsoft.IdentityModel.Abstractions.dll</HintPath>
114+
</Reference>
115+
<Reference Include="Microsoft.IdentityModel.JsonWebTokens, Version=7.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
116+
<HintPath>..\packages\Microsoft.IdentityModel.JsonWebTokens.7.2.0\lib\net461\Microsoft.IdentityModel.JsonWebTokens.dll</HintPath>
111117
</Reference>
112-
<Reference Include="Microsoft.IdentityModel.Logging, Version=6.15.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
113-
<HintPath>..\packages\Microsoft.IdentityModel.Logging.6.15.1\lib\net461\Microsoft.IdentityModel.Logging.dll</HintPath>
118+
<Reference Include="Microsoft.IdentityModel.Logging, Version=7.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
119+
<HintPath>..\packages\Microsoft.IdentityModel.Logging.7.2.0\lib\net461\Microsoft.IdentityModel.Logging.dll</HintPath>
114120
</Reference>
115-
<Reference Include="Microsoft.IdentityModel.Tokens, Version=6.15.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
116-
<HintPath>..\packages\Microsoft.IdentityModel.Tokens.6.15.1\lib\net461\Microsoft.IdentityModel.Tokens.dll</HintPath>
121+
<Reference Include="Microsoft.IdentityModel.Tokens, Version=7.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
122+
<HintPath>..\packages\Microsoft.IdentityModel.Tokens.7.2.0\lib\net461\Microsoft.IdentityModel.Tokens.dll</HintPath>
117123
</Reference>
118124
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
119125
<HintPath>..\packages\MSTest.TestFramework.1.3.2\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
120126
</Reference>
121127
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
122128
<HintPath>..\packages\MSTest.TestFramework.1.3.2\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
123129
</Reference>
124-
<Reference Include="MimeKit, Version=3.4.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
125-
<HintPath>..\packages\MimeKit.3.4.1\lib\netstandard2.0\MimeKit.dll</HintPath>
130+
<Reference Include="MimeKit, Version=4.1.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
131+
<HintPath>..\packages\MimeKit.4.1.0\lib\netstandard2.0\MimeKit.dll</HintPath>
126132
</Reference>
127133
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
128134
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
@@ -144,44 +150,44 @@
144150
<Reference Include="QRCoder, Version=1.4.3.0, Culture=neutral, PublicKeyToken=c4ed5b9ae8358a28, processorArchitecture=MSIL">
145151
<HintPath>..\packages\QRCoder.1.4.3\lib\net40\QRCoder.dll</HintPath>
146152
</Reference>
147-
<Reference Include="SenseNet.Abstractions, Version=1.0.3.0, Culture=neutral, processorArchitecture=MSIL">
148-
<HintPath>..\packages\SenseNet.Abstractions.1.0.3\lib\netstandard2.0\SenseNet.Abstractions.dll</HintPath>
153+
<Reference Include="SenseNet.Abstractions, Version=1.0.4.0, Culture=neutral, processorArchitecture=MSIL">
154+
<HintPath>..\packages\SenseNet.Abstractions.1.0.4\lib\netstandard2.0\SenseNet.Abstractions.dll</HintPath>
149155
</Reference>
150-
<Reference Include="SenseNet.BlobStorage, Version=7.6.10.0, Culture=neutral, processorArchitecture=MSIL">
151-
<HintPath>..\packages\SenseNet.BlobStorage.7.6.10\lib\netstandard2.0\SenseNet.BlobStorage.dll</HintPath>
156+
<Reference Include="SenseNet.BlobStorage, Version=7.6.14.0, Culture=neutral, processorArchitecture=MSIL">
157+
<HintPath>..\packages\SenseNet.BlobStorage.7.6.14\lib\netstandard2.0\SenseNet.BlobStorage.dll</HintPath>
152158
</Reference>
153-
<Reference Include="SenseNet.Client, Version=3.0.1.0, Culture=neutral, processorArchitecture=MSIL">
154-
<HintPath>..\packages\SenseNet.Client.3.0.1\lib\netstandard2.0\SenseNet.Client.dll</HintPath>
159+
<Reference Include="SenseNet.Client, Version=4.0.0.1, Culture=neutral, processorArchitecture=MSIL">
160+
<HintPath>..\packages\SenseNet.Client.4.0.0.1\lib\netstandard2.0\SenseNet.Client.dll</HintPath>
155161
</Reference>
156-
<Reference Include="SenseNet.Common, Version=7.5.11.0, Culture=neutral, processorArchitecture=MSIL">
157-
<HintPath>..\packages\SenseNet.Common.7.5.11\lib\netstandard2.0\SenseNet.Common.dll</HintPath>
162+
<Reference Include="SenseNet.Common, Version=7.5.15.1, Culture=neutral, processorArchitecture=MSIL">
163+
<HintPath>..\packages\SenseNet.Common.7.5.15.1\lib\netstandard2.0\SenseNet.Common.dll</HintPath>
158164
</Reference>
159-
<Reference Include="SenseNet.ContentRepository, Version=7.7.37.0, Culture=neutral, processorArchitecture=MSIL">
160-
<HintPath>..\packages\SenseNet.ContentRepository.7.7.37\lib\netstandard2.0\SenseNet.ContentRepository.dll</HintPath>
165+
<Reference Include="SenseNet.ContentRepository, Version=7.7.41.1, Culture=neutral, processorArchitecture=MSIL">
166+
<HintPath>..\packages\SenseNet.ContentRepository.7.7.41.1\lib\netstandard2.0\SenseNet.ContentRepository.dll</HintPath>
161167
</Reference>
162168
<Reference Include="SenseNet.Preview, Version=7.2.3.0, Culture=neutral, processorArchitecture=MSIL">
163169
<HintPath>..\packages\SenseNet.Preview.7.2.3\lib\netstandard2.0\SenseNet.Preview.dll</HintPath>
164170
</Reference>
165-
<Reference Include="SenseNet.Search, Version=2.4.15.0, Culture=neutral, processorArchitecture=MSIL">
166-
<HintPath>..\packages\SenseNet.Search.2.4.15\lib\netstandard2.0\SenseNet.Search.dll</HintPath>
171+
<Reference Include="SenseNet.Search, Version=2.4.19.1, Culture=neutral, processorArchitecture=MSIL">
172+
<HintPath>..\packages\SenseNet.Search.2.4.19.1\lib\netstandard2.0\SenseNet.Search.dll</HintPath>
167173
</Reference>
168-
<Reference Include="SenseNet.Security, Version=4.2.0.0, Culture=neutral, processorArchitecture=MSIL">
169-
<HintPath>..\packages\SenseNet.Security.4.2.0\lib\netstandard2.0\SenseNet.Security.dll</HintPath>
174+
<Reference Include="SenseNet.Security, Version=4.2.4.0, Culture=neutral, processorArchitecture=MSIL">
175+
<HintPath>..\packages\SenseNet.Security.4.2.4\lib\netstandard2.0\SenseNet.Security.dll</HintPath>
170176
</Reference>
171-
<Reference Include="SenseNet.Storage, Version=7.7.32.0, Culture=neutral, processorArchitecture=MSIL">
172-
<HintPath>..\packages\SenseNet.Storage.7.7.32\lib\netstandard2.0\SenseNet.Storage.dll</HintPath>
177+
<Reference Include="SenseNet.Storage, Version=7.7.36.1, Culture=neutral, processorArchitecture=MSIL">
178+
<HintPath>..\packages\SenseNet.Storage.7.7.36.1\lib\netstandard2.0\SenseNet.Storage.dll</HintPath>
173179
</Reference>
174-
<Reference Include="SenseNet.TaskManagement.Core, Version=2.2.2.0, Culture=neutral, processorArchitecture=MSIL">
175-
<HintPath>..\packages\SenseNet.TaskManagement.Core.2.2.2\lib\netstandard2.0\SenseNet.TaskManagement.Core.dll</HintPath>
180+
<Reference Include="SenseNet.TaskManagement.Core, Version=2.2.3.0, Culture=neutral, processorArchitecture=MSIL">
181+
<HintPath>..\packages\SenseNet.TaskManagement.Core.2.2.3\lib\netstandard2.0\SenseNet.TaskManagement.Core.dll</HintPath>
176182
</Reference>
177183
<Reference Include="SenseNet.Tests, Version=1.6.14.0, Culture=neutral, processorArchitecture=MSIL">
178184
<HintPath>..\packages\SenseNet.Tests.1.6.14\lib\net461\SenseNet.Tests.dll</HintPath>
179185
</Reference>
180186
<Reference Include="SenseNet.TokenAuthentication, Version=7.4.0.0, Culture=neutral, processorArchitecture=MSIL">
181187
<HintPath>..\packages\SenseNet.TokenAuthentication.7.4.0\lib\netstandard2.0\SenseNet.TokenAuthentication.dll</HintPath>
182188
</Reference>
183-
<Reference Include="SenseNet.Tools, Version=3.2.11.0, Culture=neutral, processorArchitecture=MSIL">
184-
<HintPath>..\packages\SenseNet.Tools.3.2.11\lib\netstandard2.0\SenseNet.Tools.dll</HintPath>
189+
<Reference Include="SenseNet.Tools, Version=3.2.13.0, Culture=neutral, processorArchitecture=MSIL">
190+
<HintPath>..\packages\SenseNet.Tools.3.2.13\lib\netstandard2.0\SenseNet.Tools.dll</HintPath>
185191
</Reference>
186192
<Reference Include="SkiaSharp, Version=2.88.0.0, Culture=neutral, PublicKeyToken=0738eb9f132ed756, processorArchitecture=MSIL">
187193
<HintPath>..\packages\SkiaSharp.2.88.3\lib\netstandard2.0\SkiaSharp.dll</HintPath>
@@ -205,8 +211,8 @@
205211
<Reference Include="System.Data" />
206212
<Reference Include="System.Data.DataSetExtensions" />
207213
<Reference Include="System.Data.OracleClient" />
208-
<Reference Include="System.Data.SqlClient, Version=4.6.1.3, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
209-
<HintPath>..\packages\System.Data.SqlClient.4.8.3\lib\net461\System.Data.SqlClient.dll</HintPath>
214+
<Reference Include="System.Data.SqlClient, Version=4.6.1.6, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
215+
<HintPath>..\packages\System.Data.SqlClient.4.8.6\lib\net461\System.Data.SqlClient.dll</HintPath>
210216
</Reference>
211217
<Reference Include="System.Diagnostics.DiagnosticSource, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
212218
<HintPath>..\packages\System.Diagnostics.DiagnosticSource.7.0.0\lib\netstandard2.0\System.Diagnostics.DiagnosticSource.dll</HintPath>
@@ -218,8 +224,11 @@
218224
<Reference Include="System.Drawing.Common, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
219225
<HintPath>..\packages\System.Drawing.Common.7.0.0\lib\netstandard2.0\System.Drawing.Common.dll</HintPath>
220226
</Reference>
221-
<Reference Include="System.IdentityModel.Tokens.Jwt, Version=6.15.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
222-
<HintPath>..\packages\System.IdentityModel.Tokens.Jwt.6.15.1\lib\net461\System.IdentityModel.Tokens.Jwt.dll</HintPath>
227+
<Reference Include="System.Formats.Asn1, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
228+
<HintPath>..\packages\System.Formats.Asn1.7.0.0\lib\netstandard2.0\System.Formats.Asn1.dll</HintPath>
229+
</Reference>
230+
<Reference Include="System.IdentityModel.Tokens.Jwt, Version=7.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
231+
<HintPath>..\packages\System.IdentityModel.Tokens.Jwt.7.2.0\lib\net461\System.IdentityModel.Tokens.Jwt.dll</HintPath>
223232
</Reference>
224233
<Reference Include="System.Memory, Version=4.0.1.2, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
225234
<HintPath>..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll</HintPath>
@@ -239,8 +248,21 @@
239248
<Reference Include="System.Security.AccessControl, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
240249
<HintPath>..\packages\System.Security.AccessControl.6.0.0\lib\net461\System.Security.AccessControl.dll</HintPath>
241250
</Reference>
242-
<Reference Include="System.Security.Cryptography.Pkcs, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
243-
<HintPath>..\packages\System.Security.Cryptography.Pkcs.6.0.0\lib\net461\System.Security.Cryptography.Pkcs.dll</HintPath>
251+
<Reference Include="System.Security.Cryptography.Algorithms, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
252+
<HintPath>..\packages\System.Security.Cryptography.Algorithms.4.3.1\lib\net461\System.Security.Cryptography.Algorithms.dll</HintPath>
253+
<Private>True</Private>
254+
<Private>True</Private>
255+
</Reference>
256+
<Reference Include="System.Security.Cryptography.Cng, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
257+
<HintPath>..\packages\System.Security.Cryptography.Cng.5.0.0\lib\net461\System.Security.Cryptography.Cng.dll</HintPath>
258+
</Reference>
259+
<Reference Include="System.Security.Cryptography.Pkcs, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
260+
<HintPath>..\packages\System.Security.Cryptography.Pkcs.7.0.2\lib\netstandard2.0\System.Security.Cryptography.Pkcs.dll</HintPath>
261+
</Reference>
262+
<Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
263+
<HintPath>..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
264+
<Private>True</Private>
265+
<Private>True</Private>
244266
</Reference>
245267
<Reference Include="System.Security.Cryptography.ProtectedData, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
246268
<HintPath>..\packages\System.Security.Cryptography.ProtectedData.7.0.0\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll</HintPath>
@@ -252,11 +274,14 @@
252274
<HintPath>..\packages\System.Security.Principal.Windows.5.0.0\lib\net461\System.Security.Principal.Windows.dll</HintPath>
253275
</Reference>
254276
<Reference Include="System.ServiceProcess" />
255-
<Reference Include="System.Text.Encoding.CodePages, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
256-
<HintPath>..\packages\System.Text.Encoding.CodePages.6.0.0\lib\net461\System.Text.Encoding.CodePages.dll</HintPath>
277+
<Reference Include="System.Text.Encoding.CodePages, Version=7.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
278+
<HintPath>..\packages\System.Text.Encoding.CodePages.7.0.0\lib\netstandard2.0\System.Text.Encoding.CodePages.dll</HintPath>
279+
</Reference>
280+
<Reference Include="System.Text.Encodings.Web, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
281+
<HintPath>..\packages\System.Text.Encodings.Web.8.0.0\lib\netstandard2.0\System.Text.Encodings.Web.dll</HintPath>
257282
</Reference>
258-
<Reference Include="System.Text.Encodings.Web, Version=4.0.4.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
259-
<HintPath>..\packages\System.Text.Encodings.Web.4.6.0\lib\netstandard2.0\System.Text.Encodings.Web.dll</HintPath>
283+
<Reference Include="System.Text.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
284+
<HintPath>..\packages\System.Text.Json.8.0.0\lib\netstandard2.0\System.Text.Json.dll</HintPath>
260285
</Reference>
261286
<Reference Include="System.Threading.Tasks.Extensions, Version=4.2.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
262287
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.4\lib\net461\System.Threading.Tasks.Extensions.dll</HintPath>

0 commit comments

Comments
 (0)