qwe
This commit is contained in:
parent
345818f056
commit
4525c223d9
@ -55,7 +55,6 @@ namespace Presence.Desktop.ViewModels
|
|||||||
public ObservableCollection<UserPresenter> Users { get => _users;}
|
public ObservableCollection<UserPresenter> Users { get => _users;}
|
||||||
public ObservableCollection<UserPresenter> _users;
|
public ObservableCollection<UserPresenter> _users;
|
||||||
public ICommand RemoveUserCommand { get; }
|
public ICommand RemoveUserCommand { get; }
|
||||||
public ICommand EditUserCommand { get; }
|
|
||||||
public ICommand RemoveAllSelectedCommand { get; }
|
public ICommand RemoveAllSelectedCommand { get; }
|
||||||
public ReactiveCommand<Unit, Unit> NavigateToPresenceCommand { get; }
|
public ReactiveCommand<Unit, Unit> NavigateToPresenceCommand { get; }
|
||||||
|
|
||||||
@ -84,7 +83,6 @@ namespace Presence.Desktop.ViewModels
|
|||||||
Selection.SelectionChanged += SelectionChanged;
|
Selection.SelectionChanged += SelectionChanged;
|
||||||
|
|
||||||
RemoveUserCommand = ReactiveCommand.Create<UserPresenter>(RemoveUser);
|
RemoveUserCommand = ReactiveCommand.Create<UserPresenter>(RemoveUser);
|
||||||
EditUserCommand = ReactiveCommand.Create<UserPresenter>(EditUser);
|
|
||||||
RemoveAllSelectedCommand = ReactiveCommand.Create(RemoveAllSelected);
|
RemoveAllSelectedCommand = ReactiveCommand.Create(RemoveAllSelected);
|
||||||
NavigateToPresenceCommand = ReactiveCommand.Create(NavigateToPresence);
|
NavigateToPresenceCommand = ReactiveCommand.Create(NavigateToPresence);
|
||||||
}
|
}
|
||||||
@ -144,12 +142,6 @@ namespace Presence.Desktop.ViewModels
|
|||||||
SetUsers();
|
SetUsers();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void EditUser(UserPresenter user)
|
|
||||||
{
|
|
||||||
if (user == null) return;
|
|
||||||
// TODO: Добавить логику редактирования пользователя
|
|
||||||
// Можно реализовать через диалоговое окно или навигацию на форму редактирования
|
|
||||||
}
|
|
||||||
|
|
||||||
private void RemoveAllSelected()
|
private void RemoveAllSelected()
|
||||||
{
|
{
|
||||||
|
@ -119,7 +119,7 @@ namespace Presence.Desktop.ViewModels
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Логирование для отладки
|
// Логирование для отладки
|
||||||
Console.WriteLine($"Загружено записей посещаемости: {AttendanceRecords.Count}");
|
// Console.WriteLine($"Загружено записей посещаемости: {AttendanceRecords.Count}");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DeleteSelectedItems()
|
private void DeleteSelectedItems()
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
</Design.DataContext>
|
</Design.DataContext>
|
||||||
<DockPanel Background="Azure">
|
<DockPanel Background="Azure">
|
||||||
<StackPanel DockPanel.Dock="Bottom">
|
<StackPanel DockPanel.Dock="Bottom">
|
||||||
<TextBlock Text="List ↑" HorizontalAlignment="Center"/>
|
|
||||||
<TextBlock Text="{Binding Users.Count, StringFormat='Количество студентов: {0}'}"
|
<TextBlock Text="{Binding Users.Count, StringFormat='Количество студентов: {0}'}"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
Margin="10,10,0,0"
|
Margin="10,10,0,0"
|
||||||
@ -29,7 +28,6 @@
|
|||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
DockPanel.Dock="Top"
|
DockPanel.Dock="Top"
|
||||||
Orientation="Horizontal">
|
Orientation="Horizontal">
|
||||||
<TextBlock Text="Combobox ->"/>
|
|
||||||
<ComboBox ItemsSource="{Binding Groups}" SelectedValue="{Binding SelectedGroupItem}">
|
<ComboBox ItemsSource="{Binding Groups}" SelectedValue="{Binding SelectedGroupItem}">
|
||||||
<ComboBox.ItemTemplate>
|
<ComboBox.ItemTemplate>
|
||||||
<DataTemplate>
|
<DataTemplate>
|
||||||
@ -37,8 +35,7 @@
|
|||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
</ComboBox.ItemTemplate>
|
</ComboBox.ItemTemplate>
|
||||||
</ComboBox>
|
</ComboBox>
|
||||||
<Button Width="100" Command="{Binding OpenFileDialog}"/>
|
<Button Command="{Binding OpenFileDialog}" Content="Добавить посещаемость(НЕ РАБОТАЕТ)"/>
|
||||||
<ComboBox/>
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<Border>
|
<Border>
|
||||||
<ListBox SelectionMode="Multiple" Selection="{Binding Selection}" Background="Bisque" ItemsSource="{Binding Users}">
|
<ListBox SelectionMode="Multiple" Selection="{Binding Selection}" Background="Bisque" ItemsSource="{Binding Users}">
|
||||||
@ -50,12 +47,6 @@
|
|||||||
Command="{Binding RemoveUserCommand}"
|
Command="{Binding RemoveUserCommand}"
|
||||||
CommandParameter="{Binding Selection.SelectedItem}"
|
CommandParameter="{Binding Selection.SelectedItem}"
|
||||||
Foreground="Black"/>
|
Foreground="Black"/>
|
||||||
<MenuItem
|
|
||||||
IsVisible="{Binding !MultipleSelected}"
|
|
||||||
Header="Edit"
|
|
||||||
Command="{Binding EditUserCommand}"
|
|
||||||
CommandParameter="{Binding Selection.SelectedItem}"
|
|
||||||
Foreground="Black"/>
|
|
||||||
<MenuItem
|
<MenuItem
|
||||||
IsVisible="{Binding MultipleSelected}"
|
IsVisible="{Binding MultipleSelected}"
|
||||||
Header="RemoveAll"
|
Header="RemoveAll"
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
56ae5ef5211e31f34c72fa8790282155735812ceabb8c9c1129ad7d327241a91
|
11fbb816d6b31294ee85a9f2e0eefc52478650400b1be6acb0f15a6289bbc592
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
/home/gara/.nuget/packages/dynamicdata/8.4.1/lib/net8.0/DynamicData.dll
|
/home/gara/.nuget/packages/dynamicdata/8.4.1/lib/net8.0/DynamicData.dll
|
||||||
/home/gara/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
|
/home/gara/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
|
||||||
/home/gara/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
|
/home/gara/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.CSharp.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/Microsoft.CSharp.dll
|
||||||
/home/gara/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
|
/home/gara/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
|
||||||
/home/gara/.nuget/packages/microsoft.entityframeworkcore/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.dll
|
/home/gara/.nuget/packages/microsoft.entityframeworkcore/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.dll
|
||||||
/home/gara/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
|
/home/gara/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
|
||||||
@ -41,173 +41,173 @@
|
|||||||
/home/gara/.nuget/packages/microsoft.extensions.logging/8.0.1/lib/net8.0/Microsoft.Extensions.Logging.dll
|
/home/gara/.nuget/packages/microsoft.extensions.logging/8.0.1/lib/net8.0/Microsoft.Extensions.Logging.dll
|
||||||
/home/gara/.nuget/packages/microsoft.extensions.options/8.0.2/lib/net8.0/Microsoft.Extensions.Options.dll
|
/home/gara/.nuget/packages/microsoft.extensions.options/8.0.2/lib/net8.0/Microsoft.Extensions.Options.dll
|
||||||
/home/gara/.nuget/packages/microsoft.extensions.primitives/8.0.0/lib/net8.0/Microsoft.Extensions.Primitives.dll
|
/home/gara/.nuget/packages/microsoft.extensions.primitives/8.0.0/lib/net8.0/Microsoft.Extensions.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.Core.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/Microsoft.VisualBasic.Core.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/Microsoft.VisualBasic.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/Microsoft.Win32.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Registry.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/Microsoft.Win32.Registry.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/mscorlib.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/mscorlib.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/netstandard.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/netstandard.dll
|
||||||
/home/gara/.nuget/packages/npgsql/8.0.5/lib/net8.0/Npgsql.dll
|
/home/gara/.nuget/packages/npgsql/8.0.5/lib/net8.0/Npgsql.dll
|
||||||
/home/gara/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
|
/home/gara/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
|
||||||
/home/gara/.nuget/packages/reactiveui/20.1.1/lib/net8.0/ReactiveUI.dll
|
/home/gara/.nuget/packages/reactiveui/20.1.1/lib/net8.0/ReactiveUI.dll
|
||||||
/home/gara/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
|
/home/gara/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
|
||||||
/home/gara/.nuget/packages/splat/15.1.1/lib/net8.0/Splat.dll
|
/home/gara/.nuget/packages/splat/15.1.1/lib/net8.0/Splat.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.AppContext.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.AppContext.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Buffers.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Buffers.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Concurrent.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Collections.Concurrent.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Collections.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Immutable.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Collections.Immutable.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.NonGeneric.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Collections.NonGeneric.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Specialized.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Collections.Specialized.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Annotations.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ComponentModel.Annotations.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.DataAnnotations.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ComponentModel.DataAnnotations.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ComponentModel.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ComponentModel.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.TypeConverter.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ComponentModel.TypeConverter.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Configuration.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Configuration.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Console.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Console.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Core.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Core.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.Common.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Data.Common.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.DataSetExtensions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Data.DataSetExtensions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Data.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Contracts.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.Contracts.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Debug.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.Debug.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Process.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.Process.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.StackTrace.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.StackTrace.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tools.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.Tools.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TraceSource.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.TraceSource.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tracing.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Diagnostics.Tracing.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Drawing.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Drawing.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Dynamic.Runtime.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Dynamic.Runtime.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Asn1.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Formats.Asn1.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Tar.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Formats.Tar.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Calendars.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Globalization.Calendars.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Globalization.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Extensions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Globalization.Extensions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.Brotli.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.Compression.Brotli.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.Compression.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.FileSystem.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.Compression.FileSystem.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.ZipFile.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.Compression.ZipFile.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.AccessControl.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.FileSystem.AccessControl.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.FileSystem.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.FileSystem.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Watcher.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.FileSystem.Watcher.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.IsolatedStorage.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.IsolatedStorage.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.MemoryMappedFiles.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.MemoryMappedFiles.dll
|
||||||
/home/gara/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
|
/home/gara/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.AccessControl.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.Pipes.AccessControl.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.Pipes.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Linq.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Expressions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Linq.Expressions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Parallel.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Linq.Parallel.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Queryable.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Linq.Queryable.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Memory.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Memory.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Http.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.Json.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Http.Json.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.HttpListener.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.HttpListener.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Mail.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Mail.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NameResolution.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.NameResolution.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NetworkInformation.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.NetworkInformation.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Ping.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Ping.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Quic.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Quic.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Requests.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Requests.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Security.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Security.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.ServicePoint.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.ServicePoint.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Sockets.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.Sockets.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebClient.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.WebClient.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebHeaderCollection.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.WebHeaderCollection.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebProxy.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.WebProxy.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.Client.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.WebSockets.Client.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Net.WebSockets.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Numerics.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.Vectors.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Numerics.Vectors.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ObjectModel.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ObjectModel.dll
|
||||||
/home/gara/.nuget/packages/system.reactive/6.0.1/lib/net6.0/System.Reactive.dll
|
/home/gara/.nuget/packages/system.reactive/6.0.1/lib/net6.0/System.Reactive.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.DispatchProxy.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.DispatchProxy.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.Emit.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.Lightweight.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.Emit.Lightweight.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Extensions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.Extensions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Metadata.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.Metadata.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.TypeExtensions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Reflection.TypeExtensions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Reader.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Resources.Reader.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.ResourceManager.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Resources.ResourceManager.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Writer.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Resources.Writer.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Extensions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Extensions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Handles.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Handles.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.InteropServices.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Intrinsics.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Intrinsics.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Loader.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Loader.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Numerics.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Numerics.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Serialization.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Formatters.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Serialization.Formatters.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Json.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Serialization.Json.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Serialization.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Xml.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Runtime.Serialization.Xml.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.AccessControl.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.AccessControl.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Claims.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Claims.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Algorithms.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.Algorithms.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Cng.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.Cng.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Csp.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.Csp.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Encoding.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.Encoding.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Primitives.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.Primitives.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Principal.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.Windows.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.Principal.Windows.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.SecureString.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Security.SecureString.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceModel.Web.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ServiceModel.Web.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceProcess.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ServiceProcess.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.CodePages.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Text.Encoding.CodePages.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Text.Encoding.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.Extensions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Text.Encoding.Extensions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encodings.Web.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Text.Encodings.Web.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Json.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Text.Json.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.RegularExpressions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Text.RegularExpressions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Channels.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Channels.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Overlapped.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Overlapped.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Dataflow.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Tasks.Dataflow.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Tasks.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Extensions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Tasks.Extensions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Parallel.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Tasks.Parallel.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Thread.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Thread.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.ThreadPool.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.ThreadPool.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Timer.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Threading.Timer.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Transactions.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.Local.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Transactions.Local.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ValueTuple.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.ValueTuple.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Web.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.HttpUtility.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Web.HttpUtility.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Windows.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Windows.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Linq.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.Linq.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.ReaderWriter.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.ReaderWriter.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Serialization.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.Serialization.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XDocument.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.XDocument.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlDocument.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.XmlDocument.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlSerializer.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.XmlSerializer.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.XPath.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.XDocument.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/System.Xml.XPath.XDocument.dll
|
||||||
/home/gara/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
|
/home/gara/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
|
||||||
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/WindowsBase.dll
|
/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.14/ref/net8.0/WindowsBase.dll
|
||||||
|
Binary file not shown.
@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Presence.Desktop")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Presence.Desktop")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb9d2134fbb1b7be6c05ec6ad7159dd069dd3fd")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+345818f0565cf667f0b3b780a7c18b0b378eb73e")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Presence.Desktop")]
|
[assembly: System.Reflection.AssemblyProductAttribute("Presence.Desktop")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Presence.Desktop")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Presence.Desktop")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
@ -1 +1 @@
|
|||||||
68bd6e3390d8ca4bf09cdf5b154a30570d12f7994ca59f66302a0231ee630fcc
|
aca6978dd110dfc04c27c8e6aacc2e0a52870fcdafcdc2f0acace2282dbfddc1
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
0495b34aad8f14f248b68664d83675aa4c43aa8757ddb475b703d4e606ccfb0f
|
0810b8a838805985c45ac6e69d62d85096213c0ea96eaf4e1b457c64e593601f
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -92,7 +92,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -166,7 +166,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -228,7 +228,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
||||||
|
@ -2573,7 +2573,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "bFYjHbhBv54=",
|
"dgSpecHash": "JcvvyHrAkrk=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
|
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("console_ui")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("console_ui")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb9d2134fbb1b7be6c05ec6ad7159dd069dd3fd")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+345818f0565cf667f0b3b780a7c18b0b378eb73e")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("console_ui")]
|
[assembly: System.Reflection.AssemblyProductAttribute("console_ui")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("console_ui")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("console_ui")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
@ -1 +1 @@
|
|||||||
43925848a55f2335dd5bf69a5a5a25d24ee5bbe218d379aff344f34875796193
|
5ecbe7928948090e6d672eff37f24c47bf24fd93fcb8b1c413abcd2c0d9989c6
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
5392e6cca2f4bb70846c34e815580ab6e813974fbb206d0d84d7e0bc5ca2b740
|
8d5a8ed60d01d4aa9ff3e71d41845c6c8dc81ca3980a309a29b96a6d4fcac639
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -74,7 +74,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -148,7 +148,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -210,7 +210,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -278,7 +278,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
||||||
|
@ -1130,16 +1130,8 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"logs": [
|
|
||||||
{
|
|
||||||
"code": "NU1900",
|
|
||||||
"level": "Warning",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "SQ8tAKy3OoE=",
|
"dgSpecHash": "D1f0c8i5DHE=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/console_ui/console_ui.csproj",
|
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/console_ui/console_ui.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
@ -28,12 +28,5 @@
|
|||||||
"/home/gara/.nuget/packages/sixlabors.fonts/1.0.0/sixlabors.fonts.1.0.0.nupkg.sha512",
|
"/home/gara/.nuget/packages/sixlabors.fonts/1.0.0/sixlabors.fonts.1.0.0.nupkg.sha512",
|
||||||
"/home/gara/.nuget/packages/system.io.packaging/8.0.0/system.io.packaging.8.0.0.nupkg.sha512"
|
"/home/gara/.nuget/packages/system.io.packaging/8.0.0/system.io.packaging.8.0.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": [
|
"logs": []
|
||||||
{
|
|
||||||
"code": "NU1900",
|
|
||||||
"level": "Warning",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("data")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("data")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb9d2134fbb1b7be6c05ec6ad7159dd069dd3fd")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+345818f0565cf667f0b3b780a7c18b0b378eb73e")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("data")]
|
[assembly: System.Reflection.AssemblyProductAttribute("data")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("data")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("data")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
@ -1 +1 @@
|
|||||||
cf96d5089cb6caf69b08d6f53371635a8397acc449b97042b83d1c21e6aa2e08
|
ba54871c58e576b67afea74a836cad3a67192647766a4dceaa41022fd4e6341a
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
ed423dbbb70d54abc3f17cab0182331466b8c742e1ddb70f2b3459d3600be9ee
|
94f8f604db68dc660aa1f32880cdf30afb27a139df64254311eaf25ea6ab016d
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -74,7 +74,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
||||||
|
@ -2182,16 +2182,8 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"logs": [
|
|
||||||
{
|
|
||||||
"code": "NU1900",
|
|
||||||
"level": "Warning",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "KP70yVpteEI=",
|
"dgSpecHash": "yakStMm0sCQ=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/data/data.csproj",
|
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/data/data.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
@ -43,12 +43,5 @@
|
|||||||
"/home/gara/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
|
"/home/gara/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
|
||||||
"/home/gara/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512"
|
"/home/gara/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": [
|
"logs": []
|
||||||
{
|
|
||||||
"code": "NU1900",
|
|
||||||
"level": "Warning",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -30,13 +30,5 @@ namespace presence.domain.UseCase
|
|||||||
{
|
{
|
||||||
return _repositoryGroupImpl.AddGroup(new GroupDao { Name = name, Id = id });
|
return _repositoryGroupImpl.AddGroup(new GroupDao { Name = name, Id = id });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// public List<GroupResponse> getAllGroup()
|
|
||||||
// {
|
|
||||||
// return _repositoryGroupImpl.GetAllGroup()
|
|
||||||
// .Select(it => new GroupResponse { Id = it.Id, Name = it.Name }).ToList();
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("domain")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("domain")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb9d2134fbb1b7be6c05ec6ad7159dd069dd3fd")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+345818f0565cf667f0b3b780a7c18b0b378eb73e")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("domain")]
|
[assembly: System.Reflection.AssemblyProductAttribute("domain")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("domain")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("domain")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
@ -1 +1 @@
|
|||||||
c0e22eda5bbbbabacb18030d45375a59a2c3560af8350ea455c8ff608127f62e
|
bf7c9afacedaef04971b8515aebf06ebf49c3cb3c323ac75a41b4caab8a0feca
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
535cddd3929e4f6dcfa360404cf64d9b6e6c19b6281c53f4bdc2cbaac97f574f
|
b1617fbadbaf058f2de9051e3a341ef5e46eda48f23845e1f53b2bba3de9778e
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -74,7 +74,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -136,7 +136,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/gara/.nuget/packages/</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/gara/.nuget/packages/</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
<SourceRoot Include="/home/gara/.nuget/packages/" />
|
||||||
|
@ -794,16 +794,8 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.407/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"logs": [
|
|
||||||
{
|
|
||||||
"code": "NU1900",
|
|
||||||
"level": "Warning",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "HAoexZCrILo=",
|
"dgSpecHash": "pOiZOA3/1M8=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/domain/domain.csproj",
|
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/domain/domain.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
@ -20,12 +20,5 @@
|
|||||||
"/home/gara/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512",
|
"/home/gara/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512",
|
||||||
"/home/gara/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
|
"/home/gara/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": [
|
"logs": []
|
||||||
{
|
|
||||||
"code": "NU1900",
|
|
||||||
"level": "Warning",
|
|
||||||
"warningLevel": 1,
|
|
||||||
"message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -13,10 +13,10 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("presence_api")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("presence_api")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ffb9d2134fbb1b7be6c05ec6ad7159dd069dd3fd")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+345818f0565cf667f0b3b780a7c18b0b378eb73e")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("presence_api")]
|
[assembly: System.Reflection.AssemblyProductAttribute("presence_api")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("presence_api")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("presence_api")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
||||||
// Generated by the MSBuild WriteCodeFragment class.
|
// Создано классом WriteCodeFragment MSBuild.
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
34ef239cd86edabcf83988e2e31454a1505ecfa56a75ef26188aa31c45020f99
|
84650c93884e9c5505f09e13aba7e97faeb3283cbc09751d3ef2582ff3097349
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
510470c1845d81e0dbb22760769d0611ad26c1aac11ae976303121185efe5273
|
483b0e4fe19af38812028f98c928a8d2f7e1465f45dcc7f7f5f563dbbd201dec
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user