Skip to content

Commit

Permalink
KPI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
christianwade committed Oct 20, 2020
1 parent ae3f6ab commit 2e038da
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 15 deletions.
4 changes: 2 additions & 2 deletions BismNormalizer/AlmToolkit/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.12.0")]
[assembly: AssemblyFileVersion("5.0.12.0")]
[assembly: AssemblyVersion("5.0.12.1")]
[assembly: AssemblyFileVersion("5.0.12.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.12.0")]
[assembly: AssemblyFileVersion("5.0.12.0")]
[assembly: AssemblyVersion("5.0.12.1")]
[assembly: AssemblyFileVersion("5.0.12.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.12.0")]
[assembly: AssemblyFileVersion("5.0.12.0")]
[assembly: AssemblyVersion("5.0.12.1")]
[assembly: AssemblyFileVersion("5.0.12.1")]
Binary file modified BismNormalizer/BismNormalizer/BismNormalizer.IconSetup.exe
Binary file not shown.
Binary file modified BismNormalizer/BismNormalizer/BismNormalizer.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions BismNormalizer/BismNormalizer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("5.0.12.0")]
[assembly: AssemblyFileVersion("5.0.12.0")]
[assembly: AssemblyVersion("5.0.12.1")]
[assembly: AssemblyFileVersion("5.0.12.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -1823,8 +1823,7 @@ private void UpdateMeasure(ComparisonObject comparisonObject, string tableName)

private void DeleteCalculationItem(ComparisonObject comparisonObject, string tableName)
{
if ((comparisonObject.ComparisonObjectType == ComparisonObjectType.CalculationItem || comparisonObject.ComparisonObjectType == ComparisonObjectType.Kpi) &&
comparisonObject.MergeAction == MergeAction.Delete)
if (comparisonObject.ComparisonObjectType == ComparisonObjectType.CalculationItem && comparisonObject.MergeAction == MergeAction.Delete)
{
Table tableTarget = _targetTabularModel.Tables.FindByName(tableName);
if (tableTarget != null)
Expand All @@ -1843,8 +1842,7 @@ private void DeleteCalculationItem(ComparisonObject comparisonObject, string tab

private void CreateCalculationItem(ComparisonObject comparisonObject, string tableName)
{
if ((comparisonObject.ComparisonObjectType == ComparisonObjectType.CalculationItem || comparisonObject.ComparisonObjectType == ComparisonObjectType.Kpi) &&
comparisonObject.MergeAction == MergeAction.Create)
if (comparisonObject.ComparisonObjectType == ComparisonObjectType.CalculationItem && comparisonObject.MergeAction == MergeAction.Create)
{
Table tableSource = _sourceTabularModel.Tables.FindByName(tableName);
Table tableTarget = _targetTabularModel.Tables.FindByName(tableName);
Expand All @@ -1869,8 +1867,7 @@ private void CreateCalculationItem(ComparisonObject comparisonObject, string tab

private void UpdateCalculationItem(ComparisonObject comparisonObject, string tableName)
{
if ((comparisonObject.ComparisonObjectType == ComparisonObjectType.CalculationItem || comparisonObject.ComparisonObjectType == ComparisonObjectType.Kpi) &&
comparisonObject.MergeAction == MergeAction.Update)
if (comparisonObject.ComparisonObjectType == ComparisonObjectType.CalculationItem && comparisonObject.MergeAction == MergeAction.Update)
{
Table tableSource = _sourceTabularModel.Tables.FindByName(tableName);
Table tableTarget = _targetTabularModel.Tables.FindByName(tableName);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="BismNormalizer.ea2aeb43-64a6-4dee-8816-099fb44513fa" Version="5.0.12.0" Language="en-US" Publisher="BISM Normalizer" />
<Identity Id="BismNormalizer.ea2aeb43-64a6-4dee-8816-099fb44513fa" Version="5.0.12.1" Language="en-US" Publisher="BISM Normalizer" />
<DisplayName>BISM Normalizer</DisplayName>
<Description xml:space="preserve">BISM Normalizer manages Analysis Services tabular models</Description>
<MoreInfo>http://bism-normalizer.com/</MoreInfo>
Expand Down

0 comments on commit 2e038da

Please sign in to comment.