Se modifica el backend corrigiendo que no se podian ver los archivos que se subian

develop
unknown 2 years ago
parent e1e0faf238
commit ac52a86262
  1. BIN
      .vs/AOLBackend/DesignTimeBuild/.dtbcache.v2
  2. BIN
      .vs/AOLBackend/v17/.suo
  3. 2
      AOLBackend.csproj
  4. 2
      AOLBackend.csproj.user
  5. 2
      Contracts/Operaciones/IOpViajesRepository.cs
  6. 4
      Controllers/Operaciones/OpViajesController.cs
  7. 4
      Controllers/Utils/MFileManagerController.cs
  8. 4
      Repository/Operaciones/OpViajesRepository.cs
  9. 2
      Services/MFileManager/SvcMFileManager.cs
  10. 6
      appsettings.json
  11. 20
      bin/Debug/net6.0/AOLBackend.deps.json
  12. BIN
      bin/Debug/net6.0/AOLBackend.dll
  13. BIN
      bin/Debug/net6.0/AOLBackend.exe
  14. BIN
      bin/Debug/net6.0/AOLBackend.pdb
  15. 6
      bin/Debug/net6.0/appsettings.json
  16. 6
      obj/AOLBackend.csproj.nuget.dgspec.json
  17. 2
      obj/AOLBackend.csproj.nuget.g.props
  18. 5
      obj/Debug/net6.0/AOLBackend.GeneratedMSBuildEditorConfig.editorconfig
  19. BIN
      obj/Debug/net6.0/AOLBackend.assets.cache
  20. BIN
      obj/Debug/net6.0/AOLBackend.csproj.AssemblyReference.cache
  21. 2
      obj/Debug/net6.0/AOLBackend.csproj.CoreCompileInputs.cache
  22. 91
      obj/Debug/net6.0/AOLBackend.csproj.FileListAbsolute.txt
  23. BIN
      obj/Debug/net6.0/AOLBackend.dll
  24. BIN
      obj/Debug/net6.0/AOLBackend.pdb
  25. BIN
      obj/Debug/net6.0/apphost.exe
  26. BIN
      obj/Debug/net6.0/ref/AOLBackend.dll
  27. BIN
      obj/Debug/net6.0/refint/AOLBackend.dll
  28. 66
      obj/project.assets.json
  29. 16
      obj/project.nuget.cache

Binary file not shown.

@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Dapper" Version="2.0.123" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.8" />
<PackageReference Include="Microsoft.Exchange.WebServices" Version="2.2.0" />
<!-- <PackageReference Include="Microsoft.Exchange.WebServices" Version="2.2.0" /> -->
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="6.22.0" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.22.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />

@ -3,6 +3,6 @@
<PropertyGroup>
<Controller_SelectedScaffolderID>ApiControllerWithActionsScaffolder</Controller_SelectedScaffolderID>
<Controller_SelectedScaffolderCategoryPath>root/Common/Api</Controller_SelectedScaffolderCategoryPath>
<NameOfLastUsedPublishProfile>C:\projects\staging\AOLBackend\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
<NameOfLastUsedPublishProfile>C:\Projects\staging\AOLBackend\Properties\PublishProfiles\FolderProfile.pubxml</NameOfLastUsedPublishProfile>
</PropertyGroup>
</Project>

@ -7,7 +7,7 @@ namespace AOLBackend.Contracts.Operaciones
public Task<DTOOpViajes> Append(DTOOpViajes data);
public Task<IEnumerable<DTOOpViajesServicios>> AppendServicio(DTOOpViajesServicios data);
public Task<IEnumerable<DTOOpViajes>> GetAll();
public Task<IEnumerable<DTOOpViajesServicios>> GetAllServices();
public Task<IEnumerable<DTOOpViajesServicios>> GetAllServices(int Status);
public Task<DTOUltimaCaja> GetLastTrailerBox(int idViaje);
public Task<IEnumerable<DTOOpViajesEstatusSecuencia>> GetStatusSecuence();
public Task<DTOResultTripStatus> ChangeTripStatus(DTOChangeTripStatus data);

