Skip to content
Open
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
2 changes: 2 additions & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="NuGet.org v3" value="https://api.nuget.org/v3/index.json" />
<add key="feedz.io" value="https://f.feedz.io/octopus-deploy/dependencies/nuget/index.json" />
</packageSources>
Expand All @@ -22,6 +23,7 @@
<!-- Octopus.Versioning and Octopus.TinyTypes are a bit of a mess - some versions (used by other deps) are in feedz, some are in nuget. Messy. -->
<package pattern="Octopus.Versioning" />
<package pattern="Octopus.TinyTypes" />
<package pattern="Octopus.Nuke.*" />
</packageSource>
<packageSource key="NuGet.org v3">
<package pattern="NuGet.Common" />
Expand Down
2 changes: 1 addition & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ partial class Build : NukeBuild
{
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")] readonly Configuration Configuration = IsLocalBuild ? Configuration.Debug : Configuration.Release;

[Required] readonly Solution Solution = SolutionModelTasks.ParseSolution(KnownPaths.SourceDirectory / "Calamari.sln");
[Solution] readonly Solution Solution = null!;

[Parameter] readonly DotNetVerbosity BuildVerbosity = DotNetVerbosity.minimal;

Expand Down
1 change: 1 addition & 0 deletions build/GlobalUsings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
global using System.Threading.Tasks;
global using Nuke.Common;
global using Nuke.Common.IO;
global using Nuke.Common.ProjectModel;
global using Nuke.Common.Tools.DotNet;
global using Nuke.Common.CI.TeamCity;
global using Serilog;
Expand Down
18 changes: 0 additions & 18 deletions build/NuGet.Config

This file was deleted.

3 changes: 2 additions & 1 deletion build/_build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
<RootNamespace>Calamari.Build</RootNamespace>
<NoWarn>CS0649;CS0169</NoWarn>
<DisableMSBuildAssemblyCopyCheck>true</DisableMSBuildAssemblyCopyCheck>
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
<NukeTelemetryVersion>1</NukeTelemetryVersion>
Expand All @@ -28,7 +29,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Nuke.Common" Version="9.0.4" />
<PackageReference Include="Octopus.Nuke.Common" Version="10.1.14" />
<PackageReference Include="Octopus.1Password.Sdk" Version="0.0.127" />
<PackageReference Include="AzureSignTool" Version="6.0.1" ExcludeAssets="all" />
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion credits/credits.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Calamari is made possible thanks to the following great third-party products.
| NuGet.Commands | Microsoft | [https://aka.ms/nugetprj](https://aka.ms/nugetprj) | [Apache-2.0](https://www.nuget.org/packages/NuGet.Commands/5.11.5/license) |
| NuGet.Core | Outercurve Foundation | [https://github.com/NuGet/NuGet2](https://github.com/NuGet/NuGet2) | [Apache-2.0](https://raw.githubusercontent.com/NuGet/NuGet2/master/LICENSE.txt) |
| NuGet.Versioning | Microsoft | [https://aka.ms/nugetprj](https://aka.ms/nugetprj) | [Apache-2.0](https://www.nuget.org/packages/NuGet.Versioning/5.11.6/license) |
| Nuke.Common | Matthias Koch, Ulrich Buchgraber, Sebastian Karasek | [https://nuke.build/](https://nuke.build/) | [MIT](https://www.nuget.org/packages/Nuke.Common/7.0.6/license) |
| Octopus.Nuke.Common | Fork of Nuke by Matthias Koch, Ulrich Buchgraber, Sebastian Karasek | [https://nuke.build/](https://nuke.build/) | [MIT](https://www.nuget.org/packages/Nuke.Common/7.0.6/license) |
Comment thread
sathvikkumar-octo marked this conversation as resolved.
| Octopus.CoreUtilities | Octopus Deploy | [https://github.com/OctopusDeploy/CoreUtilities](https://github.com/OctopusDeploy/CoreUtilities) | [Apache-2.0](https://licenses.nuget.org/Apache-2.0) |
| Octopus.Data | Octopus Deploy | [https://github.com/OctopusDeploy/Data](https://github.com/OctopusDeploy/Data) | [Apache-2.0](https://licenses.nuget.org/Apache-2.0) |
| Octopus.Octodiff | Octopus Deploy | [https://github.com/OctopusDeploy/Octodiff](https://github.com/OctopusDeploy/Octodiff) | [Apache-2.0](https://www.nuget.org/packages/Octopus.Octodiff/2.0.547/license) |
Expand Down