Skip to content

Commit 971acd0

Browse files
committed
Update project refs
1 parent d01a45b commit 971acd0

File tree

4 files changed

+21
-23
lines changed

4 files changed

+21
-23
lines changed

MyApp.ServiceInterface/MyApp.ServiceInterface.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

9+
<ItemGroup>
10+
<ProjectReference Include="..\MyApp.ServiceModel\MyApp.ServiceModel.csproj" />
11+
</ItemGroup>
12+
913
<ItemGroup>
1014
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.*" />
1115
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.*" />
@@ -14,8 +18,4 @@
1418
<PackageReference Include="ServiceStack.Ormlite" Version="8.*" />
1519
</ItemGroup>
1620

17-
<ItemGroup>
18-
<ProjectReference Include="..\MyApp.ServiceModel\MyApp.ServiceModel.csproj" />
19-
</ItemGroup>
20-
21-
</Project>
21+
</Project>
Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net10.0</TargetFramework>
5-
<Nullable>enable</Nullable>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net10.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
</PropertyGroup>
88

9-
<ItemGroup>
10-
<PackageReference Include="ServiceStack.Interfaces" Version="8.*" />
11-
</ItemGroup>
9+
<ItemGroup>
10+
<PackageReference Include="ServiceStack.Interfaces" Version="8.*" />
11+
</ItemGroup>
1212

13-
<ItemGroup>
14-
<Folder Include="Types\" />
15-
</ItemGroup>
16-
17-
</Project>
13+
</Project>

MyApp.Tests/MyApp.Tests.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
<ProjectReference Include="..\MyApp.ServiceInterface\MyApp.ServiceInterface.csproj" />
1313
<ProjectReference Include="..\MyApp.ServiceModel\MyApp.ServiceModel.csproj" />
1414
<ProjectReference Include="..\MyApp\MyApp.csproj" />
15+
</ItemGroup>
1516

17+
<ItemGroup>
1618
<PackageReference Include="NUnit" Version="4.*" />
1719
<PackageReference Include="NUnit3TestAdapter" Version="5.*" />
1820
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.*" />

MyApp/MyApp.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
<Using Include="ServiceStack" />
1919
</ItemGroup>
2020

21+
<ItemGroup>
22+
<ProjectReference Include="..\MyApp.ServiceInterface\MyApp.ServiceInterface.csproj" />
23+
<ProjectReference Include="..\MyApp.ServiceModel\MyApp.ServiceModel.csproj" />
24+
</ItemGroup>
25+
2126
<ItemGroup>
2227
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.*" />
2328
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.*" />
@@ -31,11 +36,6 @@
3136
<PackageReference Include="ServiceStack.Jobs" Version="8.*" />
3237
</ItemGroup>
3338

34-
<ItemGroup>
35-
<ProjectReference Include="..\MyApp.ServiceInterface\MyApp.ServiceInterface.csproj" />
36-
<ProjectReference Include="..\MyApp.ServiceModel\MyApp.ServiceModel.csproj" />
37-
</ItemGroup>
38-
3939
<PropertyGroup>
4040
<DefaultItemExcludes>$(DefaultItemExcludes);App_Data\**;node_modules\**</DefaultItemExcludes>
4141
</PropertyGroup>

0 commit comments

Comments
 (0)