Skip to content

Commit

Permalink
feat(#476): Use $(SolutionDir) for project references
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmeisterAn committed Jun 15, 2022
1 parent 994dcd2 commit fff8c08
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<PackageReference Update="JetBrains.Annotations" Version="2021.3.0" PrivateAssets="all" />
<PackageReference Update="Docker.DotNet" Version="3.125.5" />
<PackageReference Update="Microsoft.Bcl.AsyncInterfaces" Version="1.1.1" />
<PackageReference Update="Microsoft.Extensions.Logging.Abstractions" Version="3.1.23" />
<PackageReference Update="Microsoft.Extensions.Logging.Abstractions" Version="3.1.26" />
<PackageReference Update="SharpZipLib" Version="1.3.3" />
<PackageReference Update="System.Text.Json" Version="4.7.2" />
<!-- Unit and integration test dependencies: -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="xunit" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Testcontainers\Testcontainers.csproj" />
<ProjectReference Include="..\Testcontainers.Tests\Testcontainers.Tests.csproj" />
<ProjectReference Include="$(SolutionDir)src/Testcontainers/Testcontainers.csproj" />
<ProjectReference Include="$(SolutionDir)tests/Testcontainers.Tests/Testcontainers.Tests.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion tests/Testcontainers.Tests/Testcontainers.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<PackageReference Include="System.Data.SqlClient" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Testcontainers\Testcontainers.csproj" />
<ProjectReference Include="$(SolutionDir)src/Testcontainers/Testcontainers.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
Expand Down

0 comments on commit fff8c08

Please sign in to comment.