Skip to content

Commit

Permalink
Do not overwrite versions of packages in the @Project.manifest file w…
Browse files Browse the repository at this point in the history
…ith the version of the project (if no version is provided in the Release Notes). Resolves rtumaykin#15
  • Loading branch information
pmalecka committed Mar 22, 2019
1 parent f21f7e0 commit 58a38c7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/SsisBuild.Core/ProjectManagement/ProjectManifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ protected override void PostInitialize()
{
if (element != null)
{
element.InnerText = versionMajorString;
_versionMajorNodes.Add(element);
}
}
Expand All @@ -184,7 +183,6 @@ protected override void PostInitialize()
{
if (element != null)
{
element.InnerText = versionMinorString;
_versionMinorNodes.Add(element);
}
}
Expand All @@ -206,7 +204,6 @@ protected override void PostInitialize()
{
if (element != null)
{
element.InnerText = versionBuildString;
_versionBuildNodes.Add(element);
}
}
Expand All @@ -225,7 +222,6 @@ protected override void PostInitialize()
{
if (element != null)
{
element.InnerText = versionCommentsString;
_versionCommentsNodes.Add(element);
}
}
Expand Down

0 comments on commit 58a38c7

Please sign in to comment.