Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions server/Components/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,15 @@
</script>
<base href="/" />
<link href=@Urihelper.Uri rel="canonical" />
<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />
<link rel="stylesheet" href="@Assets["css/bootstrap/bootstrap.min.css"]" />
<ResourcePreloader />
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<link href="css/site.css" rel="stylesheet" />
<script src="./Script/JsInteropHelper.js"></script>
<link href="_content/Syncfusion.Blazor.Themes/bootstrap4.css" rel="stylesheet" />
<script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>
<script src="_content/Syncfusion.Blazor.SfPdfViewer/scripts/syncfusion-blazor-sfpdfviewer.min.js" type="text/javascript"></script>
<script src="_content/Syncfusion.Blazor.WordProcessor/scripts/syncfusion-blazor-documenteditor.min.js" type="text/javascript"></script>
<HeadOutlet @rendermode="@InteractiveServer" />
<link href="@Assets["css/site.css"]" rel="stylesheet" />
<script src="@Assets["./Script/JsInteropHelper.js"]"></script>
<link href="@Assets["_content/Syncfusion.Blazor.Themes/fluent2.css"]" rel="stylesheet" />

<HeadOutlet @rendermode="InteractiveServer" />

</head>
<body>
Expand Down
1 change: 0 additions & 1 deletion server/Controllers/DocumentEditorController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
namespace DocumentExplorer.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class DocumentEditorController : ControllerBase
{
private string basePath;
Expand Down
1 change: 0 additions & 1 deletion server/Controllers/PresentationController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
namespace DocumentExplorer.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class PresentationController : ControllerBase
{
private string basePath;
Expand Down
1 change: 0 additions & 1 deletion server/Controllers/PreviewController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
namespace DocumentExplorer.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class PreviewController : ControllerBase
{
private PhysicalFileProvider operation;
Expand Down
1 change: 0 additions & 1 deletion server/Controllers/ZipViewerController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
namespace DocumentExplorer.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class ZipViewerController : ControllerBase
{
private PhysicalFileProvider operation;
Expand Down Expand Up @@ -72,7 +71,7 @@
response.Error = new ErrorDetails() { Code = "401", Message = "Extract the Zip file to perform this action" };
return this.operation.ToCamelCase(response);
}
return null;

Check warning on line 74 in server/Controllers/ZipViewerController.cs

View workflow job for this annotation

GitHub Actions / build

Possible null reference return.
}
catch (IOException e)
{
Expand Down Expand Up @@ -158,5 +157,5 @@
}
public class ReadArgs : FileManagerDirectoryContent
{
public string ZipPath { get; set; }

Check warning on line 160 in server/Controllers/ZipViewerController.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'ZipPath' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable.
}
Expand Down
24 changes: 12 additions & 12 deletions server/DocumentExplorer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,18 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Syncfusion.Blazor.ImageEditor" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.Navigations" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.Inputs" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.FileManager" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.Buttons" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.Popups" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.WordProcessor" Version="33.1.44" />
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="33.1.44" />
<PackageReference Include="Syncfusion.Licensing" Version="33.1.44" />
<PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="33.1.44" />
<PackageReference Include="Syncfusion.Blazor.ImageEditor" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.Navigations" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.Inputs" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.FileManager" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.Buttons" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.Popups" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.SfPdfViewer" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.Themes" Version="34.1.29" />
<PackageReference Include="Syncfusion.Blazor.WordProcessor" Version="34.1.29" />
<PackageReference Include="Syncfusion.DocIORenderer.Net.Core" Version="34.1.29" />
<PackageReference Include="Syncfusion.Licensing" Version="34.1.29" />
<PackageReference Include="Syncfusion.PresentationRenderer.Net.Core" Version="34.1.29" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="10.0.2" />
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.2" />
<PackageReference Include="SkiaSharp.NativeAssets.Linux" Version="3.119.1" />
Expand Down
Loading