Skip to content

Commit

Permalink
[rename] project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
samatstariongroup committed Oct 20, 2024
1 parent 9a7df81 commit 92fce3c
Show file tree
Hide file tree
Showing 37 changed files with 432 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CodeQuality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
dotnet-version: '8.0.x'

- name: Restore dependencies
run: dotnet restore EcoreNetto.Website.sln
run: dotnet restore

- name: Sonarqube Begin
env:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\EcoreNettoWebsite\EcoreNettoWebsite.csproj" />
<ProjectReference Include="..\EcoreNetto.Website\EcoreNetto.Website.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace EcoreNettoWebsite.Tests.Services
namespace EcoreNetto.Website.Tests.Services
{
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;

using EcoreNettoWebsite.Services;
using EcoreNetto.Website.Services;

using Microsoft.AspNetCore.Http;

Expand Down
4 changes: 2 additions & 2 deletions EcoreNettoWebSite.sln → EcoreNetto.Website.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35219.272
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EcoreNettoWebsite", "EcoreNettoWebsite\EcoreNettoWebsite.csproj", "{4FE21DC8-00D0-49C2-9D44-421520705BAA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EcoreNetto.Website", "EcoreNetto.Website\EcoreNetto.Website.csproj", "{4FE21DC8-00D0-49C2-9D44-421520705BAA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EcoreNettoWebsite.Tests", "EcoreNettoWebsite.Tests\EcoreNettoWebsite.Tests.csproj", "{FDA14123-C0F8-4219-B415-3262624F4AE9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EcoreNetto.Website.Tests", "EcoreNetto.Website.Tests\EcoreNetto.Website.Tests.csproj", "{FDA14123-C0F8-4219-B415-3262624F4AE9}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@inject IHtmlReportGenerator HtmlReportGenerator;

@using ECoreNetto.Reporting.Generators;
@using EcoreNettoWebsite.Services
@using EcoreNetto.Website.Services

@rendermode InteractiveServer

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@inject IMarkdownReportGenerator MarkdownReportGenerator

@using ECoreNetto.Reporting.Generators;
@using EcoreNettoWebsite.Services
@using EcoreNetto.Website.Services

@if (string.IsNullOrEmpty(ModelId))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
@inject IFileTrackingService fileTrackingService;

@using System.Text.Json
@using EcoreNettoWebsite.Model
@using EcoreNettoWebsite.Services
@using EcoreNetto.Website.Model
@using EcoreNetto.Website.Services

@rendermode InteractiveServer

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using EcoreNettoWebsite
@using EcoreNettoWebsite.Components
@using EcoreNetto.Website
@using EcoreNetto.Website.Components
@using Radzen
@using Radzen.Blazor
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace EcoreNettoWebsite.Extensions
namespace EcoreNetto.Website.Extensions
{
using System;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

using DocumentFormat.OpenXml.Office.CoverPageProps;

namespace EcoreNettoWebsite.Model
namespace EcoreNetto.Website.Model
{
/// <summary>
/// Represents the DTO to capture information regarding an uploaded file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace EcoreNettoWebsite.Modules
namespace EcoreNetto.Website.Modules
{
using System.Text.Json;

using Carter;

using EcoreNettoWebsite.Services;
using EcoreNetto.Website.Services;

using Microsoft.Extensions.Logging;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@

using Carter;
using ECoreNetto.Reporting.Generators;
using EcoreNettoWebsite.Components;
using EcoreNettoWebsite.Services;
using EcoreNetto.Website.Components;
using EcoreNetto.Website.Services;
using Radzen;
using Serilog;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace EcoreNettoWebsite.Services
namespace EcoreNetto.Website.Services
{
using EcoreNettoWebsite.Extensions;
using EcoreNettoWebsite.Model;
using EcoreNetto.Website.Extensions;
using EcoreNetto.Website.Model;

using Microsoft.Extensions.Caching.Memory;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace EcoreNettoWebsite.Services
namespace EcoreNetto.Website.Services
{
using EcoreNettoWebsite.Model;
using EcoreNetto.Website.Model;

/// <summary>
/// The purpose of the <see cref="IFileTrackingService"/> is to store files on disk, keep track of them and delete
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace EcoreNettoWebsite.Services
namespace EcoreNetto.Website.Services
{
/// <summary>
/// The purpose of the <see cref="ISelectedFileService"/> is to keep track
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace EcoreNettoWebsite.Services
namespace EcoreNetto.Website.Services
{
/// <summary>
/// The purpose of the <see cref="SelectedFileService"/> is to keep track
Expand Down
File renamed without changes.
Loading

0 comments on commit 92fce3c

Please sign in to comment.