@ -43,9 +43,9 @@ namespace AOLBackend.Controllers.Operaciones
[HttpGet]
[Route("GetAllServices")]
public async Task<IEnumerable<DTOOpViajesServicios>> GetAllServices()
public async Task<IEnumerable<DTOOpViajesServicios>> GetAllServices(int Status)
{
var entrada = await _Repo.GetAllServices();
var entrada = await _Repo.GetAllServices(Status);
return entrada;
}

@ -26,7 +26,7 @@ namespace AOLBackend.Controllers.Utils
public async Task<List<FileManager>> GetFilesFromLog(int Tags, int Proceso)
{
FilePaths4Process RelativePath = await _RepoRelativePath.getPaths4ProcessById(Proceso);
SvcMFileManager FM = new SvcMFileManager(_config, _Repo, RootPath + RelativePath.Path);
SvcMFileManager FM = new SvcMFileManager(_config, _Repo, RootPath + RelativePath.Path + "\\");
return await FM.GetFilesFromLog(Tags, Proceso);
}
@ -47,7 +47,7 @@ namespace AOLBackend.Controllers.Utils
{
List<string> data = new List<string>();
FilePaths4Process RelativePath = await _RepoRelativePath.getPaths4ProcessById(Proceso);
SvcMFileManager FM = new SvcMFileManager(_config, _Repo, RootPath + RelativePath.Path);
SvcMFileManager FM = new SvcMFileManager(_config, _Repo, RootPath + RelativePath.Path + "\\");
List<string> filePaths = await FM.SaveFile2DiskList(FileList);
var fileData = await FM.SaveFileLog(filePaths, Tags, Proceso, Usuario);
return fileData;

@ -61,11 +61,11 @@ namespace AOLBackend.Repository.Operaciones
var entrada = await connection.QueryAsync<DTOOpViajes>(query, new { }, commandType: CommandType.StoredProcedure);
return entrada;
}
public async Task<IEnumerable<DTOOpViajesServicios>> GetAllServices()
public async Task<IEnumerable<DTOOpViajesServicios>> GetAllServices(int Status)
{
var query = "[Operaciones.Viajes.Servicios.Get]";
using var connection = _context.CreateConnection();
var entrada = await connection.QueryAsync<DTOOpViajesServicios>(query, new { }, commandType: CommandType.StoredProcedure);
var entrada = await connection.QueryAsync<DTOOpViajesServicios>(query, new { @Status }, commandType: CommandType.StoredProcedure);
return entrada;
}
public async Task<DTOUltimaCaja> GetLastTrailerBox(int idViaje)

