Skip to content
This repository was archived by the owner on Dec 11, 2020. It is now read-only.

Commit 85b858a

Browse files
Updated to latest test library
1 parent ba7b43d commit 85b858a

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

.build/.build.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Rocket.Surgery.Nuke.DotNetCore" Version="0.5.0" />
14+
<PackageReference Include="Rocket.Surgery.Nuke.DotNetCore" Version="0.5.1" />
1515
<PackageReference Include="Nuke.Common" Version="0.22.0" />
1616
<PackageReference Include="GitVersion.CommandLine.DotNetCore" Version="5.0.1" />
1717
<PackageReference Include="ReportGenerator" Version="4.2.20" />

.build/Build.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
using Nuke.Common;
22
using Nuke.Common.Execution;
33
using Rocket.Surgery.Nuke.DotNetCore;
4+
using Rocket.Surgery.Nuke;
45

56
[CheckBuildProjectConfigurations]
67
[UnsetVisualStudioEnvironmentVariables]
7-
class Program : DotNetCoreBuild
8+
[PackageIcon("https://raw.githubusercontent.com/RocketSurgeonsGuild/graphics/master/png/social-square-thrust-rounded.png")]
9+
class Build : DotNetCoreBuild
810
{
911
/// <summary>
1012
/// Support plugins are available for:
@@ -14,7 +16,7 @@ class Program : DotNetCoreBuild
1416
/// - Microsoft VSCode https://nuke.build/vscode
1517
/// </summary>
1618

17-
public static int Main() => Execute<Program>(x => x.Default);
19+
public static int Main() => Execute<Build>(x => x.Default);
1820

1921
Target Default => _ => _.DependsOn(DotNetCore);
2022
}

Directory.Build.props

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
<Authors>David Driscoll</Authors>
66
<LangVersion>8.0</LangVersion>
77
<Nullable>enable</Nullable>
8-
<PackageIconUrl>https://raw.githubusercontent.com/RocketSurgeonsGuild/graphics/master/png/rsg-patch-circle-color.png</PackageIconUrl>
8+
<PackageIcon>images/packageicon.png</PackageIcon>
99
</PropertyGroup>
10+
<ItemGroup>
11+
<None Include="$(MSBuildThisFileDirectory)/.tmp/packageicon.png" Condition="Exists('$(MSBuildThisFileDirectory)/.tmp/packageicon.png')" Pack="true" PackagePath="/images/"/>
12+
</ItemGroup>
1013
</Project>

Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PackageReference Update="NodaTime.Serialization.JsonNet" Version="2.2.0" />
1818
</ItemGroup>
1919
<ItemGroup>
20-
<PackageReference Update="Rocket.Surgery.Extensions.Testing" Version="1.2.3" />
20+
<PackageReference Update="Rocket.Surgery.Extensions.Testing.FakeItEasy" Version="2.0.0" />
2121
<PackageReference Update="Autofac.Extras.FakeItEasy" Version="5.0.1" />
2222
<PackageReference Update="Bogus" Version="28.2.1" />
2323
<PackageReference Update="coverlet.collector" Version="1.0.1" />

test/Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<ItemGroup>
33
<PackageReference Include="Microsoft.NET.Test.Sdk" />
4-
<PackageReference Include="Rocket.Surgery.Extensions.Testing" />
4+
<PackageReference Include="Rocket.Surgery.Extensions.Testing.FakeItEasy" />
55
<PackageReference Include="Autofac.Extras.FakeItEasy" />
66
<PackageReference Include="Bogus" />
77
<PackageReference Include="coverlet.collector" />

0 commit comments

Comments
 (0)