Skip to content

Commit f37e570

Browse files
committed
Fix Sample project references
1 parent bdbc81f commit f37e570

File tree

7 files changed

+26
-19
lines changed

7 files changed

+26
-19
lines changed

Samples/BlogApp/Project.Application/Project.Application.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10+
<ProjectReference Include="..\..\..\src\KSFramework\KSFramework.csproj" />
11+
<ProjectReference Include="..\Project.Common\Project.Common.csproj" />
1012
<ProjectReference Include="..\Project.Domain\Project.Domain.csproj" />
1113
</ItemGroup>
1214

Samples/BlogApp/Project.Common/Project.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<ProjectReference Include="..\..\..\KSFramework\src\KSFramework\KSFramework.csproj" />
10+
<ProjectReference Include="..\..\..\src\KSFramework\KSFramework.csproj" />
1111
</ItemGroup>
1212

1313
</Project>

Samples/BlogApp/Project.Domain/Project.Domain.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<ProjectReference Include="..\Project.Common\Project.Common.csproj" />
10+
<Folder Include="Contracts\" />
1111
</ItemGroup>
1212

1313
<ItemGroup>
14-
<Folder Include="Contracts\" />
14+
<ProjectReference Include="..\..\..\src\KSFramework\KSFramework.csproj" />
15+
<ProjectReference Include="..\Project.Common\Project.Common.csproj" />
1516
</ItemGroup>
1617

1718
</Project>

Samples/BlogApp/Project.Infrastructure/Project.Infrastructure.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10+
<ProjectReference Include="..\..\..\src\KSFramework\KSFramework.csproj" />
1011
<ProjectReference Include="..\Project.Common\Project.Common.csproj" />
1112
<ProjectReference Include="..\Project.Domain\Project.Domain.csproj" />
1213
</ItemGroup>

Samples/BlogApp/Project.Presentation/Project.Presentation.csproj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<ProjectReference Include="..\Project.Application\Project.Application.csproj" />
11-
<ProjectReference Include="..\Project.Common\Project.Common.csproj" />
10+
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
1211
</ItemGroup>
1312

1413
<ItemGroup>
15-
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
14+
<ProjectReference Include="..\..\..\src\KSFramework\KSFramework.csproj" />
15+
<ProjectReference Include="..\Project.Application\Project.Application.csproj" />
16+
<ProjectReference Include="..\Project.Common\Project.Common.csproj" />
1617
</ItemGroup>
1718

1819
</Project>

Samples/BlogApp/Project.WebApi/Project.WebApi.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18+
<ProjectReference Include="..\..\..\src\KSFramework\KSFramework.csproj" />
1819
<ProjectReference Include="..\Project.Application\Project.Application.csproj" />
1920
<ProjectReference Include="..\Project.ClientApp\Project.ClientApp.csproj" />
2021
<ProjectReference Include="..\Project.Common\Project.Common.csproj" />
22+
<ProjectReference Include="..\Project.Domain\Project.Domain.csproj" />
2123
<ProjectReference Include="..\Project.Infrastructure\Project.Infrastructure.csproj" />
2224
<ProjectReference Include="..\Project.Presentation\Project.Presentation.csproj" />
2325
</ItemGroup>

Samples/BlogApp/Project.sln

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Project.WebApi", "Project.W
1717
EndProject
1818
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Project.ClientApp", "Project.ClientApp\Project.ClientApp.csproj", "{AF0603B8-AE60-4D12-AC4A-195C5C0B912E}"
1919
EndProject
20-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KSFramework", "..\..\KSFramework\src\KSFramework\KSFramework.csproj", "{4F07B875-BB04-4837-9DB4-0761EF3EF600}"
20+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KSFramework", "..\..\src\KSFramework\KSFramework.csproj", "{0775CED6-4C0B-49C8-877A-8E94F61CBC55}"
2121
EndProject
2222
Global
2323
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -113,18 +113,18 @@ Global
113113
{AF0603B8-AE60-4D12-AC4A-195C5C0B912E}.Release|x64.Build.0 = Release|Any CPU
114114
{AF0603B8-AE60-4D12-AC4A-195C5C0B912E}.Release|x86.ActiveCfg = Release|Any CPU
115115
{AF0603B8-AE60-4D12-AC4A-195C5C0B912E}.Release|x86.Build.0 = Release|Any CPU
116-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
117-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Debug|Any CPU.Build.0 = Debug|Any CPU
118-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Debug|x64.ActiveCfg = Debug|Any CPU
119-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Debug|x64.Build.0 = Debug|Any CPU
120-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Debug|x86.ActiveCfg = Debug|Any CPU
121-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Debug|x86.Build.0 = Debug|Any CPU
122-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Release|Any CPU.ActiveCfg = Release|Any CPU
123-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Release|Any CPU.Build.0 = Release|Any CPU
124-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Release|x64.ActiveCfg = Release|Any CPU
125-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Release|x64.Build.0 = Release|Any CPU
126-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Release|x86.ActiveCfg = Release|Any CPU
127-
{4F07B875-BB04-4837-9DB4-0761EF3EF600}.Release|x86.Build.0 = Release|Any CPU
116+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
117+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Debug|Any CPU.Build.0 = Debug|Any CPU
118+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Debug|x64.ActiveCfg = Debug|Any CPU
119+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Debug|x64.Build.0 = Debug|Any CPU
120+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Debug|x86.ActiveCfg = Debug|Any CPU
121+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Debug|x86.Build.0 = Debug|Any CPU
122+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Release|Any CPU.ActiveCfg = Release|Any CPU
123+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Release|Any CPU.Build.0 = Release|Any CPU
124+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Release|x64.ActiveCfg = Release|Any CPU
125+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Release|x64.Build.0 = Release|Any CPU
126+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Release|x86.ActiveCfg = Release|Any CPU
127+
{0775CED6-4C0B-49C8-877A-8E94F61CBC55}.Release|x86.Build.0 = Release|Any CPU
128128
EndGlobalSection
129129
GlobalSection(SolutionProperties) = preSolution
130130
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)