Skip to content

Commit 9441893

Browse files
committed
Make paths consistent
1 parent d45b197 commit 9441893

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

benchmarks/Benchmarks.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
<PackageReference Include="xunit" Version="$(xUnitVersion)" />
1111
</ItemGroup>
1212
<ItemGroup>
13-
<ProjectReference Include="..\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
13+
<ProjectReference Include="../src/JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
1414
</ItemGroup>
1515
</Project>

src/Examples/OperationsExample/OperationsExample.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<ProjectReference Include="../../JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
11-
<ProjectReference Include="..\JsonApiDotNetCoreExample\JsonApiDotNetCoreExample.csproj" />
11+
<ProjectReference Include="../JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
1212
</ItemGroup>
1313

1414
<ItemGroup>

test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<ItemGroup>
1414
<ProjectReference Include="../../src/Examples/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
1515
<ProjectReference Include="../../src/Examples/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj" />
16-
<ProjectReference Include="..\UnitTests\UnitTests.csproj" />
16+
<ProjectReference Include="../UnitTests/UnitTests.csproj" />
1717
</ItemGroup>
1818

1919
<ItemGroup>

test/NoEntityFrameworkTests/NoEntityFrameworkTests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<ProjectReference Include="../../src/Examples/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
1818
<ProjectReference Include="../../test/JsonApiDotNetCoreExampleTests/JsonApiDotNetCoreExampleTests.csproj" />
1919
<ProjectReference Include="../../src/Examples/NoEntityFrameworkExample/NoEntityFrameworkExample.csproj" />
20-
<ProjectReference Include="..\UnitTests\UnitTests.csproj" />
20+
<ProjectReference Include="../UnitTests/UnitTests.csproj" />
2121
</ItemGroup>
2222
<ItemGroup>
2323
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />

test/OperationsExampleTests/OperationsExampleTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
1414
</ItemGroup>
1515
<ItemGroup>
16-
<ProjectReference Include="..\..\src\Examples\OperationsExample\OperationsExample.csproj" />
17-
<ProjectReference Include="..\UnitTests\UnitTests.csproj" />
16+
<ProjectReference Include="../../src/Examples/OperationsExample/OperationsExample.csproj" />
17+
<ProjectReference Include="../UnitTests/UnitTests.csproj" />
1818
</ItemGroup>
1919
<ItemGroup>
2020
<None Update="xunit.runner.json;appsettings.json">

test/UnitTests/UnitTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66
<ItemGroup>
7-
<ProjectReference Include="..\..\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
8-
<ProjectReference Include="..\..\src\Examples\JsonApiDotNetCoreExample\JsonApiDotNetCoreExample.csproj" />
7+
<ProjectReference Include="../../src/JsonApiDotNetCore/JsonApiDotNetCore.csproj" />
8+
<ProjectReference Include="../../src/Examples/JsonApiDotNetCoreExample/JsonApiDotNetCoreExample.csproj" />
99
</ItemGroup>
1010
<ItemGroup>
1111
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />

0 commit comments

Comments
 (0)