@ -51,7 +51,7 @@ namespace AOLBackend.Services.MFileManager
{
string fileMime = recFound.NombreArchivo.Substring(recFound.NombreArchivo.Length - 3).ToLower();
var mime = "application/" + fileMime.ToLower();
string targetFile = rootPath + recFound.NombreArchivo;
string targetFile = rootPath + "\\" + recFound.NombreArchivo;
if (System.IO.File.Exists(targetFile))
{
byte[] pdfBytes = System.IO.File.ReadAllBytes(targetFile);

@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"SqlConnection": "server=localhost\\SQLEXPRESS; database=AOL; User Id=AOLadmin;Password=40La6m1n.22;Encrypt=False;"
"SqlConnection": "server=localhost; database=AOL; User Id=AOLadmin;Password=40La6m1n.22;Encrypt=False;"
},
"DefaultUser": {
"Password": "Bienvenido123!"
@ -23,8 +23,8 @@
"EmailServer": "alphaomega-com-mx.mail.protection.outlook.com",
"EmailPort": "25",
"EmailUser": "noreply",
"EmailDomian":"alphaomega.com.mx",
"EmailAccount":"noreply@alphaomega.com.mx",
"EmailDomian": "alphaomega.com.mx",
"EmailAccount": "noreply@alphaomega.com.mx",
"EmailPassword": "Al%G22a3",
"pathArchivoElectronico": "D:\\data\\ArchivoElectronicoSIR\\www.gemcousa.com\\SIR-GEMCO\\DOCS-SIR\\",
"pathTemp": "D:\\data\\temp\\",

@ -10,7 +10,6 @@
"dependencies": {
"Dapper": "2.0.123",
"Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.8",
"Microsoft.Exchange.WebServices": "2.2.0",
"Microsoft.IdentityModel.JsonWebTokens": "6.22.0",
"Microsoft.IdentityModel.Tokens": "6.22.0",
"Swashbuckle.AspNetCore": "6.2.3",
@ -41,18 +40,6 @@
}
},
"Microsoft.CSharp/4.5.0": {},
"Microsoft.Exchange.WebServices/2.2.0": {
"runtime": {
"lib/40/Microsoft.Exchange.WebServices.Auth.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.913.0"
},
"lib/40/Microsoft.Exchange.WebServices.dll": {
"assemblyVersion": "15.0.0.0",
"fileVersion": "15.0.913.15"
}
}
},
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {},
"Microsoft.IdentityModel.Abstractions/6.22.0": {
"runtime": {
@ -284,13 +271,6 @@
"path": "microsoft.csharp/4.5.0",
"hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
},
"Microsoft.Exchange.WebServices/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NlkaTD0uWtg9VbiWq0VDWMBPzHFknH3tmstrxt0acrT09LBGqATTjRpsGOODz6tUdX7/dehBinxsf75U5Uw/+A==",
"path": "microsoft.exchange.webservices/2.2.0",
"hashPath": "microsoft.exchange.webservices.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
"type": "package",
"serviceable": true,

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1,6 +1,6 @@
{
"ConnectionStrings": {
"SqlConnection": "server=localhost\\SQLEXPRESS; database=AOL; User Id=AOLadmin;Password=40La6m1n.22;Encrypt=False;"
"SqlConnection": "server=localhost; database=AOL; User Id=AOLadmin;Password=40La6m1n.22;Encrypt=False;"
},
"DefaultUser": {
"Password": "Bienvenido123!"
@ -23,8 +23,8 @@
"EmailServer": "alphaomega-com-mx.mail.protection.outlook.com",
"EmailPort": "25",
"EmailUser": "noreply",
"EmailDomian":"alphaomega.com.mx",
"EmailAccount":"noreply@alphaomega.com.mx",
"EmailDomian": "alphaomega.com.mx",
"EmailAccount": "noreply@alphaomega.com.mx",
"EmailPassword": "Al%G22a3",
"pathArchivoElectronico": "D:\\data\\ArchivoElectronicoSIR\\www.gemcousa.com\\SIR-GEMCO\\DOCS-SIR\\",
"pathTemp": "D:\\data\\temp\\",

@ -48,10 +48,6 @@
"target": "Package",
"version": "[6.0.8, )"
},
"Microsoft.Exchange.WebServices": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.IdentityModel.JsonWebTokens": {
"target": "Package",
"version": "[6.22.0, )"
@ -92,7 +88,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
}
}
}

@ -7,7 +7,7 @@
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Alfonso Garcia\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\Alfonso Garcia\.nuget\packages\" />

@ -5,12 +5,13 @@ build_property.UsingMicrosoftNETSdkWeb = true
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = AOLBackend
build_property.RootNamespace = AOLBackend
build_property.ProjectDir = C:\projects\staging\AOLBackend\
build_property.ProjectDir = c:\Projects\staging\AOLBackend\
build_property.RazorLangVersion = 6.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = C:\projects\staging\AOLBackend
build_property.MSBuildProjectDirectory = c:\Projects\staging\AOLBackend
build_property._RazorSourceGeneratorDebug =

@ -1 +1 @@
607920cd754ee200c9aee7bf7a321c529c4f4f99
98dcc38fb2c7ab63ef7a47333e0e07fce2a8e400

