-
Notifications
You must be signed in to change notification settings - Fork 527
Add Grand.Mapping references and update project structure #668
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -33,7 +33,10 @@ | |||||||
| <ProjectReference Include="..\..\Core\Grand.Domain\Grand.Domain.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Infrastructure\Grand.Infrastructure.csproj"> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
|
Comment on lines
+36
to
+38
|
||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | |
| <Private>false</Private> | |
| </ProjectReference> |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,62 +1,65 @@ | ||||||||
| <Project Sdk="Microsoft.NET.Sdk.Razor"> | ||||||||
| <Import Project="..\..\Build\Grand.Common.props" /> | ||||||||
| <PropertyGroup> | ||||||||
| <AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||||||||
| <StaticWebAssetsEnabled>false</StaticWebAssetsEnabled> | ||||||||
| </PropertyGroup> | ||||||||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||||||||
| <OutputPath>..\..\Web\Grand.Web\Plugins\Authentication.Google</OutputPath> | ||||||||
| <OutDir>$(OutputPath)</OutDir> | ||||||||
| </PropertyGroup> | ||||||||
| <Import Project="..\..\Build\Grand.Common.props" /> | ||||||||
| <PropertyGroup> | ||||||||
| <AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||||||||
| <StaticWebAssetsEnabled>false</StaticWebAssetsEnabled> | ||||||||
| </PropertyGroup> | ||||||||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||||||||
| <OutputPath>..\..\Web\Grand.Web\Plugins\Authentication.Google</OutputPath> | ||||||||
| <OutDir>$(OutputPath)</OutDir> | ||||||||
| </PropertyGroup> | ||||||||
|
|
||||||||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||||||||
| <OutputPath>..\..\Web\Grand.Web\Plugins\Authentication.Google</OutputPath> | ||||||||
| <OutDir>$(OutputPath)</OutDir> | ||||||||
| </PropertyGroup> | ||||||||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||||||||
| <OutputPath>..\..\Web\Grand.Web\Plugins\Authentication.Google</OutputPath> | ||||||||
| <OutDir>$(OutputPath)</OutDir> | ||||||||
| </PropertyGroup> | ||||||||
|
|
||||||||
| <ItemGroup> | ||||||||
| <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" /> | ||||||||
| </ItemGroup> | ||||||||
| <ItemGroup> | ||||||||
| <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" /> | ||||||||
| </ItemGroup> | ||||||||
|
|
||||||||
| <Target Name="CopyFile" AfterTargets="AfterBuild"> | ||||||||
| <ItemGroup> | ||||||||
| <CopyFiles Include="$(NuGetPackageRoot)\microsoft.aspnetcore.authentication.google\10.0.1\lib\net10.0\*.dll" /> | ||||||||
| </ItemGroup> | ||||||||
| <Copy SourceFiles="@(CopyFiles)" DestinationFolder="..\..\Web\Grand.Web\Plugins\Authentication.Google\" /> | ||||||||
| </Target> | ||||||||
| <Target Name="CopyFile" AfterTargets="AfterBuild"> | ||||||||
| <ItemGroup> | ||||||||
| <CopyFiles Include="$(NuGetPackageRoot)\microsoft.aspnetcore.authentication.google\10.0.1\lib\net10.0\*.dll" /> | ||||||||
| </ItemGroup> | ||||||||
| <Copy SourceFiles="@(CopyFiles)" DestinationFolder="..\..\Web\Grand.Web\Plugins\Authentication.Google\" /> | ||||||||
| </Target> | ||||||||
|
|
||||||||
| <ItemGroup> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Data\Grand.Data.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Domain\Grand.Domain.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Infrastructure\Grand.Infrastructure.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.SharedKernel\Grand.SharedKernel.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Web\Grand.Web.Common\Grand.Web.Common.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| <ExcludeAssets>all</ExcludeAssets> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Business\Grand.Business.Core\Grand.Business.Core.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| </ItemGroup> | ||||||||
| <ItemGroup> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Data\Grand.Data.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
|
Comment on lines
+32
to
+34
|
||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | |
| <Private>false</Private> | |
| </ProjectReference> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,45 +1,48 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
| <Import Project="..\..\Build\Grand.Common.props" /> | ||
| <PropertyGroup> | ||
| <AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||
| <StaticWebAssetsEnabled>false</StaticWebAssetsEnabled> | ||
| </PropertyGroup> | ||
| <Import Project="..\..\Build\Grand.Common.props" /> | ||
| <PropertyGroup> | ||
| <AddRazorSupportForMvc>true</AddRazorSupportForMvc> | ||
| <StaticWebAssetsEnabled>false</StaticWebAssetsEnabled> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| <OutputPath>..\..\Web\Grand.Web\Plugins\DiscountRules.Standard</OutputPath> | ||
| <OutDir>$(OutputPath)</OutDir> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
| <OutputPath>..\..\Web\Grand.Web\Plugins\DiscountRules.Standard</OutputPath> | ||
| <OutDir>$(OutputPath)</OutDir> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
| <OutputPath>..\..\Web\Grand.Web\Plugins\DiscountRules.Standard</OutputPath> | ||
| <OutDir>$(OutputPath)</OutDir> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
| <OutputPath>..\..\Web\Grand.Web\Plugins\DiscountRules.Standard</OutputPath> | ||
| <OutDir>$(OutputPath)</OutDir> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <ProjectReference Include="..\..\Core\Grand.Data\Grand.Data.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Core\Grand.Domain\Grand.Domain.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Core\Grand.Infrastructure\Grand.Infrastructure.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Core\Grand.SharedKernel\Grand.SharedKernel.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Web\Grand.Web.Common\Grand.Web.Common.csproj"> | ||
| <Private>false</Private> | ||
| <ExcludeAssets>all</ExcludeAssets> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Business\Grand.Business.Core\Grand.Business.Core.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <None Update="logo.jpg"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| </None> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <ProjectReference Include="..\..\Core\Grand.Data\Grand.Data.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Core\Grand.Domain\Grand.Domain.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
KrzysztofPajak marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| <ProjectReference Include="..\..\Core\Grand.Infrastructure\Grand.Infrastructure.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Core\Grand.SharedKernel\Grand.SharedKernel.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Web\Grand.Web.Common\Grand.Web.Common.csproj"> | ||
| <Private>false</Private> | ||
| <ExcludeAssets>all</ExcludeAssets> | ||
| </ProjectReference> | ||
| <ProjectReference Include="..\..\Business\Grand.Business.Core\Grand.Business.Core.csproj"> | ||
| <Private>false</Private> | ||
| </ProjectReference> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <None Update="logo.jpg"> | ||
| <CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
| </None> | ||
| </ItemGroup> | ||
|
|
||
| </Project> | ||
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -22,6 +22,9 @@ | |||||||
| <ProjectReference Include="..\..\Core\Grand.Domain\Grand.Domain.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
|
Comment on lines
+25
to
+27
|
||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | |
| <Private>false</Private> | |
| </ProjectReference> |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -37,7 +37,10 @@ | |||||||
| <ProjectReference Include="..\..\Core\Grand.Domain\Grand.Domain.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Infrastructure\Grand.Infrastructure.csproj"> | ||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | ||||||||
| <Private>false</Private> | ||||||||
| </ProjectReference> | ||||||||
|
Comment on lines
+40
to
+42
|
||||||||
| <ProjectReference Include="..\..\Core\Grand.Mapping\Grand.Mapping.csproj"> | |
| <Private>false</Private> | |
| </ProjectReference> |
Uh oh!
There was an error while loading. Please reload this page.