Skip to content

Commit

Permalink
Updated build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
david-driscoll committed Nov 3, 2019
1 parent 0d18f79 commit 4c38294
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .build/.build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFramework>netcoreapp3.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<RootNamespace></RootNamespace>
<IsPackable>False</IsPackable>
Expand All @@ -11,10 +11,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Rocket.Surgery.Nuke.DotNetCore" Version="0.7.0" />
<PackageReference Include="Nuke.Common" Version="0.22.2" />
<PackageReference Include="GitVersion.CommandLine.DotNetCore" Version="5.0.1" />
<PackageReference Include="ReportGenerator" Version="4.3.3" />
<PackageReference Include="Rocket.Surgery.Nuke.DotNetCore" Version="0.7.1" />
<PackageReference Include="Nuke.Common" Version="0.23.3" />
<PackageDownload Include="GitVersion.Tool" Version="[5.1.1]" />
<PackageReference Include="ReportGenerator" Version="4.3.5" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion .build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@
using Nuke.Common.Execution;
using Rocket.Surgery.Nuke.DotNetCore;
using Rocket.Surgery.Nuke;
using JetBrains.Annotations;

[CheckBuildProjectConfigurations]
[UnsetVisualStudioEnvironmentVariables]
[PackageIcon("https://raw.githubusercontent.com/RocketSurgeonsGuild/graphics/master/png/social-square-thrust-rounded.png")]
[PublicAPI]
class Solution : DotNetCoreBuild, IDotNetCoreBuild
{
/// <summary>
Expand Down Expand Up @@ -33,4 +35,3 @@ class Solution : DotNetCoreBuild, IDotNetCoreBuild

public new Target Pack => _ => _.With(DotNetCoreBuild.Pack, this);
}

4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)/.tmp/packageicon.png" Condition="Exists('$(MSBuildThisFileDirectory)/.tmp/packageicon.png')" Pack="true" PackagePath="/images/" />
<None Include="$(MSBuildThisFileDirectory)/LICENSE" Pack="true" PackagePath="/" />
<None Include="$(MSBuildThisFileDirectory)/.tmp/packageicon.png" Condition="Exists('$(MSBuildThisFileDirectory)/.tmp/packageicon.png')" Pack="true" PackagePath="/images/" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)/LICENSE" Pack="true" PackagePath="/" Visible="false" />
</ItemGroup>
</Project>

0 comments on commit 4c38294

Please sign in to comment.