diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index fb24e9c..fc27d0e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,13 +16,13 @@ jobs: - name: Install WASM tools run: dotnet workload install wasm-tools - + - name: Publish - run: dotnet publish DotnetEventViewer --configuration Release -o publish + run: dotnet publish DotnetEventsViewer --configuration Release -o publish - name: Change base href - run: sed -i 's///g' publish/wwwroot/index.html - + run: sed -i 's///g' publish/wwwroot/index.html + - name: Setup GitHub Pages uses: actions/configure-pages@v5 diff --git a/DotnetEventsViewer.sln b/DotnetEventsViewer.sln index a666c0c..1ca777a 100644 --- a/DotnetEventsViewer.sln +++ b/DotnetEventsViewer.sln @@ -5,7 +5,7 @@ VisualStudioVersion = 17.0.31903.59 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EventPipe", "EventPipe\EventPipe.csproj", "{2D12A7D8-1159-46A4-A908-74A7801B1908}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotnetEventViewer", "DotnetEventViewer\DotnetEventViewer.csproj", "{BEB973B8-6DF4-4582-8849-BDF119703EB2}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotnetEventsViewer", "DotnetEventsViewer\DotnetEventsViewer.csproj", "{BEB973B8-6DF4-4582-8849-BDF119703EB2}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EventPipe.Test", "EventPipe.Test\EventPipe.Test.csproj", "{C90A60F8-CE55-464A-B9FE-A073F28D8334}" EndProject diff --git a/DotnetEventsViewer/CallTree/CallTreeNode.cs b/DotnetEventsViewer/CallTree/CallTreeNode.cs index 4cf8acb..b6fd62d 100644 --- a/DotnetEventsViewer/CallTree/CallTreeNode.cs +++ b/DotnetEventsViewer/CallTree/CallTreeNode.cs @@ -1,7 +1,7 @@ -using DotnetEventViewer.CallTree.CountAggregators; +using DotnetEventsViewer.CallTree.CountAggregators; using EventPipe; -namespace DotnetEventViewer.CallTree; +namespace DotnetEventsViewer.CallTree; public class CallTreeNode { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/AllocationSizeAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/AllocationSizeAggregator.cs index 42ea6cb..aca4e71 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/AllocationSizeAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/AllocationSizeAggregator.cs @@ -1,7 +1,7 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; using EventPipe; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal class AllocationSizeAggregator : ICallTreeCountAggregator { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/ContentionDurationAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/ContentionDurationAggregator.cs index 41d1c4d..cb5aa80 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/ContentionDurationAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/ContentionDurationAggregator.cs @@ -1,6 +1,6 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal class ContentionDurationAggregator : SynchronousDurationAggregator { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/EventsCountAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/EventsCountAggregator.cs index c965727..3dd932c 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/EventsCountAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/EventsCountAggregator.cs @@ -1,7 +1,7 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; using EventPipe; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal class EventsCountAggregator : ICallTreeCountAggregator { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/FieldCorrelationDurationAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/FieldCorrelationDurationAggregator.cs index 0cb31fa..00b6779 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/FieldCorrelationDurationAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/FieldCorrelationDurationAggregator.cs @@ -1,7 +1,7 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; using EventPipe; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal abstract class FieldCorrelationDurationAggregator : ICallTreeCountAggregator { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregator.cs index 8497961..f0fe912 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregator.cs @@ -1,6 +1,6 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; /// /// Adds metadata (e.g. events count) to a . diff --git a/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregatorProcessor.cs b/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregatorProcessor.cs index 483fa5b..fe8a28d 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregatorProcessor.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/ICallTreeCountAggregatorProcessor.cs @@ -1,6 +1,6 @@ using EventPipe; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; public interface ICallTreeCountAggregatorProcessor { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/SynchronousDurationAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/SynchronousDurationAggregator.cs index ea57152..fbd524d 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/SynchronousDurationAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/SynchronousDurationAggregator.cs @@ -1,7 +1,7 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; using EventPipe; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal abstract class SynchronousDurationAggregator : ICallTreeCountAggregator { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/TaskDurationAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/TaskDurationAggregator.cs index 37d994a..d124583 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/TaskDurationAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/TaskDurationAggregator.cs @@ -1,6 +1,6 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal class TaskDurationAggregator : FieldCorrelationDurationAggregator { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/TaskWaitDurationAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/TaskWaitDurationAggregator.cs index db33364..49ddb46 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/TaskWaitDurationAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/TaskWaitDurationAggregator.cs @@ -1,6 +1,6 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal class TaskWaitDurationAggregator : FieldCorrelationDurationAggregator { diff --git a/DotnetEventsViewer/CallTree/CountAggregators/WaitHandleWaitDurationAggregator.cs b/DotnetEventsViewer/CallTree/CountAggregators/WaitHandleWaitDurationAggregator.cs index e970956..8259dc2 100644 --- a/DotnetEventsViewer/CallTree/CountAggregators/WaitHandleWaitDurationAggregator.cs +++ b/DotnetEventsViewer/CallTree/CountAggregators/WaitHandleWaitDurationAggregator.cs @@ -1,6 +1,6 @@ -using DotnetEventViewer.Models; +using DotnetEventsViewer.Models; -namespace DotnetEventViewer.CallTree.CountAggregators; +namespace DotnetEventsViewer.CallTree.CountAggregators; internal class WaitHandleWaitDurationAggregator : SynchronousDurationAggregator { diff --git a/DotnetEventsViewer/Components/CallTreeView.razor b/DotnetEventsViewer/Components/CallTreeView.razor index ca24d21..62a5866 100644 --- a/DotnetEventsViewer/Components/CallTreeView.razor +++ b/DotnetEventsViewer/Components/CallTreeView.razor @@ -1,5 +1,5 @@ -@using DotnetEventViewer.CallTree -@using DotnetEventViewer.CallTree.CountAggregators +@using DotnetEventsViewer.CallTree +@using DotnetEventsViewer.CallTree.CountAggregators @using EventPipe @if (_tree != null && Aggregator != null) diff --git a/DotnetEventsViewer/Components/QueryBuilder.razor b/DotnetEventsViewer/Components/QueryBuilder.razor index e8307c0..fd925c2 100644 --- a/DotnetEventsViewer/Components/QueryBuilder.razor +++ b/DotnetEventsViewer/Components/QueryBuilder.razor @@ -1,9 +1,9 @@ @using System.Text.RegularExpressions -@using DotnetEventViewer.CallTree.CountAggregators -@using DotnetEventViewer.Models -@using DotnetEventViewer.Querying -@using DotnetEventViewer.Querying.Operators -@using DotnetEventViewer.State +@using DotnetEventsViewer.CallTree.CountAggregators +@using DotnetEventsViewer.Models +@using DotnetEventsViewer.Querying +@using DotnetEventsViewer.Querying.Operators +@using DotnetEventsViewer.State @using EventPipe @inject StateContainer State diff --git a/DotnetEventsViewer/Components/TraceMetadata.razor b/DotnetEventsViewer/Components/TraceMetadata.razor index 3524f5f..8345d82 100644 --- a/DotnetEventsViewer/Components/TraceMetadata.razor +++ b/DotnetEventsViewer/Components/TraceMetadata.razor @@ -1,4 +1,4 @@ -@using DotnetEventViewer.State +@using DotnetEventsViewer.State @inject StateContainer State diff --git a/DotnetEventsViewer/CustomIcons.cs b/DotnetEventsViewer/CustomIcons.cs index 72f6418..eb30361 100644 --- a/DotnetEventsViewer/CustomIcons.cs +++ b/DotnetEventsViewer/CustomIcons.cs @@ -1,6 +1,6 @@ using Microsoft.FluentUI.AspNetCore.Components; -namespace DotnetEventViewer; +namespace DotnetEventsViewer; internal static class CustomIcons { diff --git a/DotnetEventsViewer/Layout/MainLayout.razor b/DotnetEventsViewer/Layout/MainLayout.razor index e1b0072..e2f50c8 100644 --- a/DotnetEventsViewer/Layout/MainLayout.razor +++ b/DotnetEventsViewer/Layout/MainLayout.razor @@ -1,16 +1,16 @@ -@using DotnetEventViewer.Components +@using DotnetEventsViewer.Components @inherits LayoutComponentBase - .NET Event Viewer + .NET Events Viewer diff --git a/DotnetEventsViewer/Layout/NavMenu.razor b/DotnetEventsViewer/Layout/NavMenu.razor index d9bbd05..16c549e 100644 --- a/DotnetEventsViewer/Layout/NavMenu.razor +++ b/DotnetEventsViewer/Layout/NavMenu.razor @@ -1,5 +1,5 @@