Skip to content

Commit

Permalink
Merged in feature/MTM-29853/remove_mercurial_elements (pull request #4)
Browse files Browse the repository at this point in the history
Feature/MTM-29853/remove mercurial elements

Approved-by: Kumar Pallav
Approved-by: Kamil Sobala
  • Loading branch information
piotr.szczepaniak committed Apr 22, 2020
2 parents 2b79c26 + 093acfe commit 264d67b
Show file tree
Hide file tree
Showing 41 changed files with 16,491 additions and 513 deletions.
429 changes: 215 additions & 214 deletions .hgignore → .gitignore

Large diffs are not rendered by default.

7 changes: 0 additions & 7 deletions .hgflow

This file was deleted.

4 changes: 2 additions & 2 deletions Examples/BuildingScripts/build.cake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//#addin nuget:https://www.nuget.org/api/v2/?package=cake.docker
//#addin Cake.Hg
//#addin Cake

using Path = System.IO.Path;
using IO = System.IO;
Expand Down Expand Up @@ -53,7 +53,7 @@ Task("CreateRelease")
var settings = new ProcessSettings
{
Arguments = new ProcessArgumentBuilder().Append("hgversion.ps1 -local false")
Arguments = new ProcessArgumentBuilder().Append("version.ps1 -local false")
};
StartProcess("pwsh", settings);
Expand Down
4 changes: 2 additions & 2 deletions Examples/BuildingScripts/createrelease.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Param(

if($version)
{
hg tag "bsv$version"
hg push
git tag "bsv$version"
git push
}
Binary file not shown.
22 changes: 0 additions & 22 deletions Examples/BuildingScripts/tools/Addins/Cake.Hg.0.1.8/cake.hg.nuspec

This file was deleted.

Binary file not shown.

This file was deleted.

Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Cake.Git</id>
<version>0.18.0</version>
<title>Cake.Git</title>
<authors>WCOM AB</authors>
<owners>WCOM AB,cake-contrib</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/cake-contrib/Cake_Git/blob/master/LICENSE.md</licenseUrl>
<projectUrl>https://github.com/cake-contrib/Cake_Git</projectUrl>
<iconUrl>https://cdn.rawgit.com/cake-contrib/graphics/a5cf0f881c390650144b2243ae551d5b9f836196/png/cake-contrib-medium.png</iconUrl>
<description>Cake Git AddIn</description>
<summary>Cake AddIn that extends Cake with Git SCM features</summary>
<releaseNotes>Bumped Cake.Core to 0.28.1
Add git clean command</releaseNotes>
<copyright>Copyright © WCOM AB 2018</copyright>
<tags>Cake Script Build Git</tags>
</metadata>
</package>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" />
<Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" />
<Default Extension="dll" ContentType="application/octet" />
<Default Extension="pdb" ContentType="application/octet" />
<Default Extension="XML" ContentType="application/octet" />
<Default Extension="config" ContentType="application/octet" />
<Default Extension="md" ContentType="application/octet" />
<Default Extension="dylib" ContentType="application/octet" />
<Default Extension="so" ContentType="application/octet" />
<Default Extension="nuspec" ContentType="application/octet" />
</Types>
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
<Relationship Type="http://schemas.microsoft.com/packaging/2010/07/manifest" Target="/Cake.Git.nuspec" Id="R283361cf52bf4748" />
<Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="/package/services/metadata/core-properties/6a21f21b27db4ec1b2d8cdde4367bfc4.psmdcp" Id="Rb4ed6f8599294437" />
</Relationships>

0 comments on commit 264d67b

Please sign in to comment.