diff --git a/StudentApp.Tests/StudentApp.Tests.csproj b/StudentApp.Tests/StudentApp.Tests.csproj
new file mode 100644
index 0000000..7b7ebe4
--- /dev/null
+++ b/StudentApp.Tests/StudentApp.Tests.csproj
@@ -0,0 +1,27 @@
+
+
+
+ net8.0
+ enable
+ enable
+
+ false
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/StudentApp.Tests/UnitTest1.cs b/StudentApp.Tests/UnitTest1.cs
new file mode 100644
index 0000000..3a649f7
--- /dev/null
+++ b/StudentApp.Tests/UnitTest1.cs
@@ -0,0 +1,64 @@
+using NUnit.Framework;
+using OpenQA.Selenium;
+using OpenQA.Selenium.Chrome;
+using OpenQA.Selenium.Support.UI;
+using System;
+using System.Threading;
+
+namespace StudentApp.Tests
+{
+ public class RegisterTests
+ {
+ private ChromeDriver driver;
+ private WebDriverWait wait;
+
+ [SetUp]
+ public void Setup()
+ {
+ driver = new ChromeDriver();
+ driver.Manage().Window.Maximize();
+ wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
+ }
+
+ [Test]
+ public void RegisterNewStudent()
+ {
+ driver.Navigate().GoToUrl("https://localhost:7047/User/Register");
+
+ string email = $"juan.perez{DateTime.Now.Ticks}danivarelacor@gmail.com";
+ driver.FindElement(By.Id("r-name")).SendKeys("Juan Pérez");
+ driver.FindElement(By.Id("r-email")).SendKeys(email);
+ driver.FindElement(By.Id("r-password")).SendKeys("Password123!");
+ driver.FindElement(By.Id("confirm-password")).SendKeys("Password123!");
+
+
+ driver.FindElement(By.Id("form-submit")).Click();
+
+
+ Thread.Sleep(6000);
+
+ IWebElement validationMessage = wait.Until(d => d.FindElement(By.Id("validation")));
+ string messageText = validationMessage.Text;
+
+
+ string[] expectedMessages = {
+ "Su solicitud ha sido enviada correctamente. Revisa tu correo.",
+ "El correo electrónico ya ha sido registrado en el sistema.",
+ "No ha sido posible hacer la solicitud de registro. Intente de nuevo más tarde.",
+ "Ha ocurrido un error inesperado en el sistema. Intente de nuevo más tarde."
+ };
+
+ Assert.IsTrue(Array.Exists(expectedMessages, msg => messageText.Contains(msg)),
+ $"Mensaje recibido inesperado: {messageText}");
+ }
+
+ [TearDown]
+ public void Teardown()
+ {
+ if (driver != null)
+ {
+ driver.Dispose();
+ }
+ }
+ }
+}
diff --git a/StudentApp.sln b/StudentApp.sln
index e29f588..52e62c9 100644
--- a/StudentApp.sln
+++ b/StudentApp.sln
@@ -5,6 +5,8 @@ VisualStudioVersion = 17.12.35527.113
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StudentApp", "StudentApp\StudentApp.csproj", "{8A67DCE4-01B5-4085-9295-7E8ED7AC6FF5}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StudentApp.Tests", "StudentApp.Tests\StudentApp.Tests.csproj", "{909D1A0E-5B19-4E79-B542-A3EF3A45FB74}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -15,8 +17,15 @@ Global
{8A67DCE4-01B5-4085-9295-7E8ED7AC6FF5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8A67DCE4-01B5-4085-9295-7E8ED7AC6FF5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8A67DCE4-01B5-4085-9295-7E8ED7AC6FF5}.Release|Any CPU.Build.0 = Release|Any CPU
+ {909D1A0E-5B19-4E79-B542-A3EF3A45FB74}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {909D1A0E-5B19-4E79-B542-A3EF3A45FB74}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {909D1A0E-5B19-4E79-B542-A3EF3A45FB74}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {909D1A0E-5B19-4E79-B542-A3EF3A45FB74}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {6C4BE241-D11E-478B-9710-4A578CEC79DB}
+ EndGlobalSection
EndGlobal
diff --git a/StudentApp/Controllers/UserController.cs b/StudentApp/Controllers/UserController.cs
index 35b74f1..671086c 100644
--- a/StudentApp/Controllers/UserController.cs
+++ b/StudentApp/Controllers/UserController.cs
@@ -130,6 +130,7 @@ public IActionResult Register([FromBody] User user)
}
+
[HttpGet]
public IActionResult GetByEmail([FromQuery] string email)
{
diff --git a/StudentApp/Models/DAO/AppointmentDAO.cs b/StudentApp/Models/DAO/AppointmentDAO.cs
index 4083df6..c989cf8 100644
--- a/StudentApp/Models/DAO/AppointmentDAO.cs
+++ b/StudentApp/Models/DAO/AppointmentDAO.cs
@@ -26,36 +26,36 @@ public int CreateAppointment(AppointmentDTO appointment)
{
try
{
+
using (SqlCommand command = new SqlCommand("CreateAppointment", connection, transaction))
{
command.CommandType = System.Data.CommandType.StoredProcedure;
-
- command.Parameters.AddWithValue("@Id", Guid.NewGuid().ToString());
+ command.Parameters.AddWithValue("@Id", appointment.Id);
command.Parameters.AddWithValue("@Date", appointment.Date);
command.Parameters.AddWithValue("@Mode", appointment.Mode);
command.Parameters.AddWithValue("@Status", "pending");
- command.Parameters.AddWithValue("@CourseId", appointment.Course.Id);
- command.Parameters.AddWithValue("@StudentId", appointment.User.Id);
+ command.Parameters.AddWithValue("@CourseId", appointment.CourseId);
+ command.Parameters.AddWithValue("@StudentId", appointment.StudentId);
result = command.ExecuteNonQuery();
}
+
using (SqlCommand command = new SqlCommand("GetProfessorEmail", connection, transaction))
{
command.CommandType = System.Data.CommandType.StoredProcedure;
-
- command.Parameters.AddWithValue("@Id", appointment.Id);
- command.Parameters.AddWithValue("@Date", appointment.Date);
- command.Parameters.AddWithValue("@Mode", appointment.Mode);
- command.Parameters.AddWithValue("@Status", "pending");
- command.Parameters.AddWithValue("@CourseId", appointment.CourseId);
- command.Parameters.AddWithValue("@StudentId", appointment.StudentId);
+ command.Parameters.AddWithValue("@CourseId", appointment.CourseId);
var professorEmail = command.ExecuteScalar()?.ToString() ?? string.Empty;
- SendEmail.AppointmentEmail(professorEmail);
+ // Enviar el correo
+ if (!string.IsNullOrEmpty(professorEmail))
+ {
+ SendEmail.AppointmentEmail(professorEmail);
+ }
}
+
transaction.Commit();
}
catch (SqlException)
diff --git a/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfo.cs b/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfo.cs
index c399dcb..2e5436b 100644
--- a/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfo.cs
+++ b/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfo.cs
@@ -1,10 +1,10 @@
//------------------------------------------------------------------------------
//
-// Este código fue generado por una herramienta.
-// Versión de runtime:4.0.30319.42000
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
//
-// Los cambios en este archivo podrían causar un comportamiento incorrecto y se perderán si
-// se vuelve a generar el código.
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
//
//------------------------------------------------------------------------------
@@ -14,10 +14,10 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("StudentApp")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+2394903217b2b4df673cd52ce6c821433bcd75aa")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f71dbdf8d42338753407b79f06745f883a395b27")]
[assembly: System.Reflection.AssemblyProductAttribute("StudentApp")]
[assembly: System.Reflection.AssemblyTitleAttribute("StudentApp")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-// Generado por la clase WriteCodeFragment de MSBuild.
+// Generated by the MSBuild WriteCodeFragment class.
diff --git a/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfoInputs.cache b/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfoInputs.cache
index 9281f77..7300418 100644
--- a/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfoInputs.cache
+++ b/StudentApp/obj/Debug/net8.0/StudentApp.AssemblyInfoInputs.cache
@@ -1 +1 @@
-4b0c0ff21470ffc2cb8da46cd8bc936f1be9f2c5092d96d7f2a64d6c7808b60c
+99a0f1b92cd2028894593fa9f48a491fb16a3706f6427e46f9e84b1f631e32ba
diff --git a/StudentApp/obj/Debug/net8.0/StudentApp.GeneratedMSBuildEditorConfig.editorconfig b/StudentApp/obj/Debug/net8.0/StudentApp.GeneratedMSBuildEditorConfig.editorconfig
index d816709..b49a63e 100644
--- a/StudentApp/obj/Debug/net8.0/StudentApp.GeneratedMSBuildEditorConfig.editorconfig
+++ b/StudentApp/obj/Debug/net8.0/StudentApp.GeneratedMSBuildEditorConfig.editorconfig
@@ -9,75 +9,75 @@ build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = StudentApp
build_property.RootNamespace = StudentApp
-build_property.ProjectDir = C:\Users\Esteban\Documents\UCR\Tercer año\III Semestre\Lenguajes para Aplicaciones Comerciales\Proyecto\StudentApp\StudentApp\
+build_property.ProjectDir = C:\Users\daniv\source\repos\StudentApp\StudentApp\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = C:\Users\Esteban\Documents\UCR\Tercer año\III Semestre\Lenguajes para Aplicaciones Comerciales\Proyecto\StudentApp\StudentApp
+build_property.MSBuildProjectDirectory = C:\Users\daniv\source\repos\StudentApp\StudentApp
build_property._RazorSourceGeneratorDebug =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Home/Index.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Home/Index.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Home/Privacy.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Home/Privacy.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/AddNews.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/AddNews.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEFkZE5ld3MuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/Advisement.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/Advisement.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEFkdmlzZW1lbnQuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/AdvisementDetails.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/AdvisementDetails.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEFkdmlzZW1lbnREZXRhaWxzLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/Appointment.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/Appointment.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEFwcG9pbnRtZW50LmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/Error.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/Error.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/Login.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/Login.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXExvZ2luLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/News.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/News.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXE5ld3MuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/NewsDetails.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/NewsDetails.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXE5ld3NEZXRhaWxzLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/Profile.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/Profile.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXFByb2ZpbGUuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/Register.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/Register.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXFJlZ2lzdGVyLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/_ValidationScriptsPartial.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/_ValidationScriptsPartial.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/_ViewImports.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/_ViewImports.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA==
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/_ViewStart.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/_ViewStart.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw=
build_metadata.AdditionalFiles.CssScope =
-[C:/Users/Esteban/Documents/UCR/Tercer año/III Semestre/Lenguajes para Aplicaciones Comerciales/Proyecto/StudentApp/StudentApp/Views/Shared/_Layout.cshtml]
+[C:/Users/daniv/source/repos/StudentApp/StudentApp/Views/Shared/_Layout.cshtml]
build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s
build_metadata.AdditionalFiles.CssScope = b-ak0w5rm0kc
diff --git a/StudentApp/obj/Debug/net8.0/StudentApp.assets.cache b/StudentApp/obj/Debug/net8.0/StudentApp.assets.cache
index bc93477..07b8499 100644
Binary files a/StudentApp/obj/Debug/net8.0/StudentApp.assets.cache and b/StudentApp/obj/Debug/net8.0/StudentApp.assets.cache differ
diff --git a/StudentApp/obj/StudentApp.csproj.nuget.dgspec.json b/StudentApp/obj/StudentApp.csproj.nuget.dgspec.json
index 6b1ff2b..fe534b1 100644
--- a/StudentApp/obj/StudentApp.csproj.nuget.dgspec.json
+++ b/StudentApp/obj/StudentApp.csproj.nuget.dgspec.json
@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
- "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\StudentApp.csproj": {}
+ "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\StudentApp.csproj": {}
},
"projects": {
- "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\StudentApp.csproj": {
+ "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\StudentApp.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\StudentApp.csproj",
+ "projectUniqueName": "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\StudentApp.csproj",
"projectName": "StudentApp",
- "projectPath": "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\StudentApp.csproj",
- "packagesPath": "C:\\Users\\Esteban\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\obj\\",
+ "projectPath": "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\StudentApp.csproj",
+ "packagesPath": "C:\\Users\\daniv\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Esteban\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Users\\daniv\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
diff --git a/StudentApp/obj/StudentApp.csproj.nuget.g.props b/StudentApp/obj/StudentApp.csproj.nuget.g.props
index 3755991..047e514 100644
--- a/StudentApp/obj/StudentApp.csproj.nuget.g.props
+++ b/StudentApp/obj/StudentApp.csproj.nuget.g.props
@@ -5,11 +5,11 @@
NuGet
$(MSBuildThisFileDirectory)project.assets.json
$(UserProfile)\.nuget\packages\
- C:\Users\Esteban\.nuget\packages\
+ C:\Users\daniv\.nuget\packages\
PackageReference
6.11.1
-
+
\ No newline at end of file
diff --git a/StudentApp/obj/project.assets.json b/StudentApp/obj/project.assets.json
index fb15455..c4de3b0 100644
--- a/StudentApp/obj/project.assets.json
+++ b/StudentApp/obj/project.assets.json
@@ -1790,19 +1790,19 @@
]
},
"packageFolders": {
- "C:\\Users\\Esteban\\.nuget\\packages\\": {}
+ "C:\\Users\\daniv\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\StudentApp.csproj",
+ "projectUniqueName": "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\StudentApp.csproj",
"projectName": "StudentApp",
- "projectPath": "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\StudentApp.csproj",
- "packagesPath": "C:\\Users\\Esteban\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\obj\\",
+ "projectPath": "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\StudentApp.csproj",
+ "packagesPath": "C:\\Users\\daniv\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Esteban\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Users\\daniv\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
diff --git a/StudentApp/obj/project.nuget.cache b/StudentApp/obj/project.nuget.cache
index f65b113..2978bde 100644
--- a/StudentApp/obj/project.nuget.cache
+++ b/StudentApp/obj/project.nuget.cache
@@ -1,48 +1,48 @@
{
"version": 2,
- "dgSpecHash": "D3o6O3hsjRw=",
+ "dgSpecHash": "iCK5r4JGVio=",
"success": true,
- "projectFilePath": "C:\\Users\\Esteban\\Documents\\UCR\\Tercer año\\III Semestre\\Lenguajes para Aplicaciones Comerciales\\Proyecto\\StudentApp\\StudentApp\\StudentApp.csproj",
+ "projectFilePath": "C:\\Users\\daniv\\source\\repos\\StudentApp\\StudentApp\\StudentApp.csproj",
"expectedPackageFiles": [
- "C:\\Users\\Esteban\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.aspnetcore.authorization\\8.0.12\\microsoft.aspnetcore.authorization.8.0.12.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.aspnetcore.components\\8.0.12\\microsoft.aspnetcore.components.8.0.12.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\8.0.12\\microsoft.aspnetcore.components.analyzers.8.0.12.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.aspnetcore.metadata\\8.0.12\\microsoft.aspnetcore.metadata.8.0.12.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.bcl.cryptography\\8.0.0\\microsoft.bcl.cryptography.8.0.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.data.sqlclient\\6.0.1\\microsoft.data.sqlclient.6.0.1.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\6.0.2\\microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identitymodel.abstractions\\7.5.0\\microsoft.identitymodel.abstractions.7.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.0\\microsoft.identitymodel.jsonwebtokens.7.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.0\\microsoft.identitymodel.logging.7.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identitymodel.protocols\\7.5.0\\microsoft.identitymodel.protocols.7.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\7.5.0\\microsoft.identitymodel.protocols.openidconnect.7.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.0\\microsoft.identitymodel.tokens.7.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.1\\system.configuration.configurationmanager.8.0.1.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.identitymodel.tokens.jwt\\7.5.0\\system.identitymodel.tokens.jwt.7.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.1\\system.security.cryptography.pkcs.8.0.1.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512",
- "C:\\Users\\Esteban\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512"
+ "C:\\Users\\daniv\\.nuget\\packages\\azure.core\\1.38.0\\azure.core.1.38.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\azure.identity\\1.11.4\\azure.identity.1.11.4.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.aspnetcore.authorization\\8.0.12\\microsoft.aspnetcore.authorization.8.0.12.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.aspnetcore.components\\8.0.12\\microsoft.aspnetcore.components.8.0.12.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.aspnetcore.components.analyzers\\8.0.12\\microsoft.aspnetcore.components.analyzers.8.0.12.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.aspnetcore.metadata\\8.0.12\\microsoft.aspnetcore.metadata.8.0.12.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.bcl.cryptography\\8.0.0\\microsoft.bcl.cryptography.8.0.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.data.sqlclient\\6.0.1\\microsoft.data.sqlclient.6.0.1.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\6.0.2\\microsoft.data.sqlclient.sni.runtime.6.0.2.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identity.client\\4.61.3\\microsoft.identity.client.4.61.3.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.61.3\\microsoft.identity.client.extensions.msal.4.61.3.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identitymodel.abstractions\\7.5.0\\microsoft.identitymodel.abstractions.7.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.0\\microsoft.identitymodel.jsonwebtokens.7.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.0\\microsoft.identitymodel.logging.7.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identitymodel.protocols\\7.5.0\\microsoft.identitymodel.protocols.7.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\7.5.0\\microsoft.identitymodel.protocols.openidconnect.7.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.0\\microsoft.identitymodel.tokens.7.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.clientmodel\\1.0.0\\system.clientmodel.1.0.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.1\\system.configuration.configurationmanager.8.0.1.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.1\\system.diagnostics.eventlog.8.0.1.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.identitymodel.tokens.jwt\\7.5.0\\system.identitymodel.tokens.jwt.7.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.security.cryptography.pkcs\\8.0.1\\system.security.cryptography.pkcs.8.0.1.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.security.cryptography.protecteddata\\8.0.0\\system.security.cryptography.protecteddata.8.0.0.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.text.json\\4.7.2\\system.text.json.4.7.2.nupkg.sha512",
+ "C:\\Users\\daniv\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file