This commit is contained in:
andrei-mihnea-cerbu
2024-04-09 02:04:37 +03:00
parent 015a1a9c09
commit 0d03c0ea43
92 changed files with 8842 additions and 302 deletions
+24
View File
@@ -0,0 +1,24 @@
# Use the official image as a parent image
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
# Use SDK image to build the project
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
COPY ["HealthcareManagerUI/HealthcareManagerUI.csproj", "HealthcareManagerUI/"]
RUN dotnet restore "HealthcareManagerUI/HealthcareManagerUI.csproj"
COPY . .
WORKDIR "/src/HealthcareManagerUI"
RUN dotnet build "HealthcareManagerUI.csproj" -c Release -o /app/build
# Publish the project
FROM build AS publish
RUN dotnet publish "HealthcareManagerUI.csproj" -c Release -o /app/publish
# Build runtime image
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "HealthcareManagerUI.dll"]
+5 -5
View File
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34616.47
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HealthcareManagerUI", "HealthcareManagerUI\HealthcareManagerUI.csproj", "{641DCB44-0CC9-43D0-AE58-5A722261F1E1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HealthcareManagerUI", "UI\HealthcareManagerUI.csproj", "{561DFCAE-164E-4C65-AB5F-003653307A31}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -11,10 +11,10 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Release|Any CPU.Build.0 = Release|Any CPU
{561DFCAE-164E-4C65-AB5F-003653307A31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{561DFCAE-164E-4C65-AB5F-003653307A31}.Debug|Any CPU.Build.0 = Debug|Any CPU
{561DFCAE-164E-4C65-AB5F-003653307A31}.Release|Any CPU.ActiveCfg = Release|Any CPU
{561DFCAE-164E-4C65-AB5F-003653307A31}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -1,4 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
</project>
@@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RiderProjectSettingsUpdater">
<option name="vcsConfiguration" value="2" />
</component>
</project>
@@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>
@@ -1,193 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AutoGeneratedRunConfigurationManager">
<projectFile profileName="IIS Express">HealthcareManagerUI/HealthcareManagerUI.csproj</projectFile>
<projectFile profileName="http">HealthcareManagerUI/HealthcareManagerUI.csproj</projectFile>
<projectFile profileName="https">HealthcareManagerUI/HealthcareManagerUI.csproj</projectFile>
</component>
<component name="AutoImportSettings">
<option name="autoReloadType" value="SELECTIVE" />
</component>
<component name="ChangeListManager">
<list default="true" id="95e8d50c-f126-4a57-97f4-161f6bc9a2ce" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/../../backend/API/obj/API.csproj.nuget.dgspec.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/API/obj/API.csproj.nuget.dgspec.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/API/obj/API.csproj.nuget.g.props" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/API/obj/API.csproj.nuget.g.props" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/API/obj/project.assets.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/API/obj/project.assets.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/API/obj/project.nuget.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/API/obj/project.nuget.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/Endpoints/Doctors/Login/DoctorLoginHandler.cs" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/Endpoints/Doctors/Login/DoctorLoginHandler.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/Endpoints/Doctors/Login/DoctorLoginValidation.cs" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/Endpoints/Doctors/Login/DoctorLoginValidation.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/obj/Application.csproj.nuget.dgspec.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/obj/Application.csproj.nuget.dgspec.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/obj/Application.csproj.nuget.g.props" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/obj/Application.csproj.nuget.g.props" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/obj/project.assets.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/obj/project.assets.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Application/obj/project.nuget.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Application/obj/project.nuget.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Core/obj/Core.csproj.nuget.dgspec.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Core/obj/Core.csproj.nuget.dgspec.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Core/obj/Core.csproj.nuget.g.props" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Core/obj/Core.csproj.nuget.g.props" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Core/obj/project.assets.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Core/obj/project.assets.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Core/obj/project.nuget.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Core/obj/project.nuget.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.props" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.props" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Infrastructure/obj/project.assets.json" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Infrastructure/obj/project.assets.json" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../backend/Infrastructure/obj/project.nuget.cache" beforeDir="false" afterPath="$PROJECT_DIR$/../../backend/Infrastructure/obj/project.nuget.cache" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../.vs/ProjectEvaluation/frontend.metadata.v7.bin" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../.vs/ProjectEvaluation/frontend.projects.v7.bin" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../.vs/frontend/DesignTimeBuild/.dtbcache.v2" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../.vs/frontend/FileContentIndex/1c58ffde-b812-4e7d-a54e-df9e9567b984.vsidx" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../.vs/frontend/v17/.futdcache.v2" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../.vs/frontend/v17/.suo" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../.vs/frontend/v17/DocumentLayout.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../Program.cs" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../bin/Debug/net8.0/frontend.deps.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../bin/Debug/net8.0/frontend.dll" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../bin/Debug/net8.0/frontend.exe" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../bin/Debug/net8.0/frontend.pdb" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../bin/Debug/net8.0/frontend.runtimeconfig.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../frontend.csproj" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../frontend.sln" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/apphost.exe" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.AssemblyInfo.cs" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.AssemblyInfoInputs.cache" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.GlobalUsings.g.cs" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.assets.cache" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.csproj.BuildWithSkipAnalyzers" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.csproj.CoreCompileInputs.cache" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.csproj.FileListAbsolute.txt" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.dll" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.genruntimeconfig.cache" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.pdb" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/frontend.sourcelink.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/ref/frontend.dll" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Debug/net8.0/refint/frontend.dll" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Release/net8.0/frontend.AssemblyInfo.cs" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Release/net8.0/frontend.AssemblyInfoInputs.cache" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Release/net8.0/frontend.GeneratedMSBuildEditorConfig.editorconfig" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Release/net8.0/frontend.GlobalUsings.g.cs" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/Release/net8.0/frontend.assets.cache" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/frontend.csproj.nuget.dgspec.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/frontend.csproj.nuget.g.props" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/frontend.csproj.nuget.g.targets" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/project.assets.json" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/../obj/project.nuget.cache" beforeDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="FileTemplateManagerImpl">
<option name="RECENT_TEMPLATES">
<list>
<option value="CSS File" />
</list>
</option>
</component>
<component name="MarkdownSettingsMigration">
<option name="stateVersion" value="1" />
</component>
<component name="ProjectColorInfo">{
&quot;customColor&quot;: &quot;&quot;,
&quot;associatedIndex&quot;: 2
}</component>
<component name="ProjectId" id="2eeaAOX3tM9vGSfHbTDKTVEn1vN" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">{
&quot;keyToString&quot;: {
&quot;.NET Launch Settings Profile.HealthcareManagerUI: http.executor&quot;: &quot;Run&quot;,
&quot;RunOnceActivity.OpenProjectViewOnStart&quot;: &quot;true&quot;,
&quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
&quot;list.type.of.created.stylesheet&quot;: &quot;CSS&quot;,
&quot;node.js.detected.package.eslint&quot;: &quot;true&quot;,
&quot;node.js.detected.package.tslint&quot;: &quot;true&quot;,
&quot;node.js.selected.package.eslint&quot;: &quot;(autodetect)&quot;,
&quot;node.js.selected.package.tslint&quot;: &quot;(autodetect)&quot;,
&quot;nodejs_package_manager_path&quot;: &quot;npm&quot;,
&quot;vue.rearranger.settings.migration&quot;: &quot;true&quot;
},
&quot;keyToStringList&quot;: {
&quot;rider.external.source.directories&quot;: [
&quot;C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\JetBrains\\Rider2023.3\\resharper-host\\DecompilerCache&quot;,
&quot;C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\JetBrains\\Rider2023.3\\resharper-host\\SourcesCache&quot;,
&quot;C:\\Users\\Andrei Cerbu\\AppData\\Local\\Symbols\\src&quot;
]
}
}</component>
<component name="RunManager" selected=".NET Launch Settings Profile.HealthcareManagerUI: http">
<configuration name="HealthcareManagerUI: IIS Express" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/HealthcareManagerUI/HealthcareManagerUI.csproj" />
<option name="LAUNCH_PROFILE_TFM" value="net8.0" />
<option name="LAUNCH_PROFILE_NAME" value="IIS Express" />
<option name="USE_EXTERNAL_CONSOLE" value="0" />
<option name="USE_MONO" value="0" />
<option name="RUNTIME_ARGUMENTS" value="" />
<option name="GENERATE_APPLICATIONHOST_CONFIG" value="1" />
<option name="SHOW_IIS_EXPRESS_OUTPUT" value="0" />
<option name="SEND_DEBUG_REQUEST" value="1" />
<option name="ADDITIONAL_IIS_EXPRESS_ARGUMENTS" value="" />
<method v="2">
<option name="Build" />
</method>
</configuration>
<configuration name="HealthcareManagerUI: http" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/HealthcareManagerUI/HealthcareManagerUI.csproj" />
<option name="LAUNCH_PROFILE_TFM" value="net8.0" />
<option name="LAUNCH_PROFILE_NAME" value="http" />
<option name="USE_EXTERNAL_CONSOLE" value="0" />
<option name="USE_MONO" value="0" />
<option name="RUNTIME_ARGUMENTS" value="" />
<option name="GENERATE_APPLICATIONHOST_CONFIG" value="1" />
<option name="SHOW_IIS_EXPRESS_OUTPUT" value="0" />
<option name="SEND_DEBUG_REQUEST" value="1" />
<option name="ADDITIONAL_IIS_EXPRESS_ARGUMENTS" value="" />
<method v="2">
<option name="Build" />
</method>
</configuration>
<configuration name="HealthcareManagerUI: https" type="LaunchSettings" factoryName=".NET Launch Settings Profile">
<option name="LAUNCH_PROFILE_PROJECT_FILE_PATH" value="$PROJECT_DIR$/HealthcareManagerUI/HealthcareManagerUI.csproj" />
<option name="LAUNCH_PROFILE_TFM" value="net8.0" />
<option name="LAUNCH_PROFILE_NAME" value="https" />
<option name="USE_EXTERNAL_CONSOLE" value="0" />
<option name="USE_MONO" value="0" />
<option name="RUNTIME_ARGUMENTS" value="" />
<option name="GENERATE_APPLICATIONHOST_CONFIG" value="1" />
<option name="SHOW_IIS_EXPRESS_OUTPUT" value="0" />
<option name="SEND_DEBUG_REQUEST" value="1" />
<option name="ADDITIONAL_IIS_EXPRESS_ARGUMENTS" value="" />
<method v="2">
<option name="Build" />
</method>
</configuration>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="95e8d50c-f126-4a57-97f4-161f6bc9a2ce" name="Changes" comment="" />
<created>1712267356897</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1712267356897</updated>
<workItem from="1712267358581" duration="3937000" />
<workItem from="1712298173589" duration="2172000" />
</task>
<servers />
</component>
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="VcsManagerConfiguration">
<option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="true" />
</component>
</project>
@@ -1,25 +0,0 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34616.47
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HealthcareManagerUI", "HealthcareManagerUI\HealthcareManagerUI.csproj", "{641DCB44-0CC9-43D0-AE58-5A722261F1E1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{641DCB44-0CC9-43D0-AE58-5A722261F1E1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {55598450-70ED-4D22-913B-0C99AB8F3F7D}
EndGlobalSection
EndGlobal
File diff suppressed because one or more lines are too long
@@ -1,6 +1,7 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
@@ -13,7 +14,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("HealthcareManagerUI")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+370bbdedcdfe038ea993900ddae1030e313dff4b")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+015a1a9c09fe601a8c8b9f61de5c7d87b5a73607")]
[assembly: System.Reflection.AssemblyProductAttribute("HealthcareManagerUI")]
[assembly: System.Reflection.AssemblyTitleAttribute("HealthcareManagerUI")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
@@ -1 +1 @@
3d546a9872af120a53b790688fd76a7eda71714302a64f35d4973c1dba8fac75
46810a70616010731ad4d99968dec18e0d1ff8e4928667ce661a40893a3b5703
@@ -9,47 +9,47 @@ build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = HealthcareManagerUI
build_property.RootNamespace = HealthcareManagerUI
build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\HealthcareManagerUI\
build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\HealthcareManagerUI
build_property.MSBuildProjectDirectory = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI
build_property._RazorSourceGeneratorDebug =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/App.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/App.razor]
build_metadata.AdditionalFiles.TargetPath = QXBwLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/Components/Layout/AuthLayout.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/Components/Layout/AuthLayout.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xMYXlvdXRcQXV0aExheW91dC5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/Components/Pages/AlertMessage.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/Components/Pages/AlertMessage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xBbGVydE1lc3NhZ2UucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/Components/Pages/ChooseRolePage.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/Components/Pages/ChooseRolePage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xDaG9vc2VSb2xlUGFnZS5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/Components/Pages/DashboardPage.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/Components/Pages/DashboardPage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xEYXNoYm9hcmRQYWdlLnJhem9y
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/Components/Pages/LoginPage.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/Components/Pages/LoginPage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xMb2dpblBhZ2UucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/Components/Pages/RegisterPage.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/Components/Pages/RegisterPage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xSZWdpc3RlclBhZ2UucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/Components/Pages/ResetPasswordPage.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/Components/Pages/ResetPasswordPage.razor]
build_metadata.AdditionalFiles.TargetPath = Q29tcG9uZW50c1xQYWdlc1xSZXNldFBhc3N3b3JkUGFnZS5yYXpvcg==
build_metadata.AdditionalFiles.CssScope =
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/HealthcareManagerUI/_Imports.razor]
[C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/frontend/UI/_Imports.razor]
build_metadata.AdditionalFiles.TargetPath = X0ltcG9ydHMucmF6b3I=
build_metadata.AdditionalFiles.CssScope =
@@ -1 +1 @@
77f2f066ecd8e1bf49bc70291e53f4622661d109e7508906f2a2c3238ed55638
28382d7ee8115e449332d5327b35bc5ae4586959c01fa4a8ebf4d5c9bdbafef7
@@ -27,3 +27,32 @@ C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\HealthcareManage
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\HealthcareManagerUI\obj\Debug\net8.0\HealthcareManagerUI.pdb
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\HealthcareManagerUI\obj\Debug\net8.0\HealthcareManagerUI.genruntimeconfig.cache
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\HealthcareManagerUI\obj\Debug\net8.0\ref\HealthcareManagerUI.dll
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\appsettings.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\HealthcareManagerUI.staticwebassets.runtime.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\HealthcareManagerUI.exe
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\HealthcareManagerUI.deps.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\HealthcareManagerUI.runtimeconfig.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\HealthcareManagerUI.dll
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\HealthcareManagerUI.pdb
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\bin\Debug\net8.0\Blazored.LocalStorage.dll
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.csproj.AssemblyReference.cache
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.AssemblyInfoInputs.cache
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.AssemblyInfo.cs
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.csproj.CoreCompileInputs.cache
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.MvcApplicationPartsAssemblyInfo.cache
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.sourcelink.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\staticwebassets.build.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\staticwebassets.development.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\staticwebassets\msbuild.HealthcareManagerUI.Microsoft.AspNetCore.StaticWebAssets.props
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\staticwebassets\msbuild.build.HealthcareManagerUI.props
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.HealthcareManagerUI.props
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.HealthcareManagerUI.props
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\staticwebassets.pack.json
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\scopedcss\bundle\HealthcareManagerUI.styles.css
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\Healthca.1F7B281D.Up2Date
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.dll
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\refint\HealthcareManagerUI.dll
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.pdb
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\HealthcareManagerUI.genruntimeconfig.cache
C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\frontend\UI\obj\Debug\net8.0\ref\HealthcareManagerUI.dll
@@ -1 +1 @@
3231e0bfd283add095407b83cbf95ab6bb075d4d4878e1f5f0f73a98c6ea07d4
c4bdc5ff4066faf4c178b7b86c8328cb6c943d071e4511a3f815aedbd351683f
@@ -1 +1 @@
{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/370bbdedcdfe038ea993900ddae1030e313dff4b/*"}}
{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/015a1a9c09fe601a8c8b9f61de5c7d87b5a73607/*"}}
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
@@ -1,13 +1,905 @@
{
"Files": [
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\wwwroot\\AuthLayout.css",
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\AuthLayout.css",
"PackagePath": "staticwebassets\\AuthLayout.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\wwwroot\\LoginPage.css",
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\LoginPage.css",
"PackagePath": "staticwebassets\\LoginPage.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\background_image.jpg",
"PackagePath": "staticwebassets\\background_image.jpg"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\LICENSE",
"PackagePath": "staticwebassets\\bootstrap"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\README.md",
"PackagePath": "staticwebassets\\bootstrap\\README.md"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.rtl.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-grid.rtl.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-reboot.rtl.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap-utilities.rtl.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.rtl.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.rtl.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.rtl.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.rtl.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.rtl.min.css",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.rtl.min.css"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\css\\bootstrap.rtl.min.css.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.bundle.js",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.bundle.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.bundle.js.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.bundle.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.bundle.min.js",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.bundle.min.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.bundle.min.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.esm.js",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.esm.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.esm.js.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.esm.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.esm.min.js",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.esm.min.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.esm.min.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.js",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.js.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.min.js",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.min.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\dist\\js\\bootstrap.min.js.map",
"PackagePath": "staticwebassets\\bootstrap\\dist\\js\\bootstrap.min.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\alert.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\alert.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\alert.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\alert.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\base-component.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\base-component.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\base-component.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\base-component.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\button.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\button.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\button.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\button.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\carousel.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\carousel.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\carousel.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\carousel.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\collapse.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\collapse.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\collapse.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\collapse.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\data.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\data.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\data.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\data.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\event-handler.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\event-handler.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\event-handler.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\event-handler.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\manipulator.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\manipulator.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\manipulator.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\manipulator.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\selector-engine.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\selector-engine.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dom\\selector-engine.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dom\\selector-engine.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dropdown.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dropdown.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\dropdown.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\dropdown.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\modal.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\modal.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\modal.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\modal.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\offcanvas.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\offcanvas.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\offcanvas.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\offcanvas.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\popover.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\popover.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\popover.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\popover.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\scrollspy.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\scrollspy.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\scrollspy.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\scrollspy.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\tab.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\tab.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\tab.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\tab.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\toast.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\toast.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\toast.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\toast.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\tooltip.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\tooltip.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\tooltip.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\tooltip.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\backdrop.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\backdrop.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\backdrop.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\backdrop.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\component-functions.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\component-functions.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\component-functions.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\component-functions.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\config.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\config.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\config.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\config.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\focustrap.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\focustrap.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\focustrap.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\focustrap.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\index.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\index.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\index.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\index.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\sanitizer.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\sanitizer.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\sanitizer.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\sanitizer.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\scrollbar.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\scrollbar.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\scrollbar.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\scrollbar.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\swipe.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\swipe.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\swipe.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\swipe.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\template-factory.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\template-factory.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\dist\\util\\template-factory.js.map",
"PackagePath": "staticwebassets\\bootstrap\\js\\dist\\util\\template-factory.js.map"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\index.esm.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\index.esm.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\index.umd.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\index.umd.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\alert.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\alert.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\base-component.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\base-component.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\button.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\button.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\carousel.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\carousel.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\collapse.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\collapse.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\dom\\data.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\dom\\data.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\dom\\event-handler.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\dom\\event-handler.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\dom\\manipulator.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\dom\\manipulator.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\dom\\selector-engine.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\dom\\selector-engine.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\dropdown.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\dropdown.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\modal.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\modal.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\offcanvas.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\offcanvas.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\popover.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\popover.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\scrollspy.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\scrollspy.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\tab.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\tab.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\toast.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\toast.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\tooltip.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\tooltip.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\backdrop.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\backdrop.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\component-functions.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\component-functions.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\config.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\config.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\focustrap.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\focustrap.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\index.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\index.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\sanitizer.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\sanitizer.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\scrollbar.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\scrollbar.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\swipe.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\swipe.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\js\\src\\util\\template-factory.js",
"PackagePath": "staticwebassets\\bootstrap\\js\\src\\util\\template-factory.js"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\package.json",
"PackagePath": "staticwebassets\\bootstrap\\package.json"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_accordion.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_accordion.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_alert.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_alert.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_badge.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_badge.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_breadcrumb.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_breadcrumb.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_button-group.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_button-group.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_buttons.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_buttons.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_card.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_card.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_carousel.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_carousel.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_close.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_close.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_containers.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_containers.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_dropdown.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_dropdown.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_forms.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_forms.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_functions.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_functions.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_grid.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_grid.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_helpers.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_helpers.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_images.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_images.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_list-group.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_list-group.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_maps.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_maps.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_mixins.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_mixins.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_modal.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_modal.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_nav.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_nav.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_navbar.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_navbar.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_offcanvas.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_offcanvas.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_pagination.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_pagination.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_placeholders.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_placeholders.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_popover.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_popover.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_progress.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_progress.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_reboot.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_reboot.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_root.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_root.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_spinners.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_spinners.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_tables.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_tables.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_toasts.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_toasts.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_tooltip.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_tooltip.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_transitions.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_transitions.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_type.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_type.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_utilities.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_utilities.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_variables-dark.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_variables-dark.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\_variables.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\_variables.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\bootstrap-grid.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\bootstrap-grid.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\bootstrap-reboot.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\bootstrap-reboot.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\bootstrap-utilities.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\bootstrap-utilities.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\bootstrap.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\bootstrap.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_floating-labels.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_floating-labels.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_form-check.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_form-check.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_form-control.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_form-control.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_form-range.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_form-range.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_form-select.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_form-select.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_form-text.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_form-text.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_input-group.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_input-group.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_labels.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_labels.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\forms\\_validation.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\forms\\_validation.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_clearfix.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_clearfix.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_color-bg.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_color-bg.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_colored-links.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_colored-links.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_focus-ring.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_focus-ring.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_icon-link.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_icon-link.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_position.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_position.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_ratio.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_ratio.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_stacks.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_stacks.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_stretched-link.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_stretched-link.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_text-truncation.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_text-truncation.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_visually-hidden.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_visually-hidden.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\helpers\\_vr.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\helpers\\_vr.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_alert.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_alert.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_backdrop.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_backdrop.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_banner.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_banner.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_border-radius.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_border-radius.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_box-shadow.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_box-shadow.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_breakpoints.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_breakpoints.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_buttons.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_buttons.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_caret.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_caret.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_clearfix.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_clearfix.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_color-mode.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_color-mode.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_color-scheme.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_color-scheme.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_container.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_container.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_deprecate.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_deprecate.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_forms.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_forms.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_gradients.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_gradients.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_grid.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_grid.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_image.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_image.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_list-group.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_list-group.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_lists.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_lists.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_pagination.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_pagination.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_reset-text.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_reset-text.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_resize.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_resize.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_table-variants.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_table-variants.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_text-truncate.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_text-truncate.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_transition.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_transition.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_utilities.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_utilities.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\mixins\\_visually-hidden.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\mixins\\_visually-hidden.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\utilities\\_api.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\utilities\\_api.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\bootstrap\\scss\\vendor\\_rfs.scss",
"PackagePath": "staticwebassets\\bootstrap\\scss\\vendor\\_rfs.scss"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\favicon.png",
"PackagePath": "staticwebassets\\favicon.png"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\package-lock.json",
"PackagePath": "staticwebassets\\package-lock.json"
},
{
"Id": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\wwwroot\\package.json",
"PackagePath": "staticwebassets\\package.json"
},
{
"Id": "obj\\Debug\\net8.0\\staticwebassets\\msbuild.HealthcareManagerUI.Microsoft.AspNetCore.StaticWebAssets.props",
"PackagePath": "build\\Microsoft.AspNetCore.StaticWebAssets.props"
@@ -1,17 +1,17 @@
{
"format": 1,
"restore": {
"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj": {}
"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj": {}
},
"projects": {
"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj": {
"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj",
"projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj",
"projectName": "HealthcareManagerUI",
"projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj",
"projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj",
"packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\obj\\",
"outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
@@ -612,11 +612,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj",
"projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj",
"projectName": "HealthcareManagerUI",
"projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj",
"projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj",
"packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\obj\\",
"outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
@@ -1,8 +1,8 @@
{
"version": 2,
"dgSpecHash": "NnwElfW5rF3jftfd5HHyqpQTh2JnmO122BUvJvpKa56eZCZhNUR3/p+JqTzclBPGizjhPvTZa3t8n3Yn3DkTrQ==",
"dgSpecHash": "AqV/2eXfd3uB9vtEKrgbKGb3YGXni1Z3CrFZ5JSAVxws33ngV0RSQe+mJcAJgLbKUBuYRtmcCsXS1XkySJ9/6A==",
"success": true,
"projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj",
"projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj",
"expectedPackageFiles": [
"C:\\Users\\Andrei Cerbu\\.nuget\\packages\\blazored.localstorage\\4.5.0\\blazored.localstorage.4.5.0.nupkg.sha512",
"C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.aspnetcore.authorization\\8.0.0\\microsoft.aspnetcore.authorization.8.0.0.nupkg.sha512",
@@ -1 +1 @@
"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj","projectName":"HealthcareManagerUI","projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\HealthcareManagerUI.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\HealthcareManagerUI\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Blazored.LocalStorage":{"target":"Package","version":"[4.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}}
"restore":{"projectUniqueName":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj","projectName":"HealthcareManagerUI","projectPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\HealthcareManagerUI.csproj","outputPath":"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\frontend\\UI\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Blazored.LocalStorage":{"target":"Package","version":"[4.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.AspNetCore.App":{"privateAssets":"none"},"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Users\\Andrei Cerbu\\.dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json"}}
@@ -1 +1 @@
17125721198365815
17126169796126030
@@ -1 +1 @@
17125732367889070
17126169796126030