AAS servername check
This commit is contained in:
parent
d40c444f17
commit
d7fc98cc48
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("5.0.14.0")]
|
[assembly: AssemblyVersion("5.0.14.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.14.0")]
|
[assembly: AssemblyFileVersion("5.0.14.1")]
|
||||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("5.0.14.0")]
|
[assembly: AssemblyVersion("5.0.14.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.14.0")]
|
[assembly: AssemblyFileVersion("5.0.14.1")]
|
||||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("5.0.14.0")]
|
[assembly: AssemblyVersion("5.0.14.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.14.0")]
|
[assembly: AssemblyFileVersion("5.0.14.1")]
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("5.0.14.0")]
|
[assembly: AssemblyVersion("5.0.14.1")]
|
||||||
[assembly: AssemblyFileVersion("5.0.14.0")]
|
[assembly: AssemblyFileVersion("5.0.14.1")]
|
||||||
|
@ -96,7 +96,8 @@ namespace BismNormalizer.TabularCompare.TabularMetadata
|
|||||||
foreach (ModelRole role in _database.Model.Roles)
|
foreach (ModelRole role in _database.Model.Roles)
|
||||||
{
|
{
|
||||||
//Workaround for AAD role members - todo delete if changed in Azure AS
|
//Workaround for AAD role members - todo delete if changed in Azure AS
|
||||||
if (_parentComparison?.TargetTabularModel?.ConnectionInfo?.ServerName?.Substring(0, 7) == "asazure")
|
if (_parentComparison?.TargetTabularModel?.ConnectionInfo?.ServerName?.Length > 7 &&
|
||||||
|
_parentComparison?.TargetTabularModel?.ConnectionInfo?.ServerName?.Substring(0, 7) == "asazure")
|
||||||
{
|
{
|
||||||
List<ExternalModelRoleMember> membersToAdd = new List<ExternalModelRoleMember>();
|
List<ExternalModelRoleMember> membersToAdd = new List<ExternalModelRoleMember>();
|
||||||
foreach (ModelRoleMember member in role.Members)
|
foreach (ModelRoleMember member in role.Members)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?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">
|
<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>
|
<Metadata>
|
||||||
<Identity Id="BismNormalizer.ea2aeb43-64a6-4dee-8816-099fb44513fa" Version="5.0.14.0" Language="en-US" Publisher="BISM Normalizer" />
|
<Identity Id="BismNormalizer.ea2aeb43-64a6-4dee-8816-099fb44513fa" Version="5.0.14.1" Language="en-US" Publisher="BISM Normalizer" />
|
||||||
<DisplayName>BISM Normalizer</DisplayName>
|
<DisplayName>BISM Normalizer</DisplayName>
|
||||||
<Description xml:space="preserve">BISM Normalizer manages Analysis Services tabular models</Description>
|
<Description xml:space="preserve">BISM Normalizer manages Analysis Services tabular models</Description>
|
||||||
<MoreInfo>http://bism-normalizer.com/</MoreInfo>
|
<MoreInfo>http://bism-normalizer.com/</MoreInfo>
|
||||||
|
Loading…
Reference in New Issue
Block a user