Assembly Naming, Default Windows Service Account

This commit is contained in:
Qstick 2017-10-24 22:31:37 -04:00
parent f1b1904e07
commit 10c29a65db
62 changed files with 219 additions and 155 deletions

View file

@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Linq;
using Ical.Net;
using Ical.Net.DataTypes;
using Ical.Net.General;
using Ical.Net.Interfaces.Serialization;
using Ical.Net.Serialization;
using Ical.Net.Serialization.iCalendar.Factory;
@ -67,6 +68,9 @@ namespace Lidarr.Api.V3.Calendar
ProductId = "-//lidarr.audio//Lidarr//EN"
};
var calendarName = "Lidarr Music Schedule";
calendar.AddProperty(new CalendarProperty("NAME", calendarName));
calendar.AddProperty(new CalendarProperty("X-WR-CALNAME", calendarName));
foreach (var album in albums.OrderBy(v => v.ReleaseDate.Value))
{