Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
support committed Sep 16, 2023
1 parent ad13167 commit 1a9e657
Show file tree
Hide file tree
Showing 396 changed files with 68 additions and 2 deletions.
16 changes: 15 additions & 1 deletion GrandNode.sln
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grand.SharedKernel.Tests",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grand.Domain.Tests", "src\Tests\Grand.Domain.Tests\Grand.Domain.Tests.csproj", "{EEEE2033-07A4-42BB-AFEE-3F83E0BD3044}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grand.Infrastructure.Tests", "src\Tests\Grand.Infrastructure.Tests\Grand.Infrastructure.Tests.csproj", "{50049A49-D27E-4200-9875-F6C486FD608D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Grand.Infrastructure.Tests", "src\Tests\Grand.Infrastructure.Tests\Grand.Infrastructure.Tests.csproj", "{50049A49-D27E-4200-9875-F6C486FD608D}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grand.Web.RazorViews", "src\Web\Grand.Web.RazorViews\Grand.Web.RazorViews.csproj", "{18943CB3-6863-494F-B4D3-63321E8A0947}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Grand.Web.Models", "src\Web\Grand.Web.Models\Grand.Web.Models.csproj", "{06BB6DD8-6C3D-4D80-932B-DF70AC50D3A3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -318,6 +322,14 @@ Global
{50049A49-D27E-4200-9875-F6C486FD608D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{50049A49-D27E-4200-9875-F6C486FD608D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{50049A49-D27E-4200-9875-F6C486FD608D}.Release|Any CPU.Build.0 = Release|Any CPU
{18943CB3-6863-494F-B4D3-63321E8A0947}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{18943CB3-6863-494F-B4D3-63321E8A0947}.Debug|Any CPU.Build.0 = Debug|Any CPU
{18943CB3-6863-494F-B4D3-63321E8A0947}.Release|Any CPU.ActiveCfg = Release|Any CPU
{18943CB3-6863-494F-B4D3-63321E8A0947}.Release|Any CPU.Build.0 = Release|Any CPU
{06BB6DD8-6C3D-4D80-932B-DF70AC50D3A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{06BB6DD8-6C3D-4D80-932B-DF70AC50D3A3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{06BB6DD8-6C3D-4D80-932B-DF70AC50D3A3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{06BB6DD8-6C3D-4D80-932B-DF70AC50D3A3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -370,6 +382,8 @@ Global
{1301BA1F-F852-4A2A-8A01-2BE2E3C992E2} = {6360202A-F931-4BBD-ADBD-C9A628EE59F8}
{EEEE2033-07A4-42BB-AFEE-3F83E0BD3044} = {6360202A-F931-4BBD-ADBD-C9A628EE59F8}
{50049A49-D27E-4200-9875-F6C486FD608D} = {6360202A-F931-4BBD-ADBD-C9A628EE59F8}
{18943CB3-6863-494F-B4D3-63321E8A0947} = {38ECA068-176F-463C-A1D7-044341D4CACB}
{06BB6DD8-6C3D-4D80-932B-DF70AC50D3A3} = {38ECA068-176F-463C-A1D7-044341D4CACB}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {88B478F4-FD3B-4C24-9E84-4FAAF0254397}
Expand Down
File renamed without changes.
8 changes: 8 additions & 0 deletions src/Web/Grand.Web.Models/Grand.Web.Models.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Build\Grand.Common.props" />
<ItemGroup>
<ProjectReference Include="..\..\Core\Grand.Infrastructure\Grand.Infrastructure.csproj" />
<ProjectReference Include="..\Grand.Web.Common\Grand.Web.Common.csproj" />
</ItemGroup>

</Project>
File renamed without changes.
10 changes: 10 additions & 0 deletions src/Web/Grand.Web.RazorViews/Constants/PageSeNameConstants.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace Grand.Web.RazorViews.Extensions
{
public static class PageSeNameConstants
{
public static string Shippinginfo => "shippinginfo";
public static string Privacyinfo => "privacyinfo";
public static string Conditionsofuse => "conditionsofuse";
public static string VendorTermsOfService => "VendorTermsOfService";
}
}
15 changes: 15 additions & 0 deletions src/Web/Grand.Web.RazorViews/Grand.Web.RazorViews.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Business\Grand.Business.Core\Grand.Business.Core.csproj" />
<ProjectReference Include="..\..\Core\Grand.Domain\Grand.Domain.csproj" />
<ProjectReference Include="..\Grand.Web.Models\Grand.Web.Models.csproj" />
</ItemGroup>

</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 1a9e657

Please sign in to comment.