Skip to content

Commit d78bb6d

Browse files
committed
misc ASF -> 6.3.0.1
1 parent 4d044fe commit d78bb6d

File tree

5 files changed

+74
-5
lines changed

5 files changed

+74
-5
lines changed

ASFEnhance/ASFEnhance.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414

1515
<ItemGroup>
1616
<PackageReference Include="AngleSharp" />
17-
<PackageReference Include="SteamKit2" IncludeAssets="compile" />
17+
<PackageReference Include="SteamKit2" />
18+
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
1819
<PackageReference Include="System.Composition.AttributedModel" />
19-
<PackageReference Include="System.Linq.Async" IncludeAssets="compile" />
2020
<PackageReference Include="ConfigureAwaitChecker.Analyzer">
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,80 @@
11
using System.Text.Json.Serialization;
22

33
namespace ASFEnhance.Data.IPlayerService;
4+
/// <summary>
5+
///
6+
/// </summary>
47
public sealed record ProfileBackgroundData
58
{
9+
/// <summary>
10+
///
11+
/// </summary>
612
[JsonPropertyName("communityitemid")]
713
public string? CommunityItemId { get; set; }
814

15+
/// <summary>
16+
///
17+
/// </summary>
918
[JsonPropertyName("image_large")]
1019
public string? ImageLarge { get; set; }
1120

21+
/// <summary>
22+
///
23+
/// </summary>
1224
[JsonPropertyName("name")]
1325
public string? Name { get; set; }
1426

27+
/// <summary>
28+
///
29+
/// </summary>
1530
[JsonPropertyName("item_title")]
1631
public string? ItemTitle { get; set; }
1732

33+
/// <summary>
34+
///
35+
/// </summary>
1836
[JsonPropertyName("item_description")]
1937
public string? ItemDescription { get; set; }
2038

39+
/// <summary>
40+
///
41+
/// </summary>
2142
[JsonPropertyName("appid")]
2243
public uint AppId { get; set; }
2344

45+
/// <summary>
46+
///
47+
/// </summary>
2448
[JsonPropertyName("item_type")]
2549
public int ItemType { get; set; }
2650

51+
/// <summary>
52+
///
53+
/// </summary>
2754
[JsonPropertyName("item_class")]
2855
public int ItemClass { get; set; }
2956

57+
/// <summary>
58+
///
59+
/// </summary>
3060
[JsonPropertyName("movie_webm")]
3161
public string? MovieWebm { get; set; }
3262

63+
/// <summary>
64+
///
65+
/// </summary>
3366
[JsonPropertyName("movie_mp4")]
3467
public string? MovieMp4 { get; set; }
3568

69+
/// <summary>
70+
///
71+
/// </summary>
3672
[JsonPropertyName("movie_webm_small")]
3773
public string? MovieWebmSmall { get; set; }
3874

75+
/// <summary>
76+
///
77+
/// </summary>
3978
[JsonPropertyName("movie_mp4_small")]
4079
public string? MovieMp4Small { get; set; }
4180
}

ASFEnhance/Data/IPlayerService/ProfileModifierItemData.cs

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,62 @@
22

33
namespace ASFEnhance.Data.IPlayerService;
44

5+
/// <summary>
6+
///
7+
/// </summary>
58
public sealed record ProfileModifierItemData
69
{
10+
/// <summary>
11+
///
12+
/// </summary>
713
[JsonPropertyName("communityitemid")]
814
public string? CommunityItemId { get; init; }
915

16+
/// <summary>
17+
///
18+
/// </summary>
1019
[JsonPropertyName("image_small")]
1120
public string? ImageSmall { get; init; }
1221

22+
/// <summary>
23+
///
24+
/// </summary>
1325
[JsonPropertyName("image_large")]
1426
public string? ImageLarge { get; init; }
1527

28+
/// <summary>
29+
///
30+
/// </summary>
1631
[JsonPropertyName("name")]
1732
public string? Name { get; init; }
1833

34+
/// <summary>
35+
///
36+
/// </summary>
1937
[JsonPropertyName("item_title")]
2038
public string? ItemTitle { get; init; }
2139

40+
/// <summary>
41+
///
42+
/// </summary>
2243
[JsonPropertyName("item_description")]
2344
public string? ItemDescription { get; init; }
2445

46+
/// <summary>
47+
///
48+
/// </summary>
2549
[JsonPropertyName("appid")]
2650
public uint AppId { get; init; }
2751

52+
/// <summary>
53+
///
54+
/// </summary>
2855
[JsonPropertyName("item_type")]
2956
public int ItemType { get; init; }
3057

58+
/// <summary>
59+
///
60+
/// </summary>
3161
[JsonPropertyName("item_class")]
3262
public int ItemClass { get; init; }
3363
}

ArchiSteamFarm

Submodule ArchiSteamFarm updated 76 files

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>2.3.13.1</Version>
3+
<Version>2.3.14.0</Version>
44
</PropertyGroup>
55

66
<PropertyGroup>
@@ -26,7 +26,7 @@
2626
<RollForward>LatestMajor</RollForward>
2727
<RuntimeIdentifiers>linux-arm;linux-arm64;linux-x64;osx-arm64;osx-x64;win-arm64;win-x64</RuntimeIdentifiers>
2828
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
29-
<TargetFramework>net9.0</TargetFramework>
29+
<TargetFramework>net10.0</TargetFramework>
3030
</PropertyGroup>
3131

3232
<PropertyGroup Condition="'$(Configuration)'=='Debug'">

0 commit comments

Comments
 (0)