@ -40,47 +40,50 @@ C:\projects\staging\AOL\AOLBackend\obj\Debug\net6.0\refint\AOLBackend.dll
C:\projects\staging\AOL\AOLBackend\obj\Debug\net6.0\AOLBackend.pdb
C:\projects\staging\AOL\AOLBackend\obj\Debug\net6.0\AOLBackend.genruntimeconfig.cache
C:\projects\staging\AOL\AOLBackend\obj\Debug\net6.0\ref\AOLBackend.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\appsettings.Development.json
C:\projects\staging\AOLBackend\bin\Debug\net6.0\appsettings.json
C:\projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.exe
C:\projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.deps.json
C:\projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.runtimeconfig.json
C:\projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.pdb
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Dapper.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Abstractions.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.OpenApi.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\System.Data.SqlClient.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.csproj.AssemblyReference.cache
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.GeneratedMSBuildEditorConfig.editorconfig
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.AssemblyInfoInputs.cache
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.AssemblyInfo.cs
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.csproj.CoreCompileInputs.cache
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.MvcApplicationPartsAssemblyInfo.cs
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.MvcApplicationPartsAssemblyInfo.cache
C:\projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets.build.json
C:\projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets.development.json
C:\projects\staging\AOLBackend\obj\Debug\net6.0\scopedcss\bundle\AOLBackend.styles.css
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.csproj.CopyComplete
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.dll
C:\projects\staging\AOLBackend\obj\Debug\net6.0\refint\AOLBackend.dll
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.pdb
C:\projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.genruntimeconfig.cache
C:\projects\staging\AOLBackend\obj\Debug\net6.0\ref\AOLBackend.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.Exchange.WebServices.Auth.dll
C:\projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.Exchange.WebServices.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\appsettings.Development.json
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\appsettings.json
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.exe
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.deps.json
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.runtimeconfig.json
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\AOLBackend.pdb
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Dapper.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Abstractions.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Microsoft.OpenApi.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\System.Data.SqlClient.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll
C:\Projects\staging\AOLBackend\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.csproj.AssemblyReference.cache
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.GeneratedMSBuildEditorConfig.editorconfig
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.AssemblyInfoInputs.cache
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.AssemblyInfo.cs
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.csproj.CoreCompileInputs.cache
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.MvcApplicationPartsAssemblyInfo.cs
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.MvcApplicationPartsAssemblyInfo.cache
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets\msbuild.AOLBackend.Microsoft.AspNetCore.StaticWebAssets.props
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets\msbuild.build.AOLBackend.props
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.AOLBackend.props
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.AOLBackend.props
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets.pack.json
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets.build.json
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\staticwebassets.development.json
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\scopedcss\bundle\AOLBackend.styles.css
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.csproj.CopyComplete
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.dll
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\refint\AOLBackend.dll
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.pdb
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\AOLBackend.genruntimeconfig.cache
C:\Projects\staging\AOLBackend\obj\Debug\net6.0\ref\AOLBackend.dll

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -43,25 +43,6 @@
"lib/netcoreapp2.0/_._": {}
}
},
"Microsoft.Exchange.WebServices/2.2.0": {
"type": "package",
"compile": {
"lib/40/Microsoft.Exchange.WebServices.Auth.dll": {
"related": ".pdb;.xml"
},
"lib/40/Microsoft.Exchange.WebServices.dll": {
"related": ".Auth.pdb;.Auth.xml;.pdb;.xml"
}
},
"runtime": {
"lib/40/Microsoft.Exchange.WebServices.Auth.dll": {
"related": ".pdb;.xml"
},
"lib/40/Microsoft.Exchange.WebServices.dll": {
"related": ".Auth.pdb;.Auth.xml;.pdb;.xml"
}
}
},
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
"type": "package",
"build": {
@ -529,26 +510,6 @@
"version.txt"
]
},
"Microsoft.Exchange.WebServices/2.2.0": {
"sha512": "NlkaTD0uWtg9VbiWq0VDWMBPzHFknH3tmstrxt0acrT09LBGqATTjRpsGOODz6tUdX7/dehBinxsf75U5Uw/+A==",
"type": "package",
"path": "microsoft.exchange.webservices/2.2.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"doc/License Terms.rtf",
"doc/README.htm",
"doc/Redist.txt",
"lib/40/Microsoft.Exchange.WebServices.Auth.dll",
"lib/40/Microsoft.Exchange.WebServices.Auth.pdb",
"lib/40/Microsoft.Exchange.WebServices.Auth.xml",
"lib/40/Microsoft.Exchange.WebServices.dll",
"lib/40/Microsoft.Exchange.WebServices.pdb",
"lib/40/Microsoft.Exchange.WebServices.xml",
"microsoft.exchange.webservices.2.2.0.nupkg.sha512",
"microsoft.exchange.webservices.nuspec"
]
},
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {
"sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
"type": "package",
@ -1198,7 +1159,6 @@
"net6.0": [
"Dapper >= 2.0.123",
"Microsoft.AspNetCore.Authentication.JwtBearer >= 6.0.8",
"Microsoft.Exchange.WebServices >= 2.2.0",
"Microsoft.IdentityModel.JsonWebTokens >= 6.22.0",
"Microsoft.IdentityModel.Tokens >= 6.22.0",
"Swashbuckle.AspNetCore >= 6.2.3",
@ -1212,11 +1172,11 @@
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\projects\\staging\\AOLBackend\\AOLBackend.csproj",
"projectUniqueName": "C:\\Projects\\staging\\AOLBackend\\AOLBackend.csproj",
"projectName": "AOLBackend",
"projectPath": "C:\\projects\\staging\\AOLBackend\\AOLBackend.csproj",
"projectPath": "C:\\Projects\\staging\\AOLBackend\\AOLBackend.csproj",
"packagesPath": "C:\\Users\\Alfonso Garcia\\.nuget\\packages\\",
"outputPath": "C:\\projects\\staging\\AOLBackend\\obj\\",
"outputPath": "C:\\Projects\\staging\\AOLBackend\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\Alfonso Garcia\\AppData\\Roaming\\NuGet\\NuGet.Config",
@ -1253,10 +1213,6 @@
"target": "Package",
"version": "[6.0.8, )"
},
"Microsoft.Exchange.WebServices": {
"target": "Package",
"version": "[2.2.0, )"
},
"Microsoft.IdentityModel.JsonWebTokens": {
"target": "Package",
"version": "[6.22.0, )"
@ -1297,20 +1253,8 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
}
}
},
"logs": [
{
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
"message": "Package 'Microsoft.Exchange.WebServices 2.2.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.",
"libraryId": "Microsoft.Exchange.WebServices",
"targetGraphs": [
"net6.0"
]
}
]
}
}

