Skip to content

Commit

Permalink
Merge pull request #44 from TestCentric/issue-43
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
CharliePoole authored Feb 26, 2024
2 parents 1d28c1c + a2023b2 commit 2d49a14
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 29 deletions.
22 changes: 3 additions & 19 deletions build.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Load the recipe
#load nuget:?package=TestCentric.Cake.Recipe&version=1.1.0-dev00082
#load nuget:?package=TestCentric.Cake.Recipe&version=1.1.1
// Comment out above line and uncomment below for local tests of recipe changes
//#load ../TestCentric.Cake.Recipe/recipe/*.cake

Expand Down Expand Up @@ -120,7 +120,7 @@ BuildSettings.Packages.Add(new NuGetPackage(
HasDirectory("lib/netcoreapp3.1").WithFiles("TestCentric.Agent.Core.dll"),
HasDirectory("lib/net6.0").WithFiles("TestCentric.Agent.Core.dll"),
HasDirectory("lib/net8.0").WithFiles("TestCentric.Agent.Core.dll"),
HasDependency(PackageReference.InternalTrace)
HasDependency("TestCentric.InternalTrace", "1.2.0")
.WithFiles("lib/net20/TestCentric.InternalTrace.dll",
"lib/net462/TestCentric.InternalTrace.dll",
"lib/netstandard2.0/TestCentric.InternalTrace.dll"),
Expand Down Expand Up @@ -174,24 +174,8 @@ public class DirectTestAgentRunner : TestRunner
}
}

//////////////////////////////////////////////////////////////////////
// TASK TARGETS
//////////////////////////////////////////////////////////////////////

Task("Appveyor")
.IsDependentOn("DumpSettings")
.IsDependentOn("Build")
.IsDependentOn("Test")
.IsDependentOn("Package")
.IsDependentOn("Publish")
.IsDependentOn("CreateDraftRelease")
.IsDependentOn("CreateProductionRelease");

Task("Default")
.IsDependentOn("Build");

//////////////////////////////////////////////////////////////////////
// EXECUTION
//////////////////////////////////////////////////////////////////////

RunTarget(CommandLineOptions.Target.Value);
Build.Run();
2 changes: 1 addition & 1 deletion nuget/TestCentric.Agent.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<tags>testcentric</tags>
<repository type="Git" url="https://github.com/TestCentric/TestCentric.Cake.Recipe" />
<dependencies>
<dependency id="TestCentric.InternalTrace" version="1.0.0" />
<dependency id="TestCentric.InternalTrace" version="1.2.0" />
</dependencies>
</metadata>

Expand Down
6 changes: 3 additions & 3 deletions src/DirectTestAgent/DirectTestAgent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00005" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0-dev00018" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.0-dev00013" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-beta5" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netcoreapp3.1'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
<ItemGroup>
<PackageReference Include="NUnit" Version="3.13.3" />
<PackageReference Include="NUnitLite" Version="3.13.3" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00005" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0-dev00018" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-beta5" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/TestCentric.Agent.Core/TestCentric.Agent.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-dev00005" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0-dev00018" />
<PackageReference Include="TestCentric.Metadata" Version="3.0.2-dev00002" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.0-dev00013" />
<PackageReference Include="TestCentric.Engine.Api" Version="2.0.0-beta5" />
<PackageReference Include="TestCentric.Extensibility" Version="3.0.0" />
<PackageReference Include="TestCentric.Metadata" Version="3.0.2" />
<PackageReference Include="TestCentric.InternalTrace" Version="1.2.0" />
</ItemGroup>

</Project>

0 comments on commit 2d49a14

Please sign in to comment.