Chuchut sdelano

main
itjustworks1 2026-04-01 10:44:08 +10:00
parent 71178c4e82
commit 87bcd6176e
29 changed files with 642 additions and 12 deletions

222
.gitignore vendored Normal file
View File

@ -0,0 +1,222 @@
#################
## Visual Studio
#################
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
# User-specific files
*.suo
*.user
*.sln.docstates
.vs/
# Build results
*.sln.ide/
[Dd]ebug/
[Rr]elease/
x64/
[Bb]in/
[Oo]bj/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.scc
*.binlog
# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile
# Visual Studio profiler
*.psess
*.vsp
*.vspx
# Guidance Automation Toolkit
*.gpState
# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
# TeamCity is a build add-in
_TeamCity*
# DotCover is a Code Coverage Tool
*.dotCover
# Installshield output folder
[Ee]xpress/
# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html
# Click-Once directory
publish/
# Publish Web Output
*.Publish.xml
*.pubxml
# Windows Azure Build Output
csx
*.build.csdef
# Windows Store app package directory
AppPackages/
# NCrunch
.NCrunch_*/
_NCrunch_*/
*.ncrunchsolution.user
nCrunchTemp_*
# CodeRush
.cr/
# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings
Events_Avalonia.cs
# RIA/Silverlight projects
Generated_Code/
# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
# SQL Server files
App_Data/*.mdf
App_Data/*.ldf
#############
## Windows detritus
#############
# Windows image file caches
Thumbs.db
ehthumbs.db
# Folder config file
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Mac crap
.DS_Store
#################
## Monodevelop
#################
*.userprefs
*.nugetreferenceswitcher
#################
## Rider
#################
.idea
#################
## VS Code
#################
.vscode/
#################
## Cake
#################
tools/*
!tools/packages.config
.nuget
artifacts/
nuget
Avalonia.XBuild.sln
project.lock.json
.idea/*
##################
## BenchmarkDotNet
##################
BenchmarkDotNet.Artifacts/
dirs.sln
##################
# Xcode
##################
Index/
Logs/
ModuleCache.noindex/
Build/Intermediates.noindex/
build-intermediate
obj-Direct2D1/
obj-Skia/
##################
# Vim
##################
.vim
coc-settings.json
.ccls-cache
.ccls
*.map
src/Browser/Avalonia.Browser.Blazor/wwwroot/*.js
src/Browser/Avalonia.Browser.Blazor/Interop/Typescript/*.js
node_modules
src/Browser/Avalonia.Browser.Blazor/webapp/package-lock.json
src/Browser/Avalonia.Browser.Blazor/wwwroot
src/Browser/Avalonia.Browser/wwwroot
api/diff
src/Browser/Avalonia.Browser/staticwebassets
.serena

View File

@ -9,12 +9,11 @@
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\"/>
<AvaloniaResource Include="Assets\**"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.4"/>
<PackageReference Include="Avalonia" Version="11.3.4" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.4"/>
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.4"/>
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.4"/>

View File

@ -0,0 +1,6 @@
namespace AvaloniaApplication14_Inventory_300326.Models.Models;
public class DBObj
{
public int Id { get; set; }
}

View File

@ -0,0 +1,7 @@
namespace AvaloniaApplication14_Inventory_300326.Models.Models;
public class Employee : DBObj
{
public string FullName { get; set; }
public int PositionId { get; set; }
}

View File

@ -0,0 +1,13 @@
using System;
namespace AvaloniaApplication14_Inventory_300326.Models.Models;
public class Equipment : DBObj
{
public string InvNumber { get; set; }
public string Name { get; set; }
public DateOnly Date { get; set; }
public int Cost { get; set; }
public bool IsWrittenOff {get; set;}
public int CurrentEmployeeId { get; set; }
}

View File

@ -0,0 +1,6 @@
namespace AvaloniaApplication14_Inventory_300326.Models.Models;
public class Position : DBObj
{
public string Name { get; set; }
}

View File

@ -0,0 +1,11 @@
using System;
namespace AvaloniaApplication14_Inventory_300326.Models.Models;
public class Transfer : DBObj
{
public int EquipmentId { get; set; }
public int FromEmployeeId { get; set; }
public int ToEmployeeId { get; set; }
public DateTime Date { get; set; }
}

View File

@ -0,0 +1,11 @@
using System;
namespace AvaloniaApplication14_Inventory_300326.Models.Models;
public class WriteOff : DBObj
{
public int EquipmentId { get; set; }
public DateTime Date { get; set; }
public string Reason { get; set; }
public int NeedsDisposal { get; set; }
}

View File

@ -9,6 +9,16 @@
Icon="/Assets/avalonia-logo.ico"
Title="AvaloniaApplication14_Inventory_300326">
<TabControl>
<TabItem Header="Справочники">
</TabItem>
<TabItem Header="Операции">
</TabItem>
<TabItem Header="Отчеты">
</TabItem>
</TabControl>
</Window>

View File

@ -20,7 +20,7 @@
"net9.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
"http://192.168.200.81:8081/repository/nuget.org-proxy/index.json": {}
},
"frameworks": {
"net9.0": {

View File

@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/student/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/student/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/home/student/.nuget/packages/" />

View File

@ -0,0 +1,226 @@
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.Base.dll
/home/student/.nuget/packages/avalonia.controls.colorpicker/11.3.4/lib/net8.0/Avalonia.Controls.ColorPicker.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.Controls.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.DesignerSupport.dll
/home/student/.nuget/packages/avalonia.desktop/11.3.4/lib/net8.0/Avalonia.Desktop.dll
/home/student/.nuget/packages/avalonia.diagnostics/11.3.4/lib/net8.0/Avalonia.Diagnostics.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.Dialogs.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.dll
/home/student/.nuget/packages/avalonia.fonts.inter/11.3.4/lib/net8.0/Avalonia.Fonts.Inter.dll
/home/student/.nuget/packages/avalonia.freedesktop/11.3.4/lib/net8.0/Avalonia.FreeDesktop.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.Markup.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.Markup.Xaml.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.Metal.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.MicroCom.dll
/home/student/.nuget/packages/avalonia.native/11.3.4/lib/net8.0/Avalonia.Native.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.OpenGL.dll
/home/student/.nuget/packages/avalonia.remote.protocol/11.3.4/lib/net8.0/Avalonia.Remote.Protocol.dll
/home/student/.nuget/packages/avalonia.skia/11.3.4/lib/net8.0/Avalonia.Skia.dll
/home/student/.nuget/packages/avalonia.themes.fluent/11.3.4/lib/net8.0/Avalonia.Themes.Fluent.dll
/home/student/.nuget/packages/avalonia.themes.simple/11.3.4/lib/net8.0/Avalonia.Themes.Simple.dll
/home/student/.nuget/packages/avalonia/11.3.4/ref/net8.0/Avalonia.Vulkan.dll
/home/student/.nuget/packages/avalonia.win32/11.3.4/lib/net8.0/Avalonia.Win32.Automation.dll
/home/student/.nuget/packages/avalonia.win32/11.3.4/lib/net8.0/Avalonia.Win32.dll
/home/student/.nuget/packages/avalonia.x11/11.3.4/lib/net8.0/Avalonia.X11.dll
/home/student/.nuget/packages/communitytoolkit.mvvm/8.2.1/lib/net6.0/CommunityToolkit.Mvvm.dll
/home/student/.nuget/packages/harfbuzzsharp/8.3.1.1/lib/net8.0/HarfBuzzSharp.dll
/home/student/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/Microsoft.CSharp.dll
/home/student/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
/home/student/.nuget/packages/microsoft.extensions.configuration.binder/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll
/home/student/.nuget/packages/microsoft.extensions.configuration.commandline/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll
/home/student/.nuget/packages/microsoft.extensions.configuration/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.dll
/home/student/.nuget/packages/microsoft.extensions.configuration.environmentvariables/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
/home/student/.nuget/packages/microsoft.extensions.configuration.fileextensions/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll
/home/student/.nuget/packages/microsoft.extensions.configuration.json/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.Json.dll
/home/student/.nuget/packages/microsoft.extensions.configuration.usersecrets/10.0.5/lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll
/home/student/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.5/lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/home/student/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.5/lib/net9.0/Microsoft.Extensions.DependencyInjection.dll
/home/student/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.5/lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
/home/student/.nuget/packages/microsoft.extensions.diagnostics/10.0.5/lib/net9.0/Microsoft.Extensions.Diagnostics.dll
/home/student/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.5/lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll
/home/student/.nuget/packages/microsoft.extensions.fileproviders.physical/10.0.5/lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
/home/student/.nuget/packages/microsoft.extensions.filesystemglobbing/10.0.5/lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
/home/student/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.5/lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
/home/student/.nuget/packages/microsoft.extensions.hosting/10.0.5/lib/net9.0/Microsoft.Extensions.Hosting.dll
/home/student/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.5/lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
/home/student/.nuget/packages/microsoft.extensions.logging.configuration/10.0.5/lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll
/home/student/.nuget/packages/microsoft.extensions.logging.console/10.0.5/lib/net9.0/Microsoft.Extensions.Logging.Console.dll
/home/student/.nuget/packages/microsoft.extensions.logging.debug/10.0.5/lib/net9.0/Microsoft.Extensions.Logging.Debug.dll
/home/student/.nuget/packages/microsoft.extensions.logging/10.0.5/lib/net9.0/Microsoft.Extensions.Logging.dll
/home/student/.nuget/packages/microsoft.extensions.logging.eventlog/10.0.5/lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll
/home/student/.nuget/packages/microsoft.extensions.logging.eventsource/10.0.5/lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll
/home/student/.nuget/packages/microsoft.extensions.options.configurationextensions/10.0.5/lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
/home/student/.nuget/packages/microsoft.extensions.options/10.0.5/lib/net9.0/Microsoft.Extensions.Options.dll
/home/student/.nuget/packages/microsoft.extensions.primitives/10.0.5/lib/net9.0/Microsoft.Extensions.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/Microsoft.VisualBasic.Core.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/Microsoft.VisualBasic.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/Microsoft.Win32.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/Microsoft.Win32.Registry.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/mscorlib.dll
/home/student/.nuget/packages/mysqlconnector/2.5.0/lib/net9.0/MySqlConnector.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/netstandard.dll
/home/student/.nuget/packages/skiasharp/2.88.9/lib/net6.0/SkiaSharp.dll
/home/student/.nuget/packages/freespire.xls/14.2.0/lib/netstandard2.0/Spire.XLS.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.AppContext.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Buffers.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Collections.Concurrent.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Collections.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Collections.Immutable.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Collections.NonGeneric.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Collections.Specialized.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ComponentModel.Annotations.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ComponentModel.DataAnnotations.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ComponentModel.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ComponentModel.EventBasedAsync.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ComponentModel.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ComponentModel.TypeConverter.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Configuration.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Console.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Core.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Data.Common.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Data.DataSetExtensions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Data.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.Contracts.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.Debug.dll
/home/student/.nuget/packages/system.diagnostics.diagnosticsource/10.0.5/lib/net9.0/System.Diagnostics.DiagnosticSource.dll
/home/student/.nuget/packages/system.diagnostics.eventlog/10.0.5/lib/net9.0/System.Diagnostics.EventLog.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.FileVersionInfo.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.Process.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.StackTrace.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.TextWriterTraceListener.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.Tools.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.TraceSource.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Diagnostics.Tracing.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Drawing.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Drawing.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Dynamic.Runtime.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Formats.Asn1.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Formats.Tar.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Globalization.Calendars.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Globalization.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Globalization.Extensions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.Compression.Brotli.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.Compression.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.Compression.FileSystem.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.Compression.ZipFile.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.FileSystem.AccessControl.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.FileSystem.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.FileSystem.DriveInfo.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.FileSystem.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.FileSystem.Watcher.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.IsolatedStorage.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.MemoryMappedFiles.dll
/home/student/.nuget/packages/system.io.pipelines/10.0.5/lib/net9.0/System.IO.Pipelines.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.Pipes.AccessControl.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.Pipes.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.IO.UnmanagedMemoryStream.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Linq.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Linq.Expressions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Linq.Parallel.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Linq.Queryable.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Memory.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Http.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Http.Json.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.HttpListener.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Mail.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.NameResolution.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.NetworkInformation.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Ping.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Quic.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Requests.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Security.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.ServicePoint.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.Sockets.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.WebClient.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.WebHeaderCollection.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.WebProxy.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.WebSockets.Client.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Net.WebSockets.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Numerics.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Numerics.Vectors.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ObjectModel.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.DispatchProxy.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.Emit.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.Emit.ILGeneration.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.Emit.Lightweight.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.Extensions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.Metadata.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Reflection.TypeExtensions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Resources.Reader.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Resources.ResourceManager.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Resources.Writer.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.CompilerServices.Unsafe.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.CompilerServices.VisualC.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Extensions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Handles.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.InteropServices.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.InteropServices.JavaScript.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.InteropServices.RuntimeInformation.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Intrinsics.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Loader.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Numerics.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Serialization.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Serialization.Formatters.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Serialization.Json.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Serialization.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Runtime.Serialization.Xml.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.AccessControl.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Claims.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.Algorithms.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.Cng.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.Csp.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.Encoding.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.OpenSsl.dll
/home/student/.nuget/packages/system.security.cryptography.pkcs/4.5.0/ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.Primitives.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Cryptography.X509Certificates.dll
/home/student/.nuget/packages/system.security.cryptography.xml/4.5.0/ref/netstandard2.0/System.Security.Cryptography.Xml.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.dll
/home/student/.nuget/packages/system.security.permissions/4.5.0/ref/netstandard2.0/System.Security.Permissions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Principal.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.Principal.Windows.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Security.SecureString.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ServiceModel.Web.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ServiceProcess.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Text.Encoding.CodePages.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Text.Encoding.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Text.Encoding.Extensions.dll
/home/student/.nuget/packages/system.text.encodings.web/10.0.5/lib/net9.0/System.Text.Encodings.Web.dll
/home/student/.nuget/packages/system.text.json/10.0.5/lib/net9.0/System.Text.Json.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Text.RegularExpressions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Channels.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Overlapped.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Tasks.Dataflow.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Tasks.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Tasks.Extensions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Tasks.Parallel.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Thread.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.ThreadPool.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Threading.Timer.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Transactions.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Transactions.Local.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.ValueTuple.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Web.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Web.HttpUtility.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Windows.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.Linq.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.ReaderWriter.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.Serialization.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.XDocument.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.XmlDocument.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.XmlSerializer.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.XPath.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/System.Xml.XPath.XDocument.dll
/home/student/.nuget/packages/tmds.dbus.protocol/0.21.2/lib/net8.0/Tmds.DBus.Protocol.dll
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.13/ref/net9.0/WindowsBase.dll

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("AvaloniaApplication14_Inventory_300326")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+71178c4e824838e3ca4a2d19b2b8e0b613ee19c6")]
[assembly: System.Reflection.AssemblyProductAttribute("AvaloniaApplication14_Inventory_300326")]
[assembly: System.Reflection.AssemblyTitleAttribute("AvaloniaApplication14_Inventory_300326")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
564396617e9db07673c73631b347428ec56b3fb924f0804b58d2f45e4548325a
443d2b946cd2eeb128f07ded066e7ac6c211d9b35a96b2cc79f4ba554186321c

View File

@ -0,0 +1 @@
25c1033c54cefc55af85fa62d4ff99e35af5d3062adaeb956dceb28e9085c83a

View File

@ -0,0 +1,117 @@
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/AvaloniaApplication14_Inventory_300326
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/appsettings.json
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/AvaloniaApplication14_Inventory_300326.deps.json
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/AvaloniaApplication14_Inventory_300326.runtimeconfig.json
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/AvaloniaApplication14_Inventory_300326.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/AvaloniaApplication14_Inventory_300326.pdb
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Base.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Controls.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.DesignerSupport.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Dialogs.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Markup.Xaml.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Markup.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Metal.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.MicroCom.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.OpenGL.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Vulkan.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Controls.ColorPicker.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Desktop.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Diagnostics.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Fonts.Inter.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.FreeDesktop.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Native.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Remote.Protocol.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Skia.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Themes.Fluent.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Themes.Simple.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Win32.Automation.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.Win32.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Avalonia.X11.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/CommunityToolkit.Mvvm.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Spire.XLS.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/HarfBuzzSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/MicroCom.Runtime.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Binder.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Json.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Hosting.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Logging.Configuration.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Logging.Console.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Logging.Debug.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventLog.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Logging.EventSource.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Options.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/MySqlConnector.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/SkiaSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.Diagnostics.DiagnosticSource.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.Diagnostics.EventLog.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.IO.Pipelines.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.Security.Cryptography.Pkcs.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.Security.Cryptography.Xml.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.Security.Permissions.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.Text.Encodings.Web.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/System.Text.Json.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/Tmds.DBus.Protocol.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-arm64/native/av_libglesv2.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-x64/native/av_libglesv2.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-x86/native/av_libglesv2.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/osx/native/libAvaloniaNative.dylib
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-x86/native/libHarfBuzzSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/osx/native/libHarfBuzzSharp.dylib
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-arm/native/libSkiaSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-arm64/native/libSkiaSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/linux-x64/native/libSkiaSharp.so
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/bin/Debug/net9.0/runtimes/win/lib/net9.0/System.Text.Encodings.Web.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.csproj.AssemblyReference.cache
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/Avalonia/resources
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.GeneratedMSBuildEditorConfig.editorconfig
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.AssemblyInfoInputs.cache
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.AssemblyInfo.cs
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.csproj.CoreCompileInputs.cache
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/Avalonia.FF3D7A9B.Up2Date
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/refint/AvaloniaApplication14_Inventory_300326.dll
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.pdb
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/AvaloniaApplication14_Inventory_300326.genruntimeconfig.cache
/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/Debug/net9.0/ref/AvaloniaApplication14_Inventory_300326.dll

View File

@ -0,0 +1 @@
d83642e70585a836203af8571ed4eb131b7fcbeaa261ac94928c354546f4a742

View File

@ -3822,7 +3822,7 @@
"net9.0"
],
"sources": {
"https://api.nuget.org/v3/index.json": {}
"http://192.168.200.81:8081/repository/nuget.org-proxy/index.json": {}
},
"frameworks": {
"net9.0": {

View File

@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "Z9PMh72gdIU=",
"dgSpecHash": "TM62moL57aw=",
"success": true,
"projectFilePath": "/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326.csproj",
"expectedPackageFiles": [

View File

@ -1 +1 @@
"restore":{"projectUniqueName":"/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326.csproj","projectName":"AvaloniaApplication14_Inventory_300326","projectPath":"/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326.csproj","outputPath":"/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.3.4, )"},"CommunityToolkit.Mvvm":{"target":"Package","version":"[8.2.1, )"},"FreeSpire.XLS":{"target":"Package","version":"[14.2.0, )"},"Microsoft.Extensions.Hosting":{"target":"Package","version":"[10.0.5, )"},"MySqlConnector":{"target":"Package","version":"[2.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/student/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json"}}
"restore":{"projectUniqueName":"/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326.csproj","projectName":"AvaloniaApplication14_Inventory_300326","projectPath":"/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326.csproj","outputPath":"/home/student/RiderProjects/AvaloniaApplication14_Inventory_300326/AvaloniaApplication14_Inventory_300326/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"http://192.168.200.81:8081/repository/nuget.org-proxy/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.3.4, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.3.4, )"},"CommunityToolkit.Mvvm":{"target":"Package","version":"[8.2.1, )"},"FreeSpire.XLS":{"target":"Package","version":"[14.2.0, )"},"Microsoft.Extensions.Hosting":{"target":"Package","version":"[10.0.5, )"},"MySqlConnector":{"target":"Package","version":"[2.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/student/.dotnet/sdk/9.0.311/PortableRuntimeIdentifierGraph.json"}}

View File

@ -1 +1 @@
17748332480914917
17750017536262496

View File

@ -1 +1 @@
17748332482644911
17750021541047901