@ -1,13 +1,12 @@
{
"version": 2,
"dgSpecHash": "QOpGumuvqqb2j6i83+M66PJmXn9LRQm6to6mhFxRlkXzJNRUop3VOaRjHSTAucpl+eqHnctIbfLqjt5KORpmPA==",
"dgSpecHash": "rBIRBlcPbX0fjjiwFZySjBCqrfo4F0ceRPhnq+vPt64/UiER8fOjOU2oEMJ8iR8m6l1m7+CyXrI0IiOW1jV5ZA==",
"success": true,
"projectFilePath": "C:\\projects\\staging\\AOLBackend\\AOLBackend.csproj",
"expectedPackageFiles": [
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\dapper\\2.0.123\\dapper.2.0.123.nupkg.sha512",
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\6.0.8\\microsoft.aspnetcore.authentication.jwtbearer.6.0.8.nupkg.sha512",
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\microsoft.exchange.webservices\\2.2.0\\microsoft.exchange.webservices.2.2.0.nupkg.sha512",
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.22.0\\microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512",
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.22.0\\microsoft.identitymodel.jsonwebtokens.6.22.0.nupkg.sha512",
@ -32,16 +31,5 @@
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
"C:\\Users\\Alfonso Garcia\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512"
],
"logs": [
{
"code": "NU1701",
"level": "Warning",
"warningLevel": 1,
"message": "Package 'Microsoft.Exchange.WebServices 2.2.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.",
"libraryId": "Microsoft.Exchange.WebServices",
"targetGraphs": [
"net6.0"
]
}
]
"logs": []
}
Loading…
Cancel
Save