diff --git a/Forte.Web.React/Configuration/ReactConfiguration.cs b/Forte.Web.React/Configuration/ReactConfiguration.cs index bc8ac41..50fd912 100644 --- a/Forte.Web.React/Configuration/ReactConfiguration.cs +++ b/Forte.Web.React/Configuration/ReactConfiguration.cs @@ -1,7 +1,7 @@ using System; using System.Collections.Generic; -namespace Forte.React.AspNetCore.Configuration; +namespace Forte.Web.React.Configuration; public class ReactConfiguration { diff --git a/Forte.Web.React/Configuration/ReactJsonSerializerOptions.cs b/Forte.Web.React/Configuration/ReactJsonSerializerOptions.cs index 7972651..96fad29 100644 --- a/Forte.Web.React/Configuration/ReactJsonSerializerOptions.cs +++ b/Forte.Web.React/Configuration/ReactJsonSerializerOptions.cs @@ -1,6 +1,6 @@ using System.Text.Json; -namespace Forte.React.AspNetCore.Configuration; +namespace Forte.Web.React.Configuration; public class ReactJsonSerializerOptions { diff --git a/Forte.Web.React/Forte.Web.React.csproj b/Forte.Web.React/Forte.Web.React.csproj index 543a0fb..8e57b37 100644 --- a/Forte.Web.React/Forte.Web.React.csproj +++ b/Forte.Web.React/Forte.Web.React.csproj @@ -6,7 +6,7 @@ enable latest true - 1.0.1.0 + 1.0.0.0 diff --git a/Forte.Web.React/ForteWebReactExtensions.cs b/Forte.Web.React/ForteWebReactExtensions.cs index a731723..0ef8ce1 100644 --- a/Forte.Web.React/ForteWebReactExtensions.cs +++ b/Forte.Web.React/ForteWebReactExtensions.cs @@ -3,14 +3,14 @@ using System.Collections.Generic; using System.Linq; using System.Text.Json; -using Forte.React.AspNetCore.Configuration; -using Forte.React.AspNetCore.React; +using Forte.Web.React.Configuration; +using Forte.Web.React.React; using Jering.Javascript.NodeJS; using Microsoft.AspNetCore.Builder; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Options; -namespace Forte.React.AspNetCore; +namespace Forte.Web.React; public static class ReactForteExtensions { diff --git a/Forte.Web.React/HtmlHelperExtensions.cs b/Forte.Web.React/HtmlHelperExtensions.cs index 4969094..3883fd4 100644 --- a/Forte.Web.React/HtmlHelperExtensions.cs +++ b/Forte.Web.React/HtmlHelperExtensions.cs @@ -1,4 +1,4 @@ -using Forte.React.AspNetCore.React; +using Forte.Web.React.React; using Microsoft.Extensions.DependencyInjection; #if NET48 @@ -12,7 +12,7 @@ using Microsoft.AspNetCore.Mvc.Rendering; #endif -namespace Forte.React.AspNetCore; +namespace Forte.Web.React; public static class HtmlHelperExtensions { diff --git a/Forte.Web.React/JsonSerializationService.cs b/Forte.Web.React/JsonSerializationService.cs index d3b99c2..ff35fd7 100644 --- a/Forte.Web.React/JsonSerializationService.cs +++ b/Forte.Web.React/JsonSerializationService.cs @@ -4,7 +4,7 @@ using System.Threading.Tasks; using Jering.Javascript.NodeJS; -namespace Forte.React.AspNetCore; +namespace Forte.Web.React; public interface IJsonSerializationService : IJsonService { diff --git a/Forte.Web.React/React/Component.cs b/Forte.Web.React/React/Component.cs index a10e172..16d4a07 100644 --- a/Forte.Web.React/React/Component.cs +++ b/Forte.Web.React/React/Component.cs @@ -1,6 +1,6 @@ using System; -namespace Forte.React.AspNetCore.React; +namespace Forte.Web.React.React; internal class Component : IReactComponent { diff --git a/Forte.Web.React/React/IReactComponent.cs b/Forte.Web.React/React/IReactComponent.cs index 99e6539..c276655 100644 --- a/Forte.Web.React/React/IReactComponent.cs +++ b/Forte.Web.React/React/IReactComponent.cs @@ -1,4 +1,4 @@ -namespace Forte.React.AspNetCore.React; +namespace Forte.Web.React.React; public interface IReactComponent : IReactComponent where TProps : IReactComponentProps { diff --git a/Forte.Web.React/React/IReactComponentProps.cs b/Forte.Web.React/React/IReactComponentProps.cs index 42c762c..35e22a0 100644 --- a/Forte.Web.React/React/IReactComponentProps.cs +++ b/Forte.Web.React/React/IReactComponentProps.cs @@ -1,5 +1,5 @@ -namespace Forte.React.AspNetCore.React; +namespace Forte.Web.React.React; public interface IReactComponentProps { -} \ No newline at end of file +} diff --git a/Forte.Web.React/React/IReactServiceFactory.cs b/Forte.Web.React/React/IReactServiceFactory.cs index ea4ca26..44e3fa6 100644 --- a/Forte.Web.React/React/IReactServiceFactory.cs +++ b/Forte.Web.React/React/IReactServiceFactory.cs @@ -1,6 +1,6 @@ using System; -namespace Forte.React.AspNetCore.React; +namespace Forte.Web.React.React; public interface IReactServiceFactory { diff --git a/Forte.Web.React/React/ReactService.cs b/Forte.Web.React/React/ReactService.cs index f4eeaa9..0506d3c 100644 --- a/Forte.Web.React/React/ReactService.cs +++ b/Forte.Web.React/React/ReactService.cs @@ -4,11 +4,11 @@ using System.Linq; using System.Net.Http; using System.Threading.Tasks; -using Forte.React.AspNetCore.Configuration; +using Forte.Web.React.Configuration; using Jering.Javascript.NodeJS; using Microsoft.Extensions.DependencyInjection; -namespace Forte.React.AspNetCore.React; +namespace Forte.Web.React.React; public interface IReactService { @@ -177,7 +177,7 @@ private static Stream GetStreamFromEmbeddedScript(string scriptName) { var currentAssembly = typeof(ReactService).Assembly; - var manifestResourceName = $"Forte.React.AspNetCore.Scripts.{scriptName}"; + var manifestResourceName = $"Forte.Web.React.Scripts.{scriptName}"; var stream = currentAssembly.GetManifestResourceStream(manifestResourceName) ?? throw new InvalidOperationException($"Could not get manifest resource with name - {manifestResourceName}"); diff --git a/Forte.Web.React/React/RenderingMode.cs b/Forte.Web.React/React/RenderingMode.cs index cb93fdd..18f1e6c 100644 --- a/Forte.Web.React/React/RenderingMode.cs +++ b/Forte.Web.React/React/RenderingMode.cs @@ -1,6 +1,6 @@ using System; -namespace Forte.React.AspNetCore.React; +namespace Forte.Web.React.React; [Flags] public enum RenderingMode diff --git a/Forte.Web.React/React/StaticNodeJsServiceProxy.cs b/Forte.Web.React/React/StaticNodeJsServiceProxy.cs index a3cb1d7..2c0184b 100644 --- a/Forte.Web.React/React/StaticNodeJsServiceProxy.cs +++ b/Forte.Web.React/React/StaticNodeJsServiceProxy.cs @@ -5,7 +5,7 @@ using System.Threading.Tasks; using Jering.Javascript.NodeJS; -namespace Forte.React.AspNetCore.React; +namespace Forte.Web.React.React; public sealed class StaticNodeJsServiceProxy : INodeJSService {