Skip to content

Commit 4a5d29d

Browse files
committed
Upgrade .NET SDK to spec 2.20.8-nightly.6
1 parent 9c683ef commit 4a5d29d

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/VRChat.API/Client/Configuration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public class Configuration : IReadableConfiguration
3333
/// Version of the package.
3434
/// </summary>
3535
/// <value>Version of the package.</value>
36-
public const string Version = "2.20.8-nightly.5";
36+
public const string Version = "2.20.8-nightly.6";
3737

3838
/// <summary>
3939
/// Identifier for ISO 8601 DateTime Format
@@ -540,7 +540,7 @@ public static string ToDebugReport()
540540
report += " OS: " + System.Environment.OSVersion + "\n";
541541
report += " .NET Framework Version: " + System.Environment.Version + "\n";
542542
report += " Version of the API: 1.20.7\n";
543-
report += " SDK Package Version: 2.20.8-nightly.5\n";
543+
report += " SDK Package Version: 2.20.8-nightly.6\n";
544544

545545
return report;
546546
}

src/VRChat.API/Model/CalendarEvent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ protected CalendarEvent() { }
8282
/// <param name="updatedAt">updatedAt.</param>
8383
/// <param name="userInterest">userInterest.</param>
8484
/// <param name="usesInstanceOverflow">usesInstanceOverflow.</param>
85-
public CalendarEvent(CalendarEventAccess accessType = default, CalendarEventCategory category = default, int closeInstanceAfterEndMinutes = default, DateTime createdAt = default, DateTime? deletedAt = default, string description = default, int durationInMs = default, DateTime endsAt = default, bool featured = default, int guestEarlyJoinMinutes = default, int hostEarlyJoinMinutes = default, string id = default, string imageId = default, string imageUrl = default, int interestedUserCount = default, bool isDraft = default, List<string> languages = default, string occurrenceKind = default, string ownerId = default, List<CalendarEventPlatform> platforms = default, string recurrence = default, List<string> roleIds = default, string seriesId = default, DateTime startsAt = default, List<string> tags = default, string title = default, string type = default, DateTime updatedAt = default, CalendarEventUserInterest userInterest = default, bool usesInstanceOverflow = default)
85+
public CalendarEvent(CalendarEventAccess accessType = default, CalendarEventCategory category = default, int closeInstanceAfterEndMinutes = default, DateTime createdAt = default, DateTime? deletedAt = default, string description = default, long durationInMs = default, DateTime endsAt = default, bool featured = default, int guestEarlyJoinMinutes = default, int hostEarlyJoinMinutes = default, string id = default, string imageId = default, string imageUrl = default, int interestedUserCount = default, bool isDraft = default, List<string> languages = default, string occurrenceKind = default, string ownerId = default, List<CalendarEventPlatform> platforms = default, string recurrence = default, List<string> roleIds = default, string seriesId = default, DateTime startsAt = default, List<string> tags = default, string title = default, string type = default, DateTime updatedAt = default, CalendarEventUserInterest userInterest = default, bool usesInstanceOverflow = default)
8686
{
8787
this.AccessType = accessType;
8888
this.Category = category;
@@ -159,7 +159,7 @@ public CalendarEvent(CalendarEventAccess accessType = default, CalendarEventCate
159159
/// Gets or Sets DurationInMs
160160
/// </summary>
161161
[DataMember(Name = "durationInMs", EmitDefaultValue = false)]
162-
public int DurationInMs { get; set; }
162+
public long DurationInMs { get; set; }
163163

164164
/// <summary>
165165
/// Gets or Sets EndsAt

src/VRChat.API/VRChat.API.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>VRChat API Library for .NET</Description>
1313
<Copyright>Copyright © 2021 Owners of GitHub organisation "vrchatapi" and individual contributors.</Copyright>
1414
<RootNamespace>VRChat.API</RootNamespace>
15-
<Version>2.20.8-nightly.5</Version>
15+
<Version>2.20.8-nightly.6</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\VRChat.API.xml</DocumentationFile>
1717
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1818
<RepositoryUrl>https://github.com/vrchatapi/vrchatapi-csharp.git</RepositoryUrl>

wrapper/VRChat.API.Extensions.Hosting/VRChat.API.Extensions.Hosting.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>Extensions for hosting and dependency injection for the VRChat API Library for .NET</Description>
1313
<Copyright>Copyright © 2021 Owners of GitHub organisation "vrchatapi" and individual contributors.</Copyright>
1414
<RootNamespace>VRChat.API.Extensions.Hosting</RootNamespace>
15-
<Version>2.20.8-nightly.5</Version>
15+
<Version>2.20.8-nightly.6</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\VRChat.API.Extensions.Hosting.xml</DocumentationFile>
1717
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1818
<RepositoryUrl>https://github.com/vrchatapi/vrchatapi-csharp.git</RepositoryUrl>

0 commit comments

Comments
 (0)