Skip to content

Commit c494890

Browse files
committed
Renaming Gd
1 parent 53e4041 commit c494890

30 files changed

+2126
-2099
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

Src/GlobalData.Base.Tests/GlobalData.Base.Tests.csproj renamed to Src/Azihub.GlobalData.Base.Tests/Azihub.GlobalData.Base.Tests.csproj

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,12 @@
3030
</ItemGroup>
3131

3232
<ItemGroup>
33-
<ProjectReference Include="..\AppUtilities\AppUtilities.csproj" />
34-
<ProjectReference Include="..\GlobalData.Base\GlobalData.Base.csproj" />
35-
<ProjectReference Include="..\GlobalData\GlobalData.Base.csproj" />
33+
<ProjectReference Include="..\Azihub.GlobalData.Banks\Azihub.GlobalData.Banks.csproj" />
34+
<ProjectReference Include="..\Azihub.GlobalData.Base\Azihub.GlobalData.Base.csproj" />
3635
</ItemGroup>
3736

3837
<ItemGroup>
39-
<Reference Include="Microsoft.Extensions.Configuration, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60">
40-
<HintPath>C:\Program Files\dotnet\packs\Microsoft.AspNetCore.App.Ref\5.0.0\ref\net5.0\Microsoft.Extensions.Configuration.dll</HintPath>
41-
</Reference>
38+
<Reference Include="Microsoft.Extensions.Configuration, Version=5.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" />
4239
</ItemGroup>
4340

4441
</Project>
File renamed without changes.
File renamed without changes.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using Azihub.GlobalData.Base.Country;
2+
using Azihub.GlobalData.Base.Country.Interfaces;
3+
4+
namespace Azihub.GlobalData.Base.Address
5+
{
6+
public abstract class Address<TCountryCode> where TCountryCode : CountryIso2Code
7+
{
8+
public string AddressLine1 { get; set; }
9+
public string AddressLine2 { get; set; }
10+
public string City { get; set; }
11+
public string State { get; set; }
12+
public string Postcode { get; set; }
13+
public CountryIso2Code CountryIso2Code { get; set; }
14+
}
15+
}

Src/GlobalData.Base/Authority/IAuthority.cs renamed to Src/Azihub.GlobalData.Base/Authority/IAuthority.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace GlobalData.Base.Authority
1+
namespace Azihub.GlobalData.Base.Authority
22
{
33
public interface IAuthorityCode
44
{

Src/GlobalData.Base/GlobalData.Base.csproj renamed to Src/Azihub.GlobalData.Base/Azihub.GlobalData.Base.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net5.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
</PropertyGroup>
6-
6+
77
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
88
<DocumentationFile></DocumentationFile>
99
<WarningsAsErrors>;NU1605;NU1574</WarningsAsErrors>
1010
</PropertyGroup>
1111

12-
<ItemGroup>
13-
<PackageReference Include="CsvHelper" Version="26.0.1" />
14-
</ItemGroup>
15-
1612
<ItemGroup>
1713
<Folder Include="Country\NewFolder\" />
1814
<Folder Include="Address\" />

0 commit comments

Comments
 (0)