Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions DockerComposeFixture.Tests/DockerComposeFixture.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>

<IsPackable>false</IsPackable>

<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.0" />
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Moq" Version="4.20.70" />
<PackageReference Include="xunit.v3" Version="2.0.3" />
</ItemGroup>

<ItemGroup>
Expand Down
7 changes: 3 additions & 4 deletions DockerComposeFixture/DockerComposeFixture.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>1.2.2</Version>
<Version>2.0.0</Version>
<IsTestProject>false</IsTestProject>
<Authors>Joe Shearn</Authors>
<Product>Docker Compose Fixture</Product>
Expand All @@ -14,12 +14,11 @@
<RepositoryUrl>https://github.com/devjoes/DockerComposeFixture</RepositoryUrl>
<PackageTags>docker docker-compose xunit</PackageTags>
<PackageReleaseNotes>Do not throw null reference if fixture is disposed of without being initialized.</PackageReleaseNotes>
<AssemblyVersion>1.2.2.0</AssemblyVersion>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.abstractions" Version="2.0.3" />
<PackageReference Include="xunit.v3.extensibility.core" Version="2.0.3" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions DockerComposeFixture/DockerComposeFixture.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@
<metadata minClientVersion="2.12">
<id>dockercomposefixture</id>
<title>docker-compose Fixture</title>
<version>1.2.2</version>
<version>2.0.0</version>
<authors>Joe Shearn</authors>
<owners>Joe Shearn</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A XUnit fixture that allows you to spin up docker compose files and then run tests against them.</description>
<summary>A XUnit fixture that allows you to spin up docker compose files and then run tests against them.</summary>
<copyright>Copyright 2024</copyright>
<copyright>Copyright 2025</copyright>
<tags>XUnit Docker Compose</tags>
<projectUrl>https://github.com/devjoes/DockerComposeFixture</projectUrl>
<licenseUrl>https://github.com/devjoes/DockerComposeFixture/blob/master/LICENSE</licenseUrl>
<dependencies>
<dependency id="xunit" version="2.4.1" />
<dependency id="xunit.v3.extensibility.core" version="2.0.3" />
</dependencies>
</metadata>
<files>
Expand Down
2 changes: 1 addition & 1 deletion DockerComposeFixture/DockerFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using DockerComposeFixture.Compose;
using DockerComposeFixture.Exceptions;
using DockerComposeFixture.Logging;
using Xunit.Abstractions;
using Xunit.Sdk;

namespace DockerComposeFixture
{
Expand Down
2 changes: 1 addition & 1 deletion DockerComposeFixture/Logging/XUnitLogger.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System;
using Xunit.Abstractions;
using Xunit.Sdk;
using Xunit.v3;

namespace DockerComposeFixture.Logging
{
Expand Down
Loading