Skip to content

Commit 8a0e880

Browse files
committed
Added MyCompany prefix to all projects.
1 parent c35da26 commit 8a0e880

File tree

69 files changed

+134
-137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+134
-137
lines changed

Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/MySpaProject.Application.csproj renamed to Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/MyCompany.MySpaProject.Application.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{EDF5D964-4C0F-4F19-B674-58A38A5E5401}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>MySpaProject</RootNamespace>
11-
<AssemblyName>MySpaProject.Application</AssemblyName>
10+
<RootNamespace>MyCompany.MySpaProject</RootNamespace>
11+
<AssemblyName>MyCompany.MySpaProject.Application</AssemblyName>
1212
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
@@ -94,9 +94,9 @@
9494
<None Include="packages.config" />
9595
</ItemGroup>
9696
<ItemGroup>
97-
<ProjectReference Include="..\MySpaProject.Core\MySpaProject.Core.csproj">
97+
<ProjectReference Include="..\MySpaProject.Core\MyCompany.MySpaProject.Core.csproj">
9898
<Project>{17298EA0-AF73-4F30-B6F1-2066100D7D74}</Project>
99-
<Name>MySpaProject.Core</Name>
99+
<Name>MyCompany.MySpaProject.Core</Name>
100100
</ProjectReference>
101101
</ItemGroup>
102102
<ItemGroup />

Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/MySpaProjectAppServiceBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Abp.Application.Services;
22

3-
namespace MySpaProject
3+
namespace MyCompany.MySpaProject
44
{
55
/// <summary>
66
/// Derive your application services from this class.

Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/MySpaProjectApplicationModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Reflection;
22
using Abp.Modules;
33

4-
namespace MySpaProject
4+
namespace MyCompany.MySpaProject
55
{
66
[DependsOn(typeof(MySpaProjectCoreModule))]
77
public class MySpaProjectApplicationModule : AbpModule

Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("MySpaProject.Application")]
8+
[assembly: AssemblyTitle("MyCompany.MySpaProject.Application")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("MySpaProject.Application")]
12+
[assembly: AssemblyProduct("MyCompany.MySpaProject.Application")]
1313
[assembly: AssemblyCopyright("Copyright © 2014")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]

Templates/All-In-One-Template/MySpaProject/MySpaProject.Core/MySpaProject.Core.csproj renamed to Templates/All-In-One-Template/MySpaProject/MySpaProject.Core/MyCompany.MySpaProject.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<ProjectGuid>{17298EA0-AF73-4F30-B6F1-2066100D7D74}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>MySpaProject</RootNamespace>
11-
<AssemblyName>MySpaProject.Core</AssemblyName>
10+
<RootNamespace>MyCompany.MySpaProject</RootNamespace>
11+
<AssemblyName>MyCompany.MySpaProject.Core</AssemblyName>
1212
<TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>

Templates/All-In-One-Template/MySpaProject/MySpaProject.Core/MySpaProjectConsts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace MySpaProject
1+
namespace MyCompany.MySpaProject
22
{
33
public class MySpaProjectConsts
44
{

Templates/All-In-One-Template/MySpaProject/MySpaProject.Core/MySpaProjectCoreModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Reflection;
22
using Abp.Modules;
33

4-
namespace MySpaProject
4+
namespace MyCompany.MySpaProject
55
{
66
public class MySpaProjectCoreModule : AbpModule
77
{

Templates/All-In-One-Template/MySpaProject/MySpaProject.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("MySpaProject.Core")]
8+
[assembly: AssemblyTitle("MyCompany.MySpaProject.Core")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("MySpaProject.Core")]
12+
[assembly: AssemblyProduct("MyCompany.MySpaProject.Core")]
1313
[assembly: AssemblyCopyright("Copyright © 2014")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]

Templates/All-In-One-Template/MySpaProject/MySpaProject.EntityFramework/EntityFramework/MySpaProjectDbContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Abp.EntityFramework;
22

3-
namespace MySpaProject.EntityFramework
3+
namespace MyCompany.MySpaProject.EntityFramework
44
{
55
public class MySpaProjectDbContext : AbpDbContext
66
{

Templates/All-In-One-Template/MySpaProject/MySpaProject.EntityFramework/EntityFramework/Repositories/MySpaProjectRepositoryBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using Abp.EntityFramework;
33
using Abp.EntityFramework.Repositories;
44

5-
namespace MySpaProject.EntityFramework.Repositories
5+
namespace MyCompany.MySpaProject.EntityFramework.Repositories
66
{
77
public abstract class MySpaProjectRepositoryBase<TEntity, TPrimaryKey> : EfRepositoryBase<MySpaProjectDbContext, TEntity, TPrimaryKey>
88
where TEntity : class, IEntity<TPrimaryKey>

0 commit comments

Comments
 (0)