Skip to content

Commit 854bf00

Browse files
authored
Move Auth.Api project into Modules/Auth (#180)
1 parent df050bd commit 854bf00

File tree

7 files changed

+30
-31
lines changed

7 files changed

+30
-31
lines changed

Backend/src/Applications/Core/Core.Api/Core.Api.csproj

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

33
<PropertyGroup>
44
<TargetFramework>net9.0</TargetFramework>
@@ -14,7 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17-
<ProjectReference Include="..\..\..\Auth.Api\Auth.Api.csproj" />
17+
<ProjectReference Include="..\..\..\Modules\Auth\Auth.Api\Auth.Api.csproj" />
1818
<ProjectReference Include="..\..\..\Modules\BugTracking\BugTracking.Api\BugTracking.Api.csproj" />
1919
<ProjectReference Include="..\..\..\Modules\Files\Files.Api\Files.Api.csproj" />
2020
<ProjectReference Include="..\..\..\Modules\Nodes\Nodes.Api\Nodes.Api.csproj" />

Backend/src/Auth.Api/Auth.Api.csproj

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
5+
<TargetFramework>net9.0</TargetFramework>
6+
<OutputType>Library</OutputType>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<ProjectReference Include="..\..\..\BuildingBlocks\BuildingBlocks.Api\BuildingBlocks.Api.csproj" />
11+
<ProjectReference Include="..\Auth.Application\Auth.Application.csproj" />
12+
<ProjectReference Include="..\Auth.Infrastructure\Auth.Infrastructure.csproj" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<None Remove="Properties\launchSettings.json" />
17+
</ItemGroup>
18+
19+
</Project>

Backend/src/Timelines.sln

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Auth.Domain", "Modules\Auth
112112
EndProject
113113
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Auth.Application", "Modules\Auth\Auth.Application\Auth.Application.csproj", "{CA1ACF21-3F20-464C-A607-7FD18D4B9807}"
114114
EndProject
115-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Auth.Api", "Auth.Api\Auth.Api.csproj", "{28F9A95C-2586-4E6B-9073-DCA012AAE90D}"
115+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Auth.Api", "Modules\Auth\Auth.Api\Auth.Api.csproj", "{F7861892-91D4-1951-28C1-053E138162CA}"
116116
EndProject
117117
Global
118118
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -124,10 +124,6 @@ Global
124124
{AF1F5E35-1316-45C4-9297-28FF636DA936}.Debug|Any CPU.Build.0 = Debug|Any CPU
125125
{AF1F5E35-1316-45C4-9297-28FF636DA936}.Release|Any CPU.ActiveCfg = Release|Any CPU
126126
{AF1F5E35-1316-45C4-9297-28FF636DA936}.Release|Any CPU.Build.0 = Release|Any CPU
127-
{93F99C79-AF94-4DAB-924F-355D3BF072F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
128-
{93F99C79-AF94-4DAB-924F-355D3BF072F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
129-
{93F99C79-AF94-4DAB-924F-355D3BF072F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
130-
{93F99C79-AF94-4DAB-924F-355D3BF072F1}.Release|Any CPU.Build.0 = Release|Any CPU
131127
{75DBE5F4-2AC8-40ED-B9FF-EDC0162B8414}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
132128
{75DBE5F4-2AC8-40ED-B9FF-EDC0162B8414}.Debug|Any CPU.Build.0 = Debug|Any CPU
133129
{75DBE5F4-2AC8-40ED-B9FF-EDC0162B8414}.Release|Any CPU.ActiveCfg = Release|Any CPU
@@ -268,10 +264,10 @@ Global
268264
{CA1ACF21-3F20-464C-A607-7FD18D4B9807}.Debug|Any CPU.Build.0 = Debug|Any CPU
269265
{CA1ACF21-3F20-464C-A607-7FD18D4B9807}.Release|Any CPU.ActiveCfg = Release|Any CPU
270266
{CA1ACF21-3F20-464C-A607-7FD18D4B9807}.Release|Any CPU.Build.0 = Release|Any CPU
271-
{28F9A95C-2586-4E6B-9073-DCA012AAE90D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
272-
{28F9A95C-2586-4E6B-9073-DCA012AAE90D}.Debug|Any CPU.Build.0 = Debug|Any CPU
273-
{28F9A95C-2586-4E6B-9073-DCA012AAE90D}.Release|Any CPU.ActiveCfg = Release|Any CPU
274-
{28F9A95C-2586-4E6B-9073-DCA012AAE90D}.Release|Any CPU.Build.0 = Release|Any CPU
267+
{F7861892-91D4-1951-28C1-053E138162CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
268+
{F7861892-91D4-1951-28C1-053E138162CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
269+
{F7861892-91D4-1951-28C1-053E138162CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
270+
{F7861892-91D4-1951-28C1-053E138162CA}.Release|Any CPU.Build.0 = Release|Any CPU
275271
EndGlobalSection
276272
GlobalSection(SolutionProperties) = preSolution
277273
HideSolutionNode = FALSE
@@ -324,6 +320,9 @@ Global
324320
{6BAEC6C2-2392-49AA-9D30-B5D4D803E105} = {8110E4A7-189B-4008-9EEC-113B717519D0}
325321
{5FC0A20C-7FF5-4913-A755-7A7E8B2DB394} = {8110E4A7-189B-4008-9EEC-113B717519D0}
326322
{CA1ACF21-3F20-464C-A607-7FD18D4B9807} = {8110E4A7-189B-4008-9EEC-113B717519D0}
327-
{28F9A95C-2586-4E6B-9073-DCA012AAE90D} = {8110E4A7-189B-4008-9EEC-113B717519D0}
323+
{F7861892-91D4-1951-28C1-053E138162CA} = {8110E4A7-189B-4008-9EEC-113B717519D0}
324+
EndGlobalSection
325+
GlobalSection(ExtensibilityGlobals) = postSolution
326+
SolutionGuid = {B1324053-2F15-4914-83B5-AC84693335E6}
328327
EndGlobalSection
329328
EndGlobal

0 commit comments

Comments
 (0)