-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedGuides.Client.csproj
More file actions
53 lines (46 loc) · 2.35 KB
/
Copy pathRedGuides.Client.csproj
File metadata and controls
53 lines (46 loc) · 2.35 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
<Project Sdk="Microsoft.NET.Sdk">
<!-- RedGuides OAuth + entitlement-gated NetSparkle updates. Windows-only (DPAPI token storage + WPF).
TFM/Nullable/ImplicitUsings/analyzers come from the repo-root Directory.Build.props. -->
<PropertyGroup>
<RootNamespace>RedGuides.Client</RootNamespace>
<UseWPF>true</UseWPF>
<Company>RedGuides</Company>
<Product>RedGuides.Client</Product>
<Copyright>Copyright © 2026 RedGuides</Copyright>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>RedGuides.Client</PackageId>
<Version>0.2.0</Version>
<Authors>RedGuides</Authors>
<Description>
Client library for RedGuides-hosted desktop app updates: XenForo OAuth2 (PKCE), an
authenticating HTTP handler, DPAPI token storage, X-RG-* entitlement parsing, Ed25519
download-signature verification, a SparkleUpdater factory, and a WPF update service
(background + interactive "check for updates" with NetSparkle's WPF UI and an
entitlement-aware renewal prompt). Windows-only.
</Description>
<PackageTags>redguides;netsparkle;oauth2;pkce;auto-update;ed25519;xenforo;wpf</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/RedGuides/redguides-client-dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/RedGuides/redguides-client-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="RedGuides.Client.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Duende.IdentityModel.OidcClient" Version="7.1.0" />
<PackageReference Include="NetSparkleUpdater.SparkleUpdater" Version="3.0.4" />
<PackageReference Include="NetSparkleUpdater.UI.WPF" Version="3.0.4" />
<PackageReference Include="Duende.IdentityModel" Version="8.1.0" />
<!-- 10.x floor comes from Duende.IdentityModel.OidcClient 7.1.0. -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.4" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="8.0.0" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
</ItemGroup>
</Project>