diff --git a/Wino.Calendar.ViewModels/Data/CalendarItemViewModel.cs b/Wino.Calendar.ViewModels/Data/CalendarItemViewModel.cs
index 409fdb9a..de2416a6 100644
--- a/Wino.Calendar.ViewModels/Data/CalendarItemViewModel.cs
+++ b/Wino.Calendar.ViewModels/Data/CalendarItemViewModel.cs
@@ -33,8 +33,10 @@ public partial class CalendarItemViewModel : ObservableObject, ICalendarItem, IC
}
set
{
- // When setting from UI (in local time), convert to event's timezone for storage.
- CalendarItem.StartDate = value.ToTimeZoneFromLocal(CalendarItem.StartTimeZone);
+ // All-day events use floating dates and should not shift across timezones.
+ CalendarItem.StartDate = CalendarItem.IsAllDayEvent
+ ? value.Date
+ : value.ToTimeZoneFromLocal(CalendarItem.StartTimeZone);
}
}
diff --git a/Wino.Core.Domain/Extensions/DateTimeExtensions.cs b/Wino.Core.Domain/Extensions/DateTimeExtensions.cs
index 91ae3380..0268a93a 100644
--- a/Wino.Core.Domain/Extensions/DateTimeExtensions.cs
+++ b/Wino.Core.Domain/Extensions/DateTimeExtensions.cs
@@ -78,8 +78,12 @@ public static class DateTimeExtensions
}
public static DateTime GetLocalStartDate(this CalendarItem calendarItem)
- => calendarItem.StartDate.ToLocalTimeFromTimeZone(calendarItem.StartTimeZone);
+ => calendarItem.IsAllDayEvent
+ ? calendarItem.StartDate
+ : calendarItem.StartDate.ToLocalTimeFromTimeZone(calendarItem.StartTimeZone);
public static DateTime GetLocalEndDate(this CalendarItem calendarItem)
- => calendarItem.EndDate.ToLocalTimeFromTimeZone(calendarItem.EndTimeZone);
+ => calendarItem.IsAllDayEvent
+ ? calendarItem.EndDate
+ : calendarItem.EndDate.ToLocalTimeFromTimeZone(calendarItem.EndTimeZone);
}
diff --git a/Wino.Core.Tests/Synchronizers/CalendarItemTimeZoneDisplayTests.cs b/Wino.Core.Tests/Synchronizers/CalendarItemTimeZoneDisplayTests.cs
new file mode 100644
index 00000000..f76e6115
--- /dev/null
+++ b/Wino.Core.Tests/Synchronizers/CalendarItemTimeZoneDisplayTests.cs
@@ -0,0 +1,61 @@
+using FluentAssertions;
+using Wino.Calendar.ViewModels.Data;
+using Wino.Core.Extensions;
+using Wino.Core.Domain.Entities.Calendar;
+using Google.Apis.Calendar.v3.Data;
+using Xunit;
+
+namespace Wino.Core.Tests.Synchronizers;
+
+public sealed class CalendarItemTimeZoneDisplayTests
+{
+ [Fact]
+ public void AllDayEvents_KeepTheirOriginalCalendarDates_ForDisplay()
+ {
+ var calendarItem = new CalendarItem
+ {
+ Id = Guid.NewGuid(),
+ Title = "National Sovereignty and Children's Day",
+ StartDate = new DateTime(2026, 4, 23, 0, 0, 0),
+ DurationInSeconds = TimeSpan.FromDays(1).TotalSeconds,
+ StartTimeZone = "Turkey Standard Time",
+ EndTimeZone = "Turkey Standard Time"
+ };
+
+ calendarItem.IsAllDayEvent.Should().BeTrue();
+ calendarItem.LocalStartDate.Should().Be(new DateTime(2026, 4, 23, 0, 0, 0));
+ calendarItem.LocalEndDate.Should().Be(new DateTime(2026, 4, 24, 0, 0, 0));
+ }
+
+ [Fact]
+ public void EditingAllDayEventDate_DoesNotApplyTimezoneConversion()
+ {
+ var calendarItem = new CalendarItem
+ {
+ Id = Guid.NewGuid(),
+ Title = "Holiday",
+ StartDate = new DateTime(2026, 4, 23, 0, 0, 0),
+ DurationInSeconds = TimeSpan.FromDays(1).TotalSeconds,
+ StartTimeZone = "Turkey Standard Time",
+ EndTimeZone = "Turkey Standard Time"
+ };
+
+ var viewModel = new CalendarItemViewModel(calendarItem);
+
+ viewModel.StartDate = new DateTime(2026, 4, 24, 0, 0, 0);
+
+ calendarItem.StartDate.Should().Be(new DateTime(2026, 4, 24, 0, 0, 0));
+ }
+
+ [Fact]
+ public void GmailDateOnlyEvents_KeepFloatingCalendarDates()
+ {
+ var start = new EventDateTime { Date = "2026-04-23" };
+ var end = new EventDateTime { Date = "2026-04-24" };
+
+ GoogleIntegratorExtensions.GetEventLocalDateTime(start).Should().Be(new DateTime(2026, 4, 23, 0, 0, 0));
+ GoogleIntegratorExtensions.GetEventLocalDateTime(end).Should().Be(new DateTime(2026, 4, 24, 0, 0, 0));
+
+ GoogleIntegratorExtensions.GetEventDateTimeOffset(start)!.Value.UtcDateTime.Should().Be(new DateTime(2026, 4, 23, 0, 0, 0, DateTimeKind.Utc));
+ }
+}
diff --git a/Wino.Core/Extensions/GoogleIntegratorExtensions.cs b/Wino.Core/Extensions/GoogleIntegratorExtensions.cs
index 51b6f810..75d5c99e 100644
--- a/Wino.Core/Extensions/GoogleIntegratorExtensions.cs
+++ b/Wino.Core/Extensions/GoogleIntegratorExtensions.cs
@@ -180,6 +180,31 @@ public static class GoogleIntegratorExtensions
return null;
}
+ public static DateTime? GetEventLocalDateTime(EventDateTime calendarEvent)
+ {
+ if (calendarEvent == null)
+ {
+ return null;
+ }
+
+ if (calendarEvent.DateTimeDateTimeOffset != null)
+ {
+ return DateTime.SpecifyKind(calendarEvent.DateTimeDateTimeOffset.Value.DateTime, DateTimeKind.Unspecified);
+ }
+
+ if (calendarEvent.Date != null)
+ {
+ if (DateTime.TryParse(calendarEvent.Date, out DateTime eventDateTime))
+ {
+ return DateTime.SpecifyKind(eventDateTime, DateTimeKind.Unspecified);
+ }
+
+ throw new Exception("Invalid date format in Google Calendar event date.");
+ }
+
+ return null;
+ }
+
///
/// Extracts the timezone string from EventDateTime.
/// Returns null for all-day events or if timezone is not specified.
diff --git a/Wino.Core/Extensions/OutlookIntegratorExtensions.cs b/Wino.Core/Extensions/OutlookIntegratorExtensions.cs
index 1e5d0e78..5b315e5c 100644
--- a/Wino.Core/Extensions/OutlookIntegratorExtensions.cs
+++ b/Wino.Core/Extensions/OutlookIntegratorExtensions.cs
@@ -335,6 +335,21 @@ public static class OutlookIntegratorExtensions
}
}
+ public static DateTime GetLocalDateTimeFromDateTimeTimeZone(DateTimeTimeZone dateTimeTimeZone)
+ {
+ if (dateTimeTimeZone == null || string.IsNullOrEmpty(dateTimeTimeZone.DateTime))
+ {
+ throw new ArgumentException("DateTimeTimeZone or DateTime is null or empty.");
+ }
+
+ if (!DateTime.TryParse(dateTimeTimeZone.DateTime, out DateTime parsedDateTime))
+ {
+ throw new ArgumentException("DateTime string is not in a valid format.");
+ }
+
+ return DateTime.SpecifyKind(parsedDateTime, DateTimeKind.Unspecified);
+ }
+
private static AttendeeStatus GetAttendeeStatus(ResponseType? responseType)
{
return responseType switch
diff --git a/Wino.Core/Integration/Processors/GmailChangeProcessor.cs b/Wino.Core/Integration/Processors/GmailChangeProcessor.cs
index 697eaa45..c1da8367 100644
--- a/Wino.Core/Integration/Processors/GmailChangeProcessor.cs
+++ b/Wino.Core/Integration/Processors/GmailChangeProcessor.cs
@@ -66,12 +66,14 @@ public class GmailChangeProcessor : DefaultChangeProcessor, IGmailChangeProcesso
// We don't have this event yet. Create a new one.
var eventStartDateTimeOffset = GoogleIntegratorExtensions.GetEventDateTimeOffset(calendarEvent.Start);
var eventEndDateTimeOffset = GoogleIntegratorExtensions.GetEventDateTimeOffset(calendarEvent.End);
+ var eventStartLocalDateTime = GoogleIntegratorExtensions.GetEventLocalDateTime(calendarEvent.Start);
+ var eventEndLocalDateTime = GoogleIntegratorExtensions.GetEventLocalDateTime(calendarEvent.End);
double totalDurationInSeconds = 0;
- if (eventStartDateTimeOffset != null && eventEndDateTimeOffset != null)
+ if (eventStartLocalDateTime != null && eventEndLocalDateTime != null)
{
- totalDurationInSeconds = (eventEndDateTimeOffset.Value - eventStartDateTimeOffset.Value).TotalSeconds;
+ totalDurationInSeconds = (eventEndLocalDateTime.Value - eventStartLocalDateTime.Value).TotalSeconds;
}
CalendarItem calendarItem = null;
@@ -97,7 +99,7 @@ public class GmailChangeProcessor : DefaultChangeProcessor, IGmailChangeProcesso
CreatedAt = DateTimeOffset.UtcNow,
Description = calendarEvent.Description ?? parentRecurringEvent.Description,
Id = Guid.NewGuid(),
- StartDate = eventStartDateTimeOffset.Value.UtcDateTime,
+ StartDate = eventStartLocalDateTime.Value,
DurationInSeconds = totalDurationInSeconds,
Location = string.IsNullOrEmpty(calendarEvent.Location) ? parentRecurringEvent.Location : calendarEvent.Location,
@@ -136,7 +138,7 @@ public class GmailChangeProcessor : DefaultChangeProcessor, IGmailChangeProcesso
CreatedAt = DateTimeOffset.UtcNow,
Description = calendarEvent.Description,
Id = Guid.NewGuid(),
- StartDate = eventStartDateTimeOffset.Value.UtcDateTime,
+ StartDate = eventStartLocalDateTime.Value,
DurationInSeconds = totalDurationInSeconds,
Location = calendarEvent.Location,
diff --git a/Wino.Core/Integration/Processors/OutlookChangeProcessor.cs b/Wino.Core/Integration/Processors/OutlookChangeProcessor.cs
index 57a22c44..c2e543c6 100644
--- a/Wino.Core/Integration/Processors/OutlookChangeProcessor.cs
+++ b/Wino.Core/Integration/Processors/OutlookChangeProcessor.cs
@@ -59,14 +59,15 @@ public class OutlookChangeProcessor(IDatabaseService databaseService,
savingItem = new CalendarItem() { Id = savingItemId };
}
- DateTimeOffset eventStartDateTimeOffset = OutlookIntegratorExtensions.GetDateTimeOffsetFromDateTimeTimeZone(calendarEvent.Start);
- DateTimeOffset eventEndDateTimeOffset = OutlookIntegratorExtensions.GetDateTimeOffsetFromDateTimeTimeZone(calendarEvent.End);
+ var eventStartLocalDateTime = OutlookIntegratorExtensions.GetLocalDateTimeFromDateTimeTimeZone(calendarEvent.Start);
+ var eventEndLocalDateTime = OutlookIntegratorExtensions.GetLocalDateTimeFromDateTimeTimeZone(calendarEvent.End);
- var durationInSeconds = (eventEndDateTimeOffset - eventStartDateTimeOffset).TotalSeconds;
+ var durationInSeconds = (eventEndLocalDateTime - eventStartLocalDateTime).TotalSeconds;
- // Store dates as UTC in the database
+ // Store the wall-clock values exactly as Outlook returned them for the event timezone.
+ // Timed events are converted for display later, while all-day events stay as floating dates.
savingItem.RemoteEventId = calendarEvent.Id.WithClientTrackingId(calendarEvent.TransactionId.GetClientTrackingId());
- savingItem.StartDate = eventStartDateTimeOffset.UtcDateTime;
+ savingItem.StartDate = eventStartLocalDateTime;
savingItem.DurationInSeconds = durationInSeconds;
// Store the timezone information from the event
diff --git a/Wino.Mail.ViewModels/MailAppShellViewModel.cs b/Wino.Mail.ViewModels/MailAppShellViewModel.cs
index 7b7c77c9..7f18fa48 100644
--- a/Wino.Mail.ViewModels/MailAppShellViewModel.cs
+++ b/Wino.Mail.ViewModels/MailAppShellViewModel.cs
@@ -87,6 +87,7 @@ public partial class MailAppShellViewModel : MailBaseViewModel,
private readonly INativeAppService _nativeAppService;
private readonly IMailService _mailService;
private bool _hasRegisteredPersistentRecipients;
+ private readonly SemaphoreSlim _menuRefreshSemaphore = new(1, 1);
private readonly SemaphoreSlim accountInitFolderUpdateSlim = new SemaphoreSlim(1);
@@ -970,13 +971,21 @@ public partial class MailAppShellViewModel : MailBaseViewModel,
private async Task RecreateMenuItemsAsync()
{
- await ExecuteUIThread(() =>
+ await _menuRefreshSemaphore.WaitAsync().ConfigureAwait(false);
+ try
{
- MenuItems.Clear();
- MenuItems.Add(CreateMailMenuItem);
- });
+ await ExecuteUIThread(() =>
+ {
+ MenuItems.Clear();
+ MenuItems.Add(CreateMailMenuItem);
+ });
- await LoadAccountsAsync();
+ await LoadAccountsAsync();
+ }
+ finally
+ {
+ _menuRefreshSemaphore.Release();
+ }
}
private async Task RestoreSelectedAccountAfterMenuRefreshAsync(bool automaticallyNavigateFirstItem)
diff --git a/Wino.Mail.WinUI/App.xaml.cs b/Wino.Mail.WinUI/App.xaml.cs
index dedf4788..a185a8d2 100644
--- a/Wino.Mail.WinUI/App.xaml.cs
+++ b/Wino.Mail.WinUI/App.xaml.cs
@@ -239,6 +239,13 @@ public partial class App : WinoApplication,
if (windowManager.GetWindow(WinoWindowKind.Shell) is not ShellWindow shellWindow)
return;
+ windowManager.HideWindow(shellWindow);
+ if (ReferenceEquals(MainWindow, shellWindow))
+ {
+ MainWindow = null;
+ InitializeNavigationDispatcher();
+ }
+
shellWindow.PrepareForClose();
shellWindow.Close();
}
@@ -748,7 +755,7 @@ public partial class App : WinoApplication,
/// Creates the main window without activating it.
/// Used for both normal launch and startup task launch (tray only).
///
- private void CreateWindow(Microsoft.UI.Xaml.LaunchActivatedEventArgs? args)
+ private void CreateWindow(Microsoft.UI.Xaml.LaunchActivatedEventArgs? args, string? forcedLaunchArguments = null)
{
LogActivation("Creating main window.");
@@ -761,6 +768,12 @@ public partial class App : WinoApplication,
windowManager.SetPrimaryNavigationFrame(WinoWindowKind.Shell, shellWindow.GetMainFrame());
+ if (!string.IsNullOrWhiteSpace(forcedLaunchArguments))
+ {
+ shellWindow.HandleAppActivation(forcedLaunchArguments);
+ return;
+ }
+
var activationArgs = AppInstance.GetCurrent().GetActivatedEventArgs();
if (activationArgs.Kind == ExtendedActivationKind.Launch &&
@@ -902,7 +915,6 @@ public partial class App : WinoApplication,
_hasConfiguredAccounts = true;
var windowManager = Services.GetRequiredService();
- var navigationService = Services.GetRequiredService();
// Only transition when the account was created from the WelcomeWindow.
if (windowManager.GetWindow(WinoWindowKind.Welcome) == null)
@@ -911,12 +923,20 @@ public partial class App : WinoApplication,
MainWindow?.DispatcherQueue?.TryEnqueue(async () =>
{
// Create and activate ShellWindow — ActiveWindowChanged fires and rebinds the dispatcher.
- CreateWindow(null);
+ CreateWindow(null, GetModeLaunchArgument(WinoApplicationMode.Mail));
CloseWelcomeWindowIfPresent();
- navigationService.ChangeApplicationMode(Core.Domain.Enums.WinoApplicationMode.Mail);
if (MainWindow != null)
await ActivateWindowAsync(MainWindow);
+ if (message.Account.IsCalendarAccessGranted)
+ {
+ WeakReferenceMessenger.Default.Send(new NewCalendarSynchronizationRequested(new CalendarSynchronizationOptions
+ {
+ AccountId = message.Account.Id,
+ Type = CalendarSynchronizationType.CalendarEvents
+ }));
+ }
+
RestartAutoSynchronizationLoop();
});
}
diff --git a/Wino.Mail.WinUI/Controls/Calendar/CalendarItemControl.xaml b/Wino.Mail.WinUI/Controls/Calendar/CalendarItemControl.xaml
index 86ed725b..485f625c 100644
--- a/Wino.Mail.WinUI/Controls/Calendar/CalendarItemControl.xaml
+++ b/Wino.Mail.WinUI/Controls/Calendar/CalendarItemControl.xaml
@@ -159,8 +159,11 @@
-
+
+
+
+
diff --git a/Wino.Mail.WinUI/Controls/Calendar/CalendarPeriodControl.xaml b/Wino.Mail.WinUI/Controls/Calendar/CalendarPeriodControl.xaml
index 3b9134f8..534491d7 100644
--- a/Wino.Mail.WinUI/Controls/Calendar/CalendarPeriodControl.xaml
+++ b/Wino.Mail.WinUI/Controls/Calendar/CalendarPeriodControl.xaml
@@ -52,6 +52,7 @@
+
@@ -88,8 +89,29 @@
-
+
+
+
+
+
+
+
TimedHeaderTextsCollection { get; } = [];
private ObservableCollection MonthHeaderTextsCollection { get; } = [];
private ObservableCollection TimedItemsCollection { get; } = [];
+ private ObservableCollection TimedAllDayItemsCollection { get; } = [];
private ObservableCollection MonthCellLabelsCollection { get; } = [];
private ObservableCollection MonthItemsCollection { get; } = [];
public IEnumerable TimedHeaderTexts => TimedHeaderTextsCollection;
public IEnumerable MonthHeaderTexts => MonthHeaderTextsCollection;
public IEnumerable TimedItems => TimedItemsCollection;
+ public IEnumerable TimedAllDayItems => TimedAllDayItemsCollection;
public IEnumerable MonthCellLabels => MonthCellLabelsCollection;
public IEnumerable MonthItems => MonthItemsCollection;
@@ -155,6 +158,24 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
}
}
+ public double TimedAllDayHeight
+ {
+ get => _timedAllDayHeight;
+ private set
+ {
+ if (_timedAllDayHeight == value)
+ {
+ return;
+ }
+
+ _timedAllDayHeight = value;
+ OnPropertyChanged();
+ OnPropertyChanged(nameof(HasTimedAllDayItems));
+ }
+ }
+
+ public bool HasTimedAllDayItems => TimedAllDayHeight > 0d;
+
public double TimelineHeight => TimedCalendarLayoutCalculator.GetTimelineHeight(GetHourHeight());
partial void OnVisibleRangeChanged(VisibleDateRange? newValue) => RequestRefresh();
@@ -309,9 +330,14 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
var timedSurfaceWidth = GetTimedSurfaceWidth();
TimedDayWidth = _currentRange.Dates.Count == 0 ? 0d : timedSurfaceWidth / _currentRange.Dates.Count;
+ TimedAllDayHeight = TimedCalendarLayoutCalculator.GetAllDayHeight(
+ TimedCalendarLayoutCalculator.GetAllDayLaneCount(_currentRange.Dates, CurrentItems));
TimedScrollContentGrid.Width = ActualWidth;
TimedViewport.Width = timedSurfaceWidth;
TimedViewport.Height = TimelineHeight;
+ TimedAllDayHost.Width = timedSurfaceWidth;
+ TimedAllDayItemsCanvas.Width = timedSurfaceWidth;
+ TimedAllDayItemsCanvas.Height = TimedAllDayHeight;
_timedLayout = TimedCalendarLayoutCalculator.Calculate(_currentRange, CurrentItems, timedSurfaceWidth, GetHourHeight());
@@ -323,6 +349,12 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
TimedDayWidth)));
var eventTemplate = (DataTemplate)Resources["CalendarEventTemplate"];
+ ReplaceCollection(TimedAllDayItemsCollection, TimedCalendarLayoutCalculator.CalculateAllDayItems(_currentRange, CurrentItems, timedSurfaceWidth).Select(item =>
+ {
+ PrepareDisplayMetadata(item.Item, item.Date);
+ item.Template = eventTemplate;
+ return item;
+ }));
ReplaceCollection(TimedItemsCollection, _timedLayout.Items.Select(item =>
{
PrepareDisplayMetadata(item.Item, item.Date);
@@ -330,8 +362,10 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
return item;
}));
RenderHourLabels();
+ RenderTimedAllDayItems();
RenderTimedItems();
+ TimedAllDayCanvas.Invalidate();
TimedHeaderCanvas.Invalidate();
TimedStructureCanvas.Invalidate();
}
@@ -470,6 +504,32 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
canvas.DrawLine(0, height - 1, e.Info.Width, height - 1, borderPaint);
}
+ private void TimedAllDayCanvasPaintSurface(object? sender, SKPaintSurfaceEventArgs e)
+ {
+ using var borderPaint = CreateLinePaint();
+ var canvas = e.Surface.Canvas;
+ canvas.Clear(SKColors.Transparent);
+
+ var timedSurfaceWidth = GetTimedSurfaceWidth();
+
+ if (_timedLayout.VisibleDates.Count == 0 || timedSurfaceWidth <= 0 || TimedAllDayHeight <= 0)
+ {
+ return;
+ }
+
+ var scaleX = (float)(e.Info.Width / timedSurfaceWidth);
+ var height = e.Info.Height;
+ var dayWidth = (float)(_timedLayout.DayWidth * scaleX);
+
+ for (var index = 1; index < _timedLayout.VisibleDates.Count; index++)
+ {
+ var x = dayWidth * index;
+ canvas.DrawLine(x, 0, x, height, borderPaint);
+ }
+
+ canvas.DrawLine(0, height - 1, e.Info.Width, height - 1, borderPaint);
+ }
+
private void TimedStructureCanvasPaintSurface(object? sender, SKPaintSurfaceEventArgs e)
{
using var linePaint = CreateLinePaint();
@@ -645,6 +705,26 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
}
}
+ private void RenderTimedAllDayItems()
+ {
+ TimedAllDayItemsCanvas.Children.Clear();
+
+ foreach (var item in TimedAllDayItemsCollection)
+ {
+ var presenter = new ContentPresenter
+ {
+ Width = item.Bounds.Width,
+ Height = item.Bounds.Height,
+ Content = item.Item,
+ ContentTemplate = item.Template
+ };
+
+ Canvas.SetLeft(presenter, item.Bounds.X);
+ Canvas.SetTop(presenter, item.Bounds.Y);
+ TimedAllDayItemsCanvas.Children.Add(presenter);
+ }
+ }
+
private void RenderMonthCellLabels()
{
MonthCellLabelsCanvas.Children.Clear();
@@ -897,6 +977,7 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
private void ResetTimedVisualState()
{
ResetAnimatedElement(TimedScrollViewer);
+ ResetAnimatedElement(TimedAllDayHost);
}
private static void StartNavigationTransition(Compositor compositor, Visual visual, int direction, double width)
@@ -926,6 +1007,10 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
var clipInset = (float)Math.Max(18d, Math.Min(64d, width * 0.05d));
StartTimedElementTransition(compositor, TimedScrollViewer, signedTravel, 0f, 0.68f, TimeSpan.FromMilliseconds(240), direction >= 0 ? 0f : clipInset, direction >= 0 ? clipInset : 0f, animateScale: false);
+ if (HasTimedAllDayItems)
+ {
+ StartTimedElementTransition(compositor, TimedAllDayHost, signedTravel, 0f, 0.68f, TimeSpan.FromMilliseconds(240), direction >= 0 ? 0f : clipInset, direction >= 0 ? clipInset : 0f, animateScale: false);
+ }
}
private static void StartModeTransition(Compositor compositor, Visual visual)
@@ -953,6 +1038,10 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
private void StartTimedModeTransition(Compositor compositor)
{
StartTimedElementTransition(compositor, TimedScrollViewer, 0f, 18f, 0f, TimeSpan.FromMilliseconds(240), 0f, 0f, animateScale: false);
+ if (HasTimedAllDayItems)
+ {
+ StartTimedElementTransition(compositor, TimedAllDayHost, 0f, 18f, 0f, TimeSpan.FromMilliseconds(240), 0f, 0f, animateScale: false);
+ }
}
private static void StartRefreshTransition(Compositor compositor, Visual visual)
@@ -968,6 +1057,10 @@ public sealed partial class CalendarPeriodControl : UserControl, INotifyProperty
private void StartTimedRefreshTransition(Compositor compositor)
{
StartOpacityTransition(compositor, ElementCompositionPreview.GetElementVisual(TimedScrollViewer), 0.8f, TimeSpan.FromMilliseconds(160));
+ if (HasTimedAllDayItems)
+ {
+ StartOpacityTransition(compositor, ElementCompositionPreview.GetElementVisual(TimedAllDayHost), 0.8f, TimeSpan.FromMilliseconds(160));
+ }
}
private static void PrepareAnimatedVisual(Visual visual, UIElement target)
diff --git a/Wino.Mail.WinUI/Controls/Calendar/TimedCalendarLayout.cs b/Wino.Mail.WinUI/Controls/Calendar/TimedCalendarLayout.cs
index b0bdfd23..464a7e2e 100644
--- a/Wino.Mail.WinUI/Controls/Calendar/TimedCalendarLayout.cs
+++ b/Wino.Mail.WinUI/Controls/Calendar/TimedCalendarLayout.cs
@@ -29,8 +29,24 @@ internal sealed record TimedCalendarLayoutResult(IReadOnlyList Visible
internal static class TimedCalendarLayoutCalculator
{
+ private const double AllDayItemHeight = 28d;
+ private const double AllDayItemGap = 4d;
+ private const double AllDaySectionPadding = 6d;
+
public static double GetTimelineHeight(double hourHeight) => hourHeight * 24d;
+ public static double GetAllDayHeight(int laneCount)
+ {
+ if (laneCount <= 0)
+ {
+ return 0d;
+ }
+
+ return (AllDaySectionPadding * 2d) +
+ (laneCount * AllDayItemHeight) +
+ ((laneCount - 1) * AllDayItemGap);
+ }
+
public static TimedCalendarLayoutResult Calculate(VisibleDateRange range, IEnumerable items, double availableWidth, double hourHeight)
{
var visibleDates = range.Dates;
@@ -79,6 +95,11 @@ internal static class TimedCalendarLayoutCalculator
continue;
}
+ if (item.IsAllDayEvent)
+ {
+ continue;
+ }
+
var localStart = start.LocalDateTime;
var localEnd = end.LocalDateTime;
@@ -101,6 +122,50 @@ internal static class TimedCalendarLayoutCalculator
return segments;
}
+ public static IReadOnlyList CalculateAllDayItems(VisibleDateRange range, IEnumerable items, double availableWidth)
+ {
+ var visibleDates = range.Dates;
+ var dayWidth = visibleDates.Count == 0 ? 0d : availableWidth / visibleDates.Count;
+ var layouts = new List();
+
+ for (var dayIndex = 0; dayIndex < visibleDates.Count; dayIndex++)
+ {
+ var date = visibleDates[dayIndex];
+ var dayItems = BuildAllDayItems(items, date)
+ .OrderBy(item => item.StartDate)
+ .ThenBy(item => item.EndDate)
+ .ThenBy(item => item.Title)
+ .ToList();
+
+ for (var rowIndex = 0; rowIndex < dayItems.Count; rowIndex++)
+ {
+ var y = AllDaySectionPadding + (rowIndex * (AllDayItemHeight + AllDayItemGap));
+ var x = (dayIndex * dayWidth) + 2d;
+ var width = Math.Max(0d, dayWidth - 4d);
+
+ layouts.Add(new TimedItemLayout(
+ dayItems[rowIndex],
+ dayIndex,
+ date,
+ new LayoutRect(x, y, width, AllDayItemHeight)));
+ }
+ }
+
+ return layouts;
+ }
+
+ public static int GetAllDayLaneCount(IReadOnlyList visibleDates, IEnumerable items)
+ {
+ var laneCount = 0;
+
+ foreach (var date in visibleDates)
+ {
+ laneCount = Math.Max(laneCount, BuildAllDayItems(items, date).Count);
+ }
+
+ return laneCount;
+ }
+
private static IEnumerable> BuildClusters(List segments)
{
if (segments.Count == 0)
@@ -130,6 +195,41 @@ internal static class TimedCalendarLayoutCalculator
yield return cluster;
}
+ private static List BuildAllDayItems(IEnumerable items, DateOnly date)
+ {
+ var dayStart = date.ToDateTime(TimeOnly.MinValue);
+ var dayEnd = dayStart.AddDays(1);
+ var allDayItems = new List();
+
+ foreach (var item in items)
+ {
+ if (!item.IsAllDayEvent)
+ {
+ continue;
+ }
+
+ if (!CalendarItemAccessor.TryGetTimeRange(item, out var start, out var end))
+ {
+ continue;
+ }
+
+ var localStart = start.LocalDateTime;
+ var localEnd = end.LocalDateTime;
+
+ if (localEnd <= localStart)
+ {
+ continue;
+ }
+
+ if (localStart < dayEnd && localEnd > dayStart)
+ {
+ allDayItems.Add(item);
+ }
+ }
+
+ return allDayItems;
+ }
+
private static void AssignColumns(List segments)
{
var columnEnds = new List();
diff --git a/Wino.Mail.WinUI/Services/NewThemeService.cs b/Wino.Mail.WinUI/Services/NewThemeService.cs
index 4d8b83fa..589dd30a 100644
--- a/Wino.Mail.WinUI/Services/NewThemeService.cs
+++ b/Wino.Mail.WinUI/Services/NewThemeService.cs
@@ -189,14 +189,7 @@ public class NewThemeService : INewThemeService
public FrameworkElement GetShellRootContent()
{
- var window = GetThemeWindow();
- if (window is IWinoShellWindow shellWindow)
- return shellWindow.GetRootContent();
-
- if (window?.Content is FrameworkElement frameworkElement)
- return frameworkElement;
-
- throw new Exception("No root content found");
+ return TryGetShellRootContent() ?? throw new Exception("No root content found");
}
private bool isInitialized = false;
@@ -680,10 +673,18 @@ public class NewThemeService : INewThemeService
if (window == null)
return null;
- if (window is IWinoShellWindow shellWindow)
- return shellWindow.GetRootContent();
+ try
+ {
+ if (window is IWinoShellWindow shellWindow)
+ return shellWindow.GetRootContent();
- return window.Content as FrameworkElement;
+ return window.Content as FrameworkElement;
+ }
+ catch (Exception ex)
+ {
+ Debug.WriteLine($"Skipping root content lookup for closed window: {ex.Message}");
+ return null;
+ }
}
public async Task ApplyThemeToActiveWindowAsync()
diff --git a/tmp_Views__Calendar__CalendarPage_xaml.input.json b/tmp_Views__Calendar__CalendarPage_xaml.input.json
deleted file mode 100644
index d7c826ea..00000000
--- a/tmp_Views__Calendar__CalendarPage_xaml.input.json
+++ /dev/null
@@ -1,5173 +0,0 @@
-{
- "ProjectPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Wino.Mail.WinUI.csproj",
- "Language": "C#",
- "LanguageSourceExtension": ".cs",
- "OutputPath": "obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\",
- "ReferenceAssemblies": [
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Accessibility.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Accessibility.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\azure.core\\1.50.0\\lib\\net8.0\\Azure.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\azure.core\\1.50.0\\lib\\net8.0\\Azure.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\lib\\net6.0\\BouncyCastle.Cryptography.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\lib\\net6.0\\BouncyCastle.Cryptography.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\colorhashsharp\\1.1.0\\lib\\net9.0\\ColorHashSharp.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\colorhashsharp\\1.1.0\\lib\\net9.0\\ColorHashSharp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.common\\8.4.0\\lib\\net8.0\\CommunityToolkit.Common.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.common\\8.4.0\\lib\\net8.0\\CommunityToolkit.Common.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.diagnostics\\8.4.0\\lib\\net8.0\\CommunityToolkit.Diagnostics.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.diagnostics\\8.4.0\\lib\\net8.0\\CommunityToolkit.Diagnostics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.mvvm\\8.4.1-build.4\\lib\\net8.0-windows10.0.17763\\CommunityToolkit.Mvvm.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.mvvm\\8.4.1-build.4\\lib\\net8.0-windows10.0.17763\\CommunityToolkit.Mvvm.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.animations\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Animations.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.animations\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Animations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.primitives\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Primitives.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.primitives\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.segmented\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Segmented.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.segmented\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Segmented.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.settingscontrols\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.SettingsControls.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.settingscontrols\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.SettingsControls.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.sizers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Sizers.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.sizers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Sizers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tabbedcommandbar\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TabbedCommandBar.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tabbedcommandbar\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TabbedCommandBar.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tokenizingtextbox\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TokenizingTextBox.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tokenizingtextbox\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TokenizingTextBox.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.labs.winui.dependencypropertygenerator\\0.1.250926-build.2293\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.DependencyPropertyGenerator.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.labs.winui.dependencypropertygenerator\\0.1.250926-build.2293\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.DependencyPropertyGenerator.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.extensions\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Extensions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.extensions\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.helpers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Helpers.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.helpers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Helpers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.triggers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Triggers.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.triggers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Triggers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\emailvalidation\\1.3.0\\lib\\net8.0\\EmailValidation.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\emailvalidation\\1.3.0\\lib\\net8.0\\EmailValidation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.auth\\1.73.0\\lib\\net6.0\\Google.Apis.Auth.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.auth\\1.73.0\\lib\\net6.0\\Google.Apis.Auth.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.calendar.v3\\1.73.0.4063\\lib\\net6.0\\Google.Apis.Calendar.v3.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.calendar.v3\\1.73.0.4063\\lib\\net6.0\\Google.Apis.Calendar.v3.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.core\\1.73.0\\lib\\net6.0\\Google.Apis.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.core\\1.73.0\\lib\\net6.0\\Google.Apis.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis\\1.73.0\\lib\\net6.0\\Google.Apis.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis\\1.73.0\\lib\\net6.0\\Google.Apis.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.drive.v3\\1.73.0.4068\\lib\\net6.0\\Google.Apis.Drive.v3.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.drive.v3\\1.73.0.4068\\lib\\net6.0\\Google.Apis.Drive.v3.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.gmail.v1\\1.73.0.4029\\lib\\net6.0\\Google.Apis.Gmail.v1.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.gmail.v1\\1.73.0.4029\\lib\\net6.0\\Google.Apis.Gmail.v1.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.peopleservice.v1\\1.72.0.3973\\lib\\net6.0\\Google.Apis.PeopleService.v1.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.peopleservice.v1\\1.72.0.3973\\lib\\net6.0\\Google.Apis.PeopleService.v1.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\gravatar-dotnet\\0.1.3\\lib\\net6.0\\gravatar-dotnet.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\gravatar-dotnet\\0.1.3\\lib\\net6.0\\gravatar-dotnet.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\htmlagilitypack\\1.12.4\\lib\\net7.0\\HtmlAgilityPack.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\htmlagilitypack\\1.12.4\\lib\\net7.0\\HtmlAgilityPack.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\htmlkit\\1.2.0\\lib\\net8.0\\HtmlKit.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\htmlkit\\1.2.0\\lib\\net8.0\\HtmlKit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\ical.net\\4.3.1\\lib\\net8.0\\Ical.Net.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\ical.net\\4.3.1\\lib\\net8.0\\Ical.Net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\timeperiodlibrary.net\\2.1.6\\lib\\net9.0\\Itenso.TimePeriod.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\timeperiodlibrary.net\\2.1.6\\lib\\net9.0\\Itenso.TimePeriod.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\mailkit\\4.15.1\\lib\\net10.0\\MailKit.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\mailkit\\4.15.1\\lib\\net10.0\\MailKit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\lib\\netstandard2.1\\Microsoft.Bcl.AsyncInterfaces.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\lib\\netstandard2.1\\Microsoft.Bcl.AsyncInterfaces.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.CSharp.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.CSharp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\lib\\net10.0\\Microsoft.Extensions.Logging.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\lib\\net10.0\\Microsoft.Extensions.Logging.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph.core\\3.2.5\\lib\\net6.0\\Microsoft.Graph.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph.core\\3.2.5\\lib\\net6.0\\Microsoft.Graph.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph\\5.103.0\\lib\\net5.0\\Microsoft.Graph.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph\\5.103.0\\lib\\net5.0\\Microsoft.Graph.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graphics.win2d\\1.3.2\\lib\\net6.0-windows10.0.19041.0\\Microsoft.Graphics.Canvas.Interop.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graphics.win2d\\1.3.2\\lib\\net6.0-windows10.0.19041.0\\Microsoft.Graphics.Canvas.Interop.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Graphics.Imaging.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Graphics.Imaging.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.broker\\4.82.1\\lib\\netstandard2.0\\Microsoft.Identity.Client.Broker.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.broker\\4.82.1\\lib\\netstandard2.0\\Microsoft.Identity.Client.Broker.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.Extensions.Msal.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.Extensions.Msal.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.nativeinterop\\0.19.4\\lib\\net9.0\\Microsoft.Identity.Client.NativeInterop.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.nativeinterop\\0.19.4\\lib\\net9.0\\Microsoft.Identity.Client.NativeInterop.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.JsonWebTokens.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.JsonWebTokens.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.logging\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Logging.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.logging\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Logging.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Tokens.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Tokens.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.validators\\8.6.1\\lib\\net9.0\\Microsoft.IdentityModel.Validators.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.validators\\8.6.1\\lib\\net9.0\\Microsoft.IdentityModel.Validators.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.interactiveexperiences\\2.0.250912002-experimental\\lib\\net6.0-windows10.0.18362.0\\Microsoft.InteractiveExperiences.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.interactiveexperiences\\2.0.250912002-experimental\\lib\\net6.0-windows10.0.18362.0\\Microsoft.InteractiveExperiences.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.abstractions\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.abstractions\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.authentication.azure\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Authentication.Azure.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.authentication.azure\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Authentication.Azure.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.http.httpclientlibrary\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Http.HttpClientLibrary.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.http.httpclientlibrary\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Http.HttpClientLibrary.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.form\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Form.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.form\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Form.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.json\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Json.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.json\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.multipart\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Multipart.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.multipart\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Multipart.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.text\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Text.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.text\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Text.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net8.0\\Microsoft.ML.OnnxRuntime.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net8.0\\Microsoft.ML.OnnxRuntime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Security.Authentication.OAuth.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Security.Authentication.OAuth.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.toolkit.uwp.notifications\\7.1.3\\lib\\net5.0-windows10.0.17763\\Microsoft.Toolkit.Uwp.Notifications.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.toolkit.uwp.notifications\\7.1.3\\lib\\net5.0-windows10.0.17763\\Microsoft.Toolkit.Uwp.Notifications.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Core.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Forms.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Forms.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.web.webview2\\1.0.3405.78\\lib_manual\\net8.0-windows10.0.17763.0\\Microsoft.Web.WebView2.Core.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.web.webview2\\1.0.3405.78\\lib_manual\\net8.0-windows10.0.17763.0\\Microsoft.Web.WebView2.Core.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.win32.systemevents\\10.0.3\\lib\\net10.0\\Microsoft.Win32.SystemEvents.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.win32.systemevents\\10.0.3\\lib\\net10.0\\Microsoft.Win32.SystemEvents.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.ContentSafety.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.ContentSafety.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Foundation.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Foundation.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Imaging.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Imaging.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.MachineLearning.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.MachineLearning.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Text.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Text.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Background.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Background.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppLifecycle.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppLifecycle.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Builder.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Builder.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.BadgeNotifications.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.BadgeNotifications.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Foundation.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Foundation.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Management.Deployment.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Management.Deployment.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Media.Capture.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Media.Capture.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.PushNotifications.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.PushNotifications.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\Microsoft.Windows.SDK.NET.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\Microsoft.Windows.SDK.NET.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Security.AccessControl.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Security.AccessControl.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Pickers.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Pickers.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Power.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Power.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.widgets\\2.0.250918003-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Widgets.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.widgets\\2.0.250918003-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Widgets.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.winui\\2.0.250930000-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WinUI.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.winui\\2.0.250930000-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WinUI.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.xaml.behaviors.winui.managed\\3.0.1\\lib\\net8.0-windows10.0.17763.0\\Microsoft.Xaml.Interactivity.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.xaml.behaviors.winui.managed\\3.0.1\\lib\\net8.0-windows10.0.17763.0\\Microsoft.Xaml.Interactivity.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\mimekit\\4.15.1\\lib\\net10.0\\MimeKit.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\mimekit\\4.15.1\\lib\\net10.0\\MimeKit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\morelinq\\4.4.0\\lib\\net9.0\\MoreLinq.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\morelinq\\4.4.0\\lib\\net9.0\\MoreLinq.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\mscorlib.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\mscorlib.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\netstandard.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\netstandard.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\newtonsoft.json\\13.0.4\\lib\\net6.0\\Newtonsoft.Json.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\newtonsoft.json\\13.0.4\\lib\\net6.0\\Newtonsoft.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\lib\\netstandard2.0\\Nito.AsyncEx.Tasks.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\lib\\netstandard2.0\\Nito.AsyncEx.Tasks.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\nito.disposables\\2.2.1\\lib\\netstandard2.1\\Nito.Disposables.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\nito.disposables\\2.2.1\\lib\\netstandard2.1\\Nito.Disposables.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\nodatime\\3.3.1\\lib\\net8.0\\NodaTime.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\nodatime\\3.3.1\\lib\\net8.0\\NodaTime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationCore.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationCore.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero2.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero2.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.AeroLite.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.AeroLite.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Classic.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Classic.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Luna.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Luna.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Royale.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Royale.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationUI.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationUI.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\ReachFramework.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\ReachFramework.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sentry\\6.1.0\\lib\\net10.0\\Sentry.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sentry\\6.1.0\\lib\\net10.0\\Sentry.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sentry.serilog\\6.1.0\\lib\\net10.0\\Sentry.Serilog.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sentry.serilog\\6.1.0\\lib\\net10.0\\Sentry.Serilog.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog\\4.3.1\\lib\\net10.0\\Serilog.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog\\4.3.1\\lib\\net10.0\\Serilog.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.exceptions\\8.4.0\\lib\\net6.0\\Serilog.Exceptions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.exceptions\\8.4.0\\lib\\net6.0\\Serilog.Exceptions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.debug\\3.0.0\\lib\\net8.0\\Serilog.Sinks.Debug.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.debug\\3.0.0\\lib\\net8.0\\Serilog.Sinks.Debug.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.file\\7.0.0\\lib\\net9.0\\Serilog.Sinks.File.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.file\\7.0.0\\lib\\net9.0\\Serilog.Sinks.File.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp\\3.119.2\\ref\\net8.0-windows10.0.19041\\SkiaSharp.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp\\3.119.2\\ref\\net8.0-windows10.0.19041\\SkiaSharp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp.views.winui\\3.119.2\\lib\\net8.0-windows10.0.19041\\SkiaSharp.Views.Windows.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp.views.winui\\3.119.2\\lib\\net8.0-windows10.0.19041\\SkiaSharp.Views.Windows.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlite-net-pcl\\1.10.196-beta\\lib\\net9.0\\SQLite-net.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlite-net-pcl\\1.10.196-beta\\lib\\net9.0\\SQLite-net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.bundle_green\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.batteries_v2.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.bundle_green\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.batteries_v2.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.core\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.core\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.2\\lib\\net6.0-windows7.0\\SQLitePCLRaw.provider.e_sqlite3.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.2\\lib\\net6.0-windows7.0\\SQLitePCLRaw.provider.e_sqlite3.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\std.uritemplate\\2.0.8\\lib\\net5.0\\Std.UriTemplate.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\std.uritemplate\\2.0.8\\lib\\net5.0\\Std.UriTemplate.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.AppContext.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.AppContext.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Buffers.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Buffers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.clientmodel\\1.8.0\\lib\\net9.0\\System.ClientModel.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.clientmodel\\1.8.0\\lib\\net9.0\\System.ClientModel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.CodeDom.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.CodeDom.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Concurrent.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Concurrent.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Immutable.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Immutable.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.NonGeneric.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.NonGeneric.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Specialized.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Specialized.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Annotations.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Annotations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.DataAnnotations.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.DataAnnotations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.EventBasedAsync.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.EventBasedAsync.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.TypeConverter.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.TypeConverter.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.ConfigurationManager.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.ConfigurationManager.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Console.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Console.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Core.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.Common.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.Common.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.DataSetExtensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.DataSetExtensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Design.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Design.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Contracts.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Contracts.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Debug.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Debug.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.DiagnosticSource.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.DiagnosticSource.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.EventLog.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.EventLog.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.FileVersionInfo.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.FileVersionInfo.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.PerformanceCounter.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.PerformanceCounter.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Process.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Process.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.StackTrace.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.StackTrace.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TextWriterTraceListener.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TextWriterTraceListener.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tools.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tools.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TraceSource.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TraceSource.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tracing.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tracing.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.DirectoryServices.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.DirectoryServices.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Drawing.Common.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Drawing.Common.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Design.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Design.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Dynamic.Runtime.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Dynamic.Runtime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Asn1.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Asn1.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Nrbf.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Nrbf.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Tar.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Tar.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Calendars.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Calendars.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.15.0\\lib\\net10.0\\System.IdentityModel.Tokens.Jwt.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.15.0\\lib\\net10.0\\System.IdentityModel.Tokens.Jwt.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.Brotli.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.Brotli.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.FileSystem.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.FileSystem.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.ZipFile.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.ZipFile.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.DriveInfo.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.DriveInfo.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Watcher.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Watcher.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.IsolatedStorage.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.IsolatedStorage.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.MemoryMappedFiles.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.MemoryMappedFiles.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Packaging.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Packaging.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipelines.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipelines.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.UnmanagedMemoryStream.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.UnmanagedMemoryStream.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.AsyncEnumerable.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.AsyncEnumerable.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Expressions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Expressions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Parallel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Parallel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Queryable.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Queryable.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.management\\7.0.2\\lib\\net7.0\\System.Management.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.management\\7.0.2\\lib\\net7.0\\System.Management.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.memory.data\\8.0.1\\lib\\net8.0\\System.Memory.Data.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.memory.data\\8.0.1\\lib\\net8.0\\System.Memory.Data.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Memory.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Memory.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.Json.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.HttpListener.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.HttpListener.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Mail.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Mail.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NameResolution.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NameResolution.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NetworkInformation.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NetworkInformation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Ping.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Ping.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Quic.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Quic.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Requests.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Requests.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Security.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Security.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServerSentEvents.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServerSentEvents.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServicePoint.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServicePoint.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Sockets.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Sockets.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebClient.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebClient.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebHeaderCollection.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebHeaderCollection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebProxy.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebProxy.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.Client.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.Client.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.Vectors.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.Vectors.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ObjectModel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ObjectModel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Printing.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Printing.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.GdiPlus.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.GdiPlus.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.reactive\\6.1.0\\lib\\net6.0-windows10.0.19041\\System.Reactive.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.reactive\\6.1.0\\lib\\net6.0-windows10.0.19041\\System.Reactive.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.DispatchProxy.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.DispatchProxy.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.ILGeneration.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.ILGeneration.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.Lightweight.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.Lightweight.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Metadata.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Metadata.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.TypeExtensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.TypeExtensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Reader.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Reader.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.ResourceManager.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.ResourceManager.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Writer.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Writer.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.Unsafe.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.Unsafe.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.VisualC.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.VisualC.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Handles.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Handles.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.JavaScript.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.JavaScript.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.RuntimeInformation.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.RuntimeInformation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Intrinsics.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Intrinsics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Loader.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Loader.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Numerics.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Numerics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Formatters.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Formatters.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Json.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Xml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Xml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Claims.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Claims.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Algorithms.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Algorithms.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Cng.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Cng.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Csp.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Csp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Encoding.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Encoding.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.OpenSsl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.OpenSsl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Pkcs.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Pkcs.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.ProtectedData.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.ProtectedData.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.X509Certificates.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.X509Certificates.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Xml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Xml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Permissions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Permissions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.Windows.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.Windows.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.SecureString.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.SecureString.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceModel.Web.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceModel.Web.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceProcess.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceProcess.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.CodePages.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.CodePages.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encodings.Web.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encodings.Web.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Json.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.RegularExpressions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.RegularExpressions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Channels.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Channels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Overlapped.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Overlapped.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Dataflow.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Dataflow.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Parallel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Parallel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Thread.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Thread.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.ThreadPool.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.ThreadPool.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Timer.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Timer.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.Local.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.Local.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ValueTuple.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ValueTuple.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.HttpUtility.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.HttpUtility.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Controls.Ribbon.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Controls.Ribbon.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.Editors.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.Editors.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Input.Manipulations.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Input.Manipulations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Presentation.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Presentation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Xaml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Xaml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Linq.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Linq.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.ReaderWriter.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.ReaderWriter.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Serialization.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Serialization.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XDocument.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XDocument.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlDocument.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlDocument.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlSerializer.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlSerializer.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.XDocument.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.XDocument.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClient.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClient.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClientSideProviders.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClientSideProviders.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationProvider.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationProvider.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationTypes.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationTypes.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsBase.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsBase.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsFormsIntegration.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsFormsIntegration.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Authentication\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Authentication.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Authentication\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Authentication.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Calendar.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Calendar.ViewModels.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Calendar.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Calendar.ViewModels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Core\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Core\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Core.Domain\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.Domain.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Core.Domain\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.Domain.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Core.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.ViewModels.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Core.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.ViewModels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\wino.mail.contracts\\1.0.7\\lib\\net10.0\\Wino.Mail.Contracts.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\wino.mail.contracts\\1.0.7\\lib\\net10.0\\Wino.Mail.Contracts.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Mail.ViewModels.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Mail.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Mail.ViewModels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Messages\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Messaging.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Messages\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Messaging.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Services\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Services.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Services\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Services.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\WinRT.Runtime.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\WinRT.Runtime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\winuiex\\2.9.0\\lib\\net8.0-windows10.0.19041\\WinUIEx.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\winuiex\\2.9.0\\lib\\net8.0-windows10.0.19041\\WinUIEx.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "TargetPlatformMinVersion": "10.0.17763.0",
- "ReferenceAssemblyPaths": [],
- "BuildConfiguration": null,
- "ForceSharedStateShutdown": false,
- "DisableXbfGeneration": false,
- "DisableXbfLineInfo": false,
- "EnableXBindDiagnostics": false,
- "ClIncludeFiles": null,
- "CIncludeDirectories": null,
- "XamlApplications": [
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\App.xaml",
- "ItemSpec": "App.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "XamlPages": [
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\AccountCreationDialogControl.xaml",
- "ItemSpec": "Controls\\AccountCreationDialogControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\AppModeFooterSwitcherControl.xaml",
- "ItemSpec": "Controls\\AppModeFooterSwitcherControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\CalendarMailItemDisplayInformationControl.xaml",
- "ItemSpec": "Controls\\CalendarMailItemDisplayInformationControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\Calendar\\CalendarItemControl.xaml",
- "ItemSpec": "Controls\\Calendar\\CalendarItemControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\Calendar\\CalendarPeriodControl.xaml",
- "ItemSpec": "Controls\\Calendar\\CalendarPeriodControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\EditorTabbedCommandBarControl.xaml",
- "ItemSpec": "Controls\\EditorTabbedCommandBarControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\ListView\\WinoListViewStyles.xaml",
- "ItemSpec": "Controls\\ListView\\WinoListViewStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\MailItemDisplayInformationControl.xaml",
- "ItemSpec": "Controls\\MailItemDisplayInformationControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\UpdateNotesFlipViewControl.xaml",
- "ItemSpec": "Controls\\UpdateNotesFlipViewControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\CoreGeneric.xaml",
- "ItemSpec": "CoreGeneric.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\AccountCreationDialog.xaml",
- "ItemSpec": "Dialogs\\AccountCreationDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\AccountPickerDialog.xaml",
- "ItemSpec": "Dialogs\\AccountPickerDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\AccountReorderDialog.xaml",
- "ItemSpec": "Dialogs\\AccountReorderDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\ContactEditDialog.xaml",
- "ItemSpec": "Dialogs\\ContactEditDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\CreateAccountAliasDialog.xaml",
- "ItemSpec": "Dialogs\\CreateAccountAliasDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\CustomThemeBuilderDialog.xaml",
- "ItemSpec": "Dialogs\\CustomThemeBuilderDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\KeyboardShortcutDialog.xaml",
- "ItemSpec": "Dialogs\\KeyboardShortcutDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\MessageSourceDialog.xaml",
- "ItemSpec": "Dialogs\\MessageSourceDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\MoveMailDialog.xaml",
- "ItemSpec": "Dialogs\\MoveMailDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\NewAccountDialog.xaml",
- "ItemSpec": "Dialogs\\NewAccountDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\PrintDialog.xaml",
- "ItemSpec": "Dialogs\\PrintDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\SignatureEditorDialog.xaml",
- "ItemSpec": "Dialogs\\SignatureEditorDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\SingleCalendarPickerDialog.xaml",
- "ItemSpec": "Dialogs\\SingleCalendarPickerDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\SystemFolderConfigurationDialog.xaml",
- "ItemSpec": "Dialogs\\SystemFolderConfigurationDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\TextInputDialog.xaml",
- "ItemSpec": "Dialogs\\TextInputDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WhatIsNewDialog.xaml",
- "ItemSpec": "Dialogs\\WhatIsNewDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WinoAccountEmailConfirmationRequiredDialog.xaml",
- "ItemSpec": "Dialogs\\WinoAccountEmailConfirmationRequiredDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WinoAccountLoginDialog.xaml",
- "ItemSpec": "Dialogs\\WinoAccountLoginDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WinoAccountRegistrationDialog.xaml",
- "ItemSpec": "Dialogs\\WinoAccountRegistrationDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\ShellWindow.xaml",
- "ItemSpec": "ShellWindow.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CalendarShellNavigationViewStyle.xaml",
- "ItemSpec": "Styles\\CalendarShellNavigationViewStyle.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CalendarThemeResources.xaml",
- "ItemSpec": "Styles\\CalendarThemeResources.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CalendarViewStyles.xaml",
- "ItemSpec": "Styles\\CalendarViewStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\Colors.xaml",
- "ItemSpec": "Styles\\Colors.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\ContentPresenters.xaml",
- "ItemSpec": "Styles\\ContentPresenters.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\Converters.xaml",
- "ItemSpec": "Styles\\Converters.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CustomMessageDialogStyles.xaml",
- "ItemSpec": "Styles\\CustomMessageDialogStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\DataTemplates.xaml",
- "ItemSpec": "Styles\\DataTemplates.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\FontIcons.xaml",
- "ItemSpec": "Styles\\FontIcons.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\IconTemplates.xaml",
- "ItemSpec": "Styles\\IconTemplates.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\ImagePreviewControl.xaml",
- "ItemSpec": "Styles\\ImagePreviewControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\ItemContainerStyles.xaml",
- "ItemSpec": "Styles\\ItemContainerStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\SharedStyles.xaml",
- "ItemSpec": "Styles\\SharedStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WebViewEditorControl.xaml",
- "ItemSpec": "Styles\\WebViewEditorControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WinoCalendarTypeSelectorControl.xaml",
- "ItemSpec": "Styles\\WinoCalendarTypeSelectorControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WinoExpanderStyle.xaml",
- "ItemSpec": "Styles\\WinoExpanderStyle.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WinoInfoBar.xaml",
- "ItemSpec": "Styles\\WinoInfoBar.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\AccountSetupProgressPage.xaml",
- "ItemSpec": "Views\\AccountSetupProgressPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\AccountDetailsPage.xaml",
- "ItemSpec": "Views\\Account\\AccountDetailsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\AccountManagementPage.xaml",
- "ItemSpec": "Views\\Account\\AccountManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\ImapCalDavSettingsPage.xaml",
- "ItemSpec": "Views\\Account\\ImapCalDavSettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\MergedAccountDetailsPage.xaml",
- "ItemSpec": "Views\\Account\\MergedAccountDetailsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarAccountSettingsPage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarAccountSettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarEventComposePage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarEventComposePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarPage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarSettingsPage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarSettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\EventDetailsPage.xaml",
- "ItemSpec": "Views\\Calendar\\EventDetailsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Contacts\\ContactsAppShell.xaml",
- "ItemSpec": "Views\\Contacts\\ContactsAppShell.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\ComposePage.xaml",
- "ItemSpec": "Views\\Mail\\ComposePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\IdlePage.xaml",
- "ItemSpec": "Views\\Mail\\IdlePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\MailListPage.xaml",
- "ItemSpec": "Views\\Mail\\MailListPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\MailRenderingPage.xaml",
- "ItemSpec": "Views\\Mail\\MailRenderingPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\ManageAccountsPage.xaml",
- "ItemSpec": "Views\\ManageAccountsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\ProviderSelectionPage.xaml",
- "ItemSpec": "Views\\ProviderSelectionPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\SettingOptionsPage.xaml",
- "ItemSpec": "Views\\SettingOptionsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\SettingsPage.xaml",
- "ItemSpec": "Views\\SettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\AboutPage.xaml",
- "ItemSpec": "Views\\Settings\\AboutPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\AliasManagementPage.xaml",
- "ItemSpec": "Views\\Settings\\AliasManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\AppPreferencesPage.xaml",
- "ItemSpec": "Views\\Settings\\AppPreferencesPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\ContactsPage.xaml",
- "ItemSpec": "Views\\Settings\\ContactsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\CreateEmailTemplatePage.xaml",
- "ItemSpec": "Views\\Settings\\CreateEmailTemplatePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\EmailTemplatesPage.xaml",
- "ItemSpec": "Views\\Settings\\EmailTemplatesPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\KeyboardShortcutsPage.xaml",
- "ItemSpec": "Views\\Settings\\KeyboardShortcutsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\LanguageTimePage.xaml",
- "ItemSpec": "Views\\Settings\\LanguageTimePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\MessageListPage.xaml",
- "ItemSpec": "Views\\Settings\\MessageListPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\PersonalizationPage.xaml",
- "ItemSpec": "Views\\Settings\\PersonalizationPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\ReadComposePanePage.xaml",
- "ItemSpec": "Views\\Settings\\ReadComposePanePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\SignatureAndEncryptionPage.xaml",
- "ItemSpec": "Views\\Settings\\SignatureAndEncryptionPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\SignatureManagementPage.xaml",
- "ItemSpec": "Views\\Settings\\SignatureManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\StoragePage.xaml",
- "ItemSpec": "Views\\Settings\\StoragePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\WinoAccountManagementPage.xaml",
- "ItemSpec": "Views\\Settings\\WinoAccountManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\SpecialImapCredentialsPage.xaml",
- "ItemSpec": "Views\\SpecialImapCredentialsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\WelcomeHostPage.xaml",
- "ItemSpec": "Views\\WelcomeHostPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\WelcomePageV2.xaml",
- "ItemSpec": "Views\\WelcomePageV2.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\WinoAppShell.xaml",
- "ItemSpec": "Views\\WinoAppShell.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\WelcomeWindow.xaml",
- "ItemSpec": "WelcomeWindow.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "LocalAssembly": [
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\intermediatexaml\\Wino.Mail.WinUI.dll",
- "ItemSpec": "obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\intermediatexaml\\Wino.Mail.WinUI.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "SdkXamlPages": null,
- "ProjectName": "Wino.Mail.WinUI",
- "IsPass1": false,
- "RootNamespace": "Wino.Mail.WinUI",
- "OutputType": "WinExe",
- "PriIndexName": null,
- "CodeGenerationControlFlags": null,
- "FeatureControlFlags": "EnableXBindDiagnostics;EnableDefaultValidationContextGeneration;EnableWin32Codegen;UsingCSWinRT;EnableBindingDiagnostics",
- "XAMLFingerprint": true,
- "UseVCMetaManaged": true,
- "FingerprintIgnorePaths": null,
- "VCInstallDir": null,
- "VCInstallPath32": null,
- "VCInstallPath64": null,
- "WindowsSdkPath": null,
- "CompileMode": "RealBuildPass2",
- "SavedStateFile": "obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\\\XamlSaveStateFile.xml",
- "RootsLog": null,
- "SuppressWarnings": null,
- "GenXbfPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.winui\\2.0.250930000-experimental\\buildTransitive\\..\\tools\\net6.0\\..\\",
- "PrecompiledHeaderFile": null,
- "XamlResourceMapName": null,
- "XamlComponentResourceLocation": null,
- "XamlPlatform": null,
- "TargetFileName": null,
- "IgnoreSpecifiedTargetPlatformMinVersion": false
-}
diff --git a/tmp_Views__Calendar__CalendarSettingsPage_xaml.input.json b/tmp_Views__Calendar__CalendarSettingsPage_xaml.input.json
deleted file mode 100644
index d7c826ea..00000000
--- a/tmp_Views__Calendar__CalendarSettingsPage_xaml.input.json
+++ /dev/null
@@ -1,5173 +0,0 @@
-{
- "ProjectPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Wino.Mail.WinUI.csproj",
- "Language": "C#",
- "LanguageSourceExtension": ".cs",
- "OutputPath": "obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\",
- "ReferenceAssemblies": [
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Accessibility.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Accessibility.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\azure.core\\1.50.0\\lib\\net8.0\\Azure.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\azure.core\\1.50.0\\lib\\net8.0\\Azure.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\lib\\net6.0\\BouncyCastle.Cryptography.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\bouncycastle.cryptography\\2.6.2\\lib\\net6.0\\BouncyCastle.Cryptography.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\colorhashsharp\\1.1.0\\lib\\net9.0\\ColorHashSharp.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\colorhashsharp\\1.1.0\\lib\\net9.0\\ColorHashSharp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.common\\8.4.0\\lib\\net8.0\\CommunityToolkit.Common.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.common\\8.4.0\\lib\\net8.0\\CommunityToolkit.Common.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.diagnostics\\8.4.0\\lib\\net8.0\\CommunityToolkit.Diagnostics.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.diagnostics\\8.4.0\\lib\\net8.0\\CommunityToolkit.Diagnostics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.mvvm\\8.4.1-build.4\\lib\\net8.0-windows10.0.17763\\CommunityToolkit.Mvvm.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.mvvm\\8.4.1-build.4\\lib\\net8.0-windows10.0.17763\\CommunityToolkit.Mvvm.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.animations\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Animations.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.animations\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Animations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.primitives\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Primitives.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.primitives\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.segmented\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Segmented.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.segmented\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Segmented.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.settingscontrols\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.SettingsControls.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.settingscontrols\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.SettingsControls.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.sizers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Sizers.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.sizers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.Sizers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tabbedcommandbar\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TabbedCommandBar.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tabbedcommandbar\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TabbedCommandBar.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tokenizingtextbox\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TokenizingTextBox.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.controls.tokenizingtextbox\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Controls.TokenizingTextBox.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.labs.winui.dependencypropertygenerator\\0.1.250926-build.2293\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.DependencyPropertyGenerator.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.labs.winui.dependencypropertygenerator\\0.1.250926-build.2293\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.DependencyPropertyGenerator.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.extensions\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Extensions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.extensions\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.helpers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Helpers.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.helpers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Helpers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.triggers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Triggers.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\communitytoolkit.winui.triggers\\8.2.251219\\lib\\net9.0-windows10.0.19041\\CommunityToolkit.WinUI.Triggers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\emailvalidation\\1.3.0\\lib\\net8.0\\EmailValidation.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\emailvalidation\\1.3.0\\lib\\net8.0\\EmailValidation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.auth\\1.73.0\\lib\\net6.0\\Google.Apis.Auth.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.auth\\1.73.0\\lib\\net6.0\\Google.Apis.Auth.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.calendar.v3\\1.73.0.4063\\lib\\net6.0\\Google.Apis.Calendar.v3.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.calendar.v3\\1.73.0.4063\\lib\\net6.0\\Google.Apis.Calendar.v3.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.core\\1.73.0\\lib\\net6.0\\Google.Apis.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.core\\1.73.0\\lib\\net6.0\\Google.Apis.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis\\1.73.0\\lib\\net6.0\\Google.Apis.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis\\1.73.0\\lib\\net6.0\\Google.Apis.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.drive.v3\\1.73.0.4068\\lib\\net6.0\\Google.Apis.Drive.v3.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.drive.v3\\1.73.0.4068\\lib\\net6.0\\Google.Apis.Drive.v3.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.gmail.v1\\1.73.0.4029\\lib\\net6.0\\Google.Apis.Gmail.v1.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.gmail.v1\\1.73.0.4029\\lib\\net6.0\\Google.Apis.Gmail.v1.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.peopleservice.v1\\1.72.0.3973\\lib\\net6.0\\Google.Apis.PeopleService.v1.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\google.apis.peopleservice.v1\\1.72.0.3973\\lib\\net6.0\\Google.Apis.PeopleService.v1.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\gravatar-dotnet\\0.1.3\\lib\\net6.0\\gravatar-dotnet.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\gravatar-dotnet\\0.1.3\\lib\\net6.0\\gravatar-dotnet.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\htmlagilitypack\\1.12.4\\lib\\net7.0\\HtmlAgilityPack.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\htmlagilitypack\\1.12.4\\lib\\net7.0\\HtmlAgilityPack.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\htmlkit\\1.2.0\\lib\\net8.0\\HtmlKit.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\htmlkit\\1.2.0\\lib\\net8.0\\HtmlKit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\ical.net\\4.3.1\\lib\\net8.0\\Ical.Net.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\ical.net\\4.3.1\\lib\\net8.0\\Ical.Net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\timeperiodlibrary.net\\2.1.6\\lib\\net9.0\\Itenso.TimePeriod.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\timeperiodlibrary.net\\2.1.6\\lib\\net9.0\\Itenso.TimePeriod.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\mailkit\\4.15.1\\lib\\net10.0\\MailKit.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\mailkit\\4.15.1\\lib\\net10.0\\MailKit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\lib\\netstandard2.1\\Microsoft.Bcl.AsyncInterfaces.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\8.0.0\\lib\\netstandard2.1\\Microsoft.Bcl.AsyncInterfaces.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.CSharp.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.CSharp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.3\\lib\\net10.0\\Microsoft.Extensions.DependencyInjection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\lib\\net10.0\\Microsoft.Extensions.Logging.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\lib\\net10.0\\Microsoft.Extensions.Logging.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph.core\\3.2.5\\lib\\net6.0\\Microsoft.Graph.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph.core\\3.2.5\\lib\\net6.0\\Microsoft.Graph.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph\\5.103.0\\lib\\net5.0\\Microsoft.Graph.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graph\\5.103.0\\lib\\net5.0\\Microsoft.Graph.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graphics.win2d\\1.3.2\\lib\\net6.0-windows10.0.19041.0\\Microsoft.Graphics.Canvas.Interop.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.graphics.win2d\\1.3.2\\lib\\net6.0-windows10.0.19041.0\\Microsoft.Graphics.Canvas.Interop.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Graphics.Imaging.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Graphics.Imaging.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.broker\\4.82.1\\lib\\netstandard2.0\\Microsoft.Identity.Client.Broker.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.broker\\4.82.1\\lib\\netstandard2.0\\Microsoft.Identity.Client.Broker.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.Extensions.Msal.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.82.1\\lib\\net8.0\\Microsoft.Identity.Client.Extensions.Msal.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.nativeinterop\\0.19.4\\lib\\net9.0\\Microsoft.Identity.Client.NativeInterop.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identity.client.nativeinterop\\0.19.4\\lib\\net9.0\\Microsoft.Identity.Client.NativeInterop.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.JsonWebTokens.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.JsonWebTokens.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.logging\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Logging.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.logging\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Logging.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Tokens.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.15.0\\lib\\net10.0\\Microsoft.IdentityModel.Tokens.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.validators\\8.6.1\\lib\\net9.0\\Microsoft.IdentityModel.Validators.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.identitymodel.validators\\8.6.1\\lib\\net9.0\\Microsoft.IdentityModel.Validators.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.interactiveexperiences\\2.0.250912002-experimental\\lib\\net6.0-windows10.0.18362.0\\Microsoft.InteractiveExperiences.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.interactiveexperiences\\2.0.250912002-experimental\\lib\\net6.0-windows10.0.18362.0\\Microsoft.InteractiveExperiences.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.abstractions\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Abstractions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.abstractions\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Abstractions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.authentication.azure\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Authentication.Azure.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.authentication.azure\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Authentication.Azure.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.http.httpclientlibrary\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Http.HttpClientLibrary.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.http.httpclientlibrary\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Http.HttpClientLibrary.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.form\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Form.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.form\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Form.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.json\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Json.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.json\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.multipart\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Multipart.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.multipart\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Multipart.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.text\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Text.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.kiota.serialization.text\\1.21.1\\lib\\net8.0\\Microsoft.Kiota.Serialization.Text.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net8.0\\Microsoft.ML.OnnxRuntime.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net8.0\\Microsoft.ML.OnnxRuntime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Security.Authentication.OAuth.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Security.Authentication.OAuth.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.toolkit.uwp.notifications\\7.1.3\\lib\\net5.0-windows10.0.17763\\Microsoft.Toolkit.Uwp.Notifications.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.toolkit.uwp.notifications\\7.1.3\\lib\\net5.0-windows10.0.17763\\Microsoft.Toolkit.Uwp.Notifications.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Core.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Forms.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.VisualBasic.Forms.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.web.webview2\\1.0.3405.78\\lib_manual\\net8.0-windows10.0.17763.0\\Microsoft.Web.WebView2.Core.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.web.webview2\\1.0.3405.78\\lib_manual\\net8.0-windows10.0.17763.0\\Microsoft.Web.WebView2.Core.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\Microsoft.Win32.Registry.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.win32.systemevents\\10.0.3\\lib\\net10.0\\Microsoft.Win32.SystemEvents.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.win32.systemevents\\10.0.3\\lib\\net10.0\\Microsoft.Win32.SystemEvents.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.ContentSafety.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.ContentSafety.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Foundation.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Foundation.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Imaging.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Imaging.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.MachineLearning.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ml\\2.0.28-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.MachineLearning.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Text.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.ai\\2.0.3-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AI.Text.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Background.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Background.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.Resources.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.ApplicationModel.WindowsAppRuntime.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppLifecycle.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppLifecycle.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Builder.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Builder.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.AppNotifications.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.BadgeNotifications.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.BadgeNotifications.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Foundation.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Foundation.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Management.Deployment.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Management.Deployment.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Media.Capture.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Media.Capture.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.PushNotifications.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.PushNotifications.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\Microsoft.Windows.SDK.NET.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\Microsoft.Windows.SDK.NET.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Security.AccessControl.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Security.AccessControl.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Pickers.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Pickers.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Storage.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Power.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Power.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.System.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.widgets\\2.0.250918003-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Widgets.Projection.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.widgets\\2.0.250918003-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.Windows.Widgets.Projection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.foundation\\2.0.250915002-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WindowsAppRuntime.Bootstrap.Net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.winui\\2.0.250930000-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WinUI.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.winui\\2.0.250930000-experimental\\lib\\net6.0-windows10.0.17763.0\\Microsoft.WinUI.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.xaml.behaviors.winui.managed\\3.0.1\\lib\\net8.0-windows10.0.17763.0\\Microsoft.Xaml.Interactivity.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.xaml.behaviors.winui.managed\\3.0.1\\lib\\net8.0-windows10.0.17763.0\\Microsoft.Xaml.Interactivity.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\mimekit\\4.15.1\\lib\\net10.0\\MimeKit.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\mimekit\\4.15.1\\lib\\net10.0\\MimeKit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\morelinq\\4.4.0\\lib\\net9.0\\MoreLinq.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\morelinq\\4.4.0\\lib\\net9.0\\MoreLinq.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\mscorlib.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\mscorlib.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\netstandard.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\netstandard.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\newtonsoft.json\\13.0.4\\lib\\net6.0\\Newtonsoft.Json.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\newtonsoft.json\\13.0.4\\lib\\net6.0\\Newtonsoft.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\lib\\netstandard2.0\\Nito.AsyncEx.Tasks.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\nito.asyncex.tasks\\5.1.2\\lib\\netstandard2.0\\Nito.AsyncEx.Tasks.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\nito.disposables\\2.2.1\\lib\\netstandard2.1\\Nito.Disposables.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\nito.disposables\\2.2.1\\lib\\netstandard2.1\\Nito.Disposables.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\nodatime\\3.3.1\\lib\\net8.0\\NodaTime.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\nodatime\\3.3.1\\lib\\net8.0\\NodaTime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationCore.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationCore.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero2.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Aero2.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.AeroLite.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.AeroLite.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Classic.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Classic.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Luna.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Luna.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Royale.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationFramework.Royale.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationUI.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\PresentationUI.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\ReachFramework.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\ReachFramework.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sentry\\6.1.0\\lib\\net10.0\\Sentry.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sentry\\6.1.0\\lib\\net10.0\\Sentry.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sentry.serilog\\6.1.0\\lib\\net10.0\\Sentry.Serilog.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sentry.serilog\\6.1.0\\lib\\net10.0\\Sentry.Serilog.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog\\4.3.1\\lib\\net10.0\\Serilog.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog\\4.3.1\\lib\\net10.0\\Serilog.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.exceptions\\8.4.0\\lib\\net6.0\\Serilog.Exceptions.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.exceptions\\8.4.0\\lib\\net6.0\\Serilog.Exceptions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.debug\\3.0.0\\lib\\net8.0\\Serilog.Sinks.Debug.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.debug\\3.0.0\\lib\\net8.0\\Serilog.Sinks.Debug.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.file\\7.0.0\\lib\\net9.0\\Serilog.Sinks.File.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\serilog.sinks.file\\7.0.0\\lib\\net9.0\\Serilog.Sinks.File.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp\\3.119.2\\ref\\net8.0-windows10.0.19041\\SkiaSharp.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp\\3.119.2\\ref\\net8.0-windows10.0.19041\\SkiaSharp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp.views.winui\\3.119.2\\lib\\net8.0-windows10.0.19041\\SkiaSharp.Views.Windows.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\skiasharp.views.winui\\3.119.2\\lib\\net8.0-windows10.0.19041\\SkiaSharp.Views.Windows.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlite-net-pcl\\1.10.196-beta\\lib\\net9.0\\SQLite-net.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlite-net-pcl\\1.10.196-beta\\lib\\net9.0\\SQLite-net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.bundle_green\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.batteries_v2.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.bundle_green\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.batteries_v2.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.core\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.core\\2.1.2\\lib\\netstandard2.0\\SQLitePCLRaw.core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.2\\lib\\net6.0-windows7.0\\SQLitePCLRaw.provider.e_sqlite3.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.2\\lib\\net6.0-windows7.0\\SQLitePCLRaw.provider.e_sqlite3.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\std.uritemplate\\2.0.8\\lib\\net5.0\\Std.UriTemplate.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\std.uritemplate\\2.0.8\\lib\\net5.0\\Std.UriTemplate.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.AppContext.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.AppContext.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Buffers.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Buffers.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.clientmodel\\1.8.0\\lib\\net9.0\\System.ClientModel.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.clientmodel\\1.8.0\\lib\\net9.0\\System.ClientModel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.CodeDom.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.CodeDom.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Concurrent.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Concurrent.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Immutable.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Immutable.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.NonGeneric.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.NonGeneric.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Specialized.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Collections.Specialized.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Annotations.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Annotations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.DataAnnotations.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.DataAnnotations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.EventBasedAsync.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.EventBasedAsync.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.TypeConverter.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ComponentModel.TypeConverter.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.ConfigurationManager.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.ConfigurationManager.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Configuration.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Console.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Console.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Core.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.Common.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.Common.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.DataSetExtensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.DataSetExtensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Data.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Design.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Design.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Contracts.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Contracts.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Debug.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Debug.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.DiagnosticSource.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.DiagnosticSource.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.EventLog.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.EventLog.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.FileVersionInfo.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.FileVersionInfo.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.PerformanceCounter.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.PerformanceCounter.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Process.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Process.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.StackTrace.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.StackTrace.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TextWriterTraceListener.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TextWriterTraceListener.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tools.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tools.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TraceSource.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.TraceSource.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tracing.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Diagnostics.Tracing.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.DirectoryServices.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.DirectoryServices.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Drawing.Common.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Drawing.Common.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Design.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Design.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Drawing.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Dynamic.Runtime.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Dynamic.Runtime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Asn1.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Asn1.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Nrbf.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Nrbf.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Tar.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Formats.Tar.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Calendars.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Calendars.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Globalization.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.15.0\\lib\\net10.0\\System.IdentityModel.Tokens.Jwt.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.15.0\\lib\\net10.0\\System.IdentityModel.Tokens.Jwt.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.Brotli.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.Brotli.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.FileSystem.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.FileSystem.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.ZipFile.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Compression.ZipFile.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.DriveInfo.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.DriveInfo.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Watcher.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.FileSystem.Watcher.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.IsolatedStorage.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.IsolatedStorage.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.MemoryMappedFiles.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.MemoryMappedFiles.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Packaging.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Packaging.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipelines.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipelines.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.Pipes.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.UnmanagedMemoryStream.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.IO.UnmanagedMemoryStream.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.AsyncEnumerable.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.AsyncEnumerable.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Expressions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Expressions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Parallel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Parallel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Queryable.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Linq.Queryable.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.management\\7.0.2\\lib\\net7.0\\System.Management.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.management\\7.0.2\\lib\\net7.0\\System.Management.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.memory.data\\8.0.1\\lib\\net8.0\\System.Memory.Data.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.memory.data\\8.0.1\\lib\\net8.0\\System.Memory.Data.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Memory.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Memory.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.Json.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Http.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.HttpListener.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.HttpListener.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Mail.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Mail.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NameResolution.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NameResolution.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NetworkInformation.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.NetworkInformation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Ping.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Ping.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Quic.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Quic.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Requests.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Requests.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Security.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Security.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServerSentEvents.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServerSentEvents.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServicePoint.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.ServicePoint.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Sockets.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.Sockets.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebClient.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebClient.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebHeaderCollection.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebHeaderCollection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebProxy.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebProxy.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.Client.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.Client.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Net.WebSockets.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.Vectors.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Numerics.Vectors.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ObjectModel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ObjectModel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Printing.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Printing.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.Core.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.GdiPlus.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.drawing.common\\10.0.3\\lib\\net10.0\\System.Private.Windows.GdiPlus.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\system.reactive\\6.1.0\\lib\\net6.0-windows10.0.19041\\System.Reactive.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\system.reactive\\6.1.0\\lib\\net6.0-windows10.0.19041\\System.Reactive.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.DispatchProxy.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.DispatchProxy.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.ILGeneration.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.ILGeneration.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.Lightweight.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Emit.Lightweight.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Metadata.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Metadata.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.TypeExtensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Reflection.TypeExtensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Reader.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Reader.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.ResourceManager.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.ResourceManager.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Writer.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Resources.Writer.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.Unsafe.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.Unsafe.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.VisualC.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.CompilerServices.VisualC.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Handles.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Handles.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.JavaScript.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.JavaScript.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.RuntimeInformation.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.InteropServices.RuntimeInformation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Intrinsics.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Intrinsics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Loader.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Loader.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Numerics.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Numerics.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Formatters.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Formatters.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Json.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Xml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Runtime.Serialization.Xml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Claims.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Claims.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Algorithms.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Algorithms.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Cng.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Cng.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Csp.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Csp.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Encoding.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Encoding.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.OpenSsl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.OpenSsl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Pkcs.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Pkcs.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.ProtectedData.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.ProtectedData.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.X509Certificates.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.X509Certificates.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Xml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Cryptography.Xml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Permissions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Permissions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.Windows.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.Principal.Windows.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.SecureString.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Security.SecureString.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceModel.Web.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceModel.Web.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceProcess.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ServiceProcess.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.CodePages.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.CodePages.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encoding.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encodings.Web.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Encodings.Web.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Json.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.Json.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.RegularExpressions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Text.RegularExpressions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.AccessControl.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.AccessControl.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Channels.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Channels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Overlapped.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Overlapped.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Dataflow.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Dataflow.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Parallel.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Tasks.Parallel.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Thread.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Thread.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.ThreadPool.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.ThreadPool.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Timer.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Threading.Timer.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.Local.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Transactions.Local.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ValueTuple.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.ValueTuple.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.HttpUtility.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Web.HttpUtility.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Controls.Ribbon.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Controls.Ribbon.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Extensions.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Extensions.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.Editors.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Design.Editors.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Forms.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Input.Manipulations.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Input.Manipulations.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Presentation.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Presentation.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Primitives.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Windows.Primitives.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Xaml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\System.Xaml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Linq.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Linq.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.ReaderWriter.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.ReaderWriter.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Serialization.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.Serialization.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XDocument.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XDocument.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlDocument.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlDocument.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlSerializer.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XmlSerializer.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.XDocument.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.NETCore.App.Ref\\10.0.2\\ref\\net10.0\\System.Xml.XPath.XDocument.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClient.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClient.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClientSideProviders.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationClientSideProviders.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationProvider.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationProvider.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationTypes.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\UIAutomationTypes.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsBase.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsBase.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsFormsIntegration.dll",
- "ItemSpec": "C:\\Program Files\\dotnet\\packs\\Microsoft.WindowsDesktop.App.Ref\\10.0.2\\ref\\net10.0\\WindowsFormsIntegration.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Authentication\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Authentication.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Authentication\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Authentication.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Calendar.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Calendar.ViewModels.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Calendar.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Calendar.ViewModels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Core\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Core\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Core.Domain\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.Domain.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Core.Domain\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.Domain.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Core.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.ViewModels.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Core.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Core.ViewModels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\wino.mail.contracts\\1.0.7\\lib\\net10.0\\Wino.Mail.Contracts.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\wino.mail.contracts\\1.0.7\\lib\\net10.0\\Wino.Mail.Contracts.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Mail.ViewModels.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Mail.ViewModels\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Mail.ViewModels.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Messages\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Messaging.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Messages\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Messaging.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Services\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Services.dll",
- "ItemSpec": "D:\\Github\\Wino-Mail\\Wino.Services\\bin\\x64\\Debug\\net10.0\\win-x64\\Wino.Services.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\WinRT.Runtime.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windows.sdk.net.ref\\10.0.19041.57\\lib\\net8.0\\WinRT.Runtime.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "C:\\Users\\bkaan\\.nuget\\packages\\winuiex\\2.9.0\\lib\\net8.0-windows10.0.19041\\WinUIEx.dll",
- "ItemSpec": "C:\\Users\\bkaan\\.nuget\\packages\\winuiex\\2.9.0\\lib\\net8.0-windows10.0.19041\\WinUIEx.dll",
- "IsSystemReference": false,
- "IsNuGetReference": true,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "TargetPlatformMinVersion": "10.0.17763.0",
- "ReferenceAssemblyPaths": [],
- "BuildConfiguration": null,
- "ForceSharedStateShutdown": false,
- "DisableXbfGeneration": false,
- "DisableXbfLineInfo": false,
- "EnableXBindDiagnostics": false,
- "ClIncludeFiles": null,
- "CIncludeDirectories": null,
- "XamlApplications": [
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\App.xaml",
- "ItemSpec": "App.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "XamlPages": [
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\AccountCreationDialogControl.xaml",
- "ItemSpec": "Controls\\AccountCreationDialogControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\AppModeFooterSwitcherControl.xaml",
- "ItemSpec": "Controls\\AppModeFooterSwitcherControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\CalendarMailItemDisplayInformationControl.xaml",
- "ItemSpec": "Controls\\CalendarMailItemDisplayInformationControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\Calendar\\CalendarItemControl.xaml",
- "ItemSpec": "Controls\\Calendar\\CalendarItemControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\Calendar\\CalendarPeriodControl.xaml",
- "ItemSpec": "Controls\\Calendar\\CalendarPeriodControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\EditorTabbedCommandBarControl.xaml",
- "ItemSpec": "Controls\\EditorTabbedCommandBarControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\ListView\\WinoListViewStyles.xaml",
- "ItemSpec": "Controls\\ListView\\WinoListViewStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\MailItemDisplayInformationControl.xaml",
- "ItemSpec": "Controls\\MailItemDisplayInformationControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Controls\\UpdateNotesFlipViewControl.xaml",
- "ItemSpec": "Controls\\UpdateNotesFlipViewControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\CoreGeneric.xaml",
- "ItemSpec": "CoreGeneric.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\AccountCreationDialog.xaml",
- "ItemSpec": "Dialogs\\AccountCreationDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\AccountPickerDialog.xaml",
- "ItemSpec": "Dialogs\\AccountPickerDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\AccountReorderDialog.xaml",
- "ItemSpec": "Dialogs\\AccountReorderDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\ContactEditDialog.xaml",
- "ItemSpec": "Dialogs\\ContactEditDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\CreateAccountAliasDialog.xaml",
- "ItemSpec": "Dialogs\\CreateAccountAliasDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\CustomThemeBuilderDialog.xaml",
- "ItemSpec": "Dialogs\\CustomThemeBuilderDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\KeyboardShortcutDialog.xaml",
- "ItemSpec": "Dialogs\\KeyboardShortcutDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\MessageSourceDialog.xaml",
- "ItemSpec": "Dialogs\\MessageSourceDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\MoveMailDialog.xaml",
- "ItemSpec": "Dialogs\\MoveMailDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\NewAccountDialog.xaml",
- "ItemSpec": "Dialogs\\NewAccountDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\PrintDialog.xaml",
- "ItemSpec": "Dialogs\\PrintDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\SignatureEditorDialog.xaml",
- "ItemSpec": "Dialogs\\SignatureEditorDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\SingleCalendarPickerDialog.xaml",
- "ItemSpec": "Dialogs\\SingleCalendarPickerDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\SystemFolderConfigurationDialog.xaml",
- "ItemSpec": "Dialogs\\SystemFolderConfigurationDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\TextInputDialog.xaml",
- "ItemSpec": "Dialogs\\TextInputDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WhatIsNewDialog.xaml",
- "ItemSpec": "Dialogs\\WhatIsNewDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WinoAccountEmailConfirmationRequiredDialog.xaml",
- "ItemSpec": "Dialogs\\WinoAccountEmailConfirmationRequiredDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WinoAccountLoginDialog.xaml",
- "ItemSpec": "Dialogs\\WinoAccountLoginDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Dialogs\\WinoAccountRegistrationDialog.xaml",
- "ItemSpec": "Dialogs\\WinoAccountRegistrationDialog.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\ShellWindow.xaml",
- "ItemSpec": "ShellWindow.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CalendarShellNavigationViewStyle.xaml",
- "ItemSpec": "Styles\\CalendarShellNavigationViewStyle.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CalendarThemeResources.xaml",
- "ItemSpec": "Styles\\CalendarThemeResources.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CalendarViewStyles.xaml",
- "ItemSpec": "Styles\\CalendarViewStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\Colors.xaml",
- "ItemSpec": "Styles\\Colors.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\ContentPresenters.xaml",
- "ItemSpec": "Styles\\ContentPresenters.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\Converters.xaml",
- "ItemSpec": "Styles\\Converters.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\CustomMessageDialogStyles.xaml",
- "ItemSpec": "Styles\\CustomMessageDialogStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\DataTemplates.xaml",
- "ItemSpec": "Styles\\DataTemplates.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\FontIcons.xaml",
- "ItemSpec": "Styles\\FontIcons.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\IconTemplates.xaml",
- "ItemSpec": "Styles\\IconTemplates.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\ImagePreviewControl.xaml",
- "ItemSpec": "Styles\\ImagePreviewControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\ItemContainerStyles.xaml",
- "ItemSpec": "Styles\\ItemContainerStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\SharedStyles.xaml",
- "ItemSpec": "Styles\\SharedStyles.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WebViewEditorControl.xaml",
- "ItemSpec": "Styles\\WebViewEditorControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WinoCalendarTypeSelectorControl.xaml",
- "ItemSpec": "Styles\\WinoCalendarTypeSelectorControl.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WinoExpanderStyle.xaml",
- "ItemSpec": "Styles\\WinoExpanderStyle.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Styles\\WinoInfoBar.xaml",
- "ItemSpec": "Styles\\WinoInfoBar.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\AccountSetupProgressPage.xaml",
- "ItemSpec": "Views\\AccountSetupProgressPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\AccountDetailsPage.xaml",
- "ItemSpec": "Views\\Account\\AccountDetailsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\AccountManagementPage.xaml",
- "ItemSpec": "Views\\Account\\AccountManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\ImapCalDavSettingsPage.xaml",
- "ItemSpec": "Views\\Account\\ImapCalDavSettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Account\\MergedAccountDetailsPage.xaml",
- "ItemSpec": "Views\\Account\\MergedAccountDetailsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarAccountSettingsPage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarAccountSettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarEventComposePage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarEventComposePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarPage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\CalendarSettingsPage.xaml",
- "ItemSpec": "Views\\Calendar\\CalendarSettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Calendar\\EventDetailsPage.xaml",
- "ItemSpec": "Views\\Calendar\\EventDetailsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Contacts\\ContactsAppShell.xaml",
- "ItemSpec": "Views\\Contacts\\ContactsAppShell.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\ComposePage.xaml",
- "ItemSpec": "Views\\Mail\\ComposePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\IdlePage.xaml",
- "ItemSpec": "Views\\Mail\\IdlePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\MailListPage.xaml",
- "ItemSpec": "Views\\Mail\\MailListPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Mail\\MailRenderingPage.xaml",
- "ItemSpec": "Views\\Mail\\MailRenderingPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\ManageAccountsPage.xaml",
- "ItemSpec": "Views\\ManageAccountsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\ProviderSelectionPage.xaml",
- "ItemSpec": "Views\\ProviderSelectionPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\SettingOptionsPage.xaml",
- "ItemSpec": "Views\\SettingOptionsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\SettingsPage.xaml",
- "ItemSpec": "Views\\SettingsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\AboutPage.xaml",
- "ItemSpec": "Views\\Settings\\AboutPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\AliasManagementPage.xaml",
- "ItemSpec": "Views\\Settings\\AliasManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\AppPreferencesPage.xaml",
- "ItemSpec": "Views\\Settings\\AppPreferencesPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\ContactsPage.xaml",
- "ItemSpec": "Views\\Settings\\ContactsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\CreateEmailTemplatePage.xaml",
- "ItemSpec": "Views\\Settings\\CreateEmailTemplatePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\EmailTemplatesPage.xaml",
- "ItemSpec": "Views\\Settings\\EmailTemplatesPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\KeyboardShortcutsPage.xaml",
- "ItemSpec": "Views\\Settings\\KeyboardShortcutsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\LanguageTimePage.xaml",
- "ItemSpec": "Views\\Settings\\LanguageTimePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\MessageListPage.xaml",
- "ItemSpec": "Views\\Settings\\MessageListPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\PersonalizationPage.xaml",
- "ItemSpec": "Views\\Settings\\PersonalizationPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\ReadComposePanePage.xaml",
- "ItemSpec": "Views\\Settings\\ReadComposePanePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\SignatureAndEncryptionPage.xaml",
- "ItemSpec": "Views\\Settings\\SignatureAndEncryptionPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\SignatureManagementPage.xaml",
- "ItemSpec": "Views\\Settings\\SignatureManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\StoragePage.xaml",
- "ItemSpec": "Views\\Settings\\StoragePage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\Settings\\WinoAccountManagementPage.xaml",
- "ItemSpec": "Views\\Settings\\WinoAccountManagementPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\SpecialImapCredentialsPage.xaml",
- "ItemSpec": "Views\\SpecialImapCredentialsPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\WelcomeHostPage.xaml",
- "ItemSpec": "Views\\WelcomeHostPage.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\WelcomePageV2.xaml",
- "ItemSpec": "Views\\WelcomePageV2.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\Views\\WinoAppShell.xaml",
- "ItemSpec": "Views\\WinoAppShell.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- },
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\WelcomeWindow.xaml",
- "ItemSpec": "WelcomeWindow.xaml",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "LocalAssembly": [
- {
- "DependentUpon": "",
- "FullPath": "D:\\Github\\Wino-Mail\\Wino.Mail.WinUI\\obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\intermediatexaml\\Wino.Mail.WinUI.dll",
- "ItemSpec": "obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\intermediatexaml\\Wino.Mail.WinUI.dll",
- "IsSystemReference": false,
- "IsNuGetReference": false,
- "IsStaticLibraryReference": false,
- "MSBuild_Link": "",
- "MSBuild_TargetPath": "",
- "MSBuild_XamlResourceMapName": "",
- "MSBuild_XamlComponentResourceLocation": ""
- }
- ],
- "SdkXamlPages": null,
- "ProjectName": "Wino.Mail.WinUI",
- "IsPass1": false,
- "RootNamespace": "Wino.Mail.WinUI",
- "OutputType": "WinExe",
- "PriIndexName": null,
- "CodeGenerationControlFlags": null,
- "FeatureControlFlags": "EnableXBindDiagnostics;EnableDefaultValidationContextGeneration;EnableWin32Codegen;UsingCSWinRT;EnableBindingDiagnostics",
- "XAMLFingerprint": true,
- "UseVCMetaManaged": true,
- "FingerprintIgnorePaths": null,
- "VCInstallDir": null,
- "VCInstallPath32": null,
- "VCInstallPath64": null,
- "WindowsSdkPath": null,
- "CompileMode": "RealBuildPass2",
- "SavedStateFile": "obj\\x64\\Debug\\net10.0-windows10.0.19041.0\\win-x64\\\\XamlSaveStateFile.xml",
- "RootsLog": null,
- "SuppressWarnings": null,
- "GenXbfPath": "C:\\Users\\bkaan\\.nuget\\packages\\microsoft.windowsappsdk.winui\\2.0.250930000-experimental\\buildTransitive\\..\\tools\\net6.0\\..\\",
- "PrecompiledHeaderFile": null,
- "XamlResourceMapName": null,
- "XamlComponentResourceLocation": null,
- "XamlPlatform": null,
- "TargetFileName": null,
- "IgnoreSpecifiedTargetPlatformMinVersion": false
-}