Skip to content

Commit 7e007fd

Browse files
Changed sync rule changes migration script extension from .ps1 to .ps1.txt
1 parent 84eb91f commit 7e007fd

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to AADConnectConfigDocumenter project will be documented in this file. The "Unreleased" section at the top is for keeping track of important changes that might make it to upcoming releases.
44

5+
### Version [1.20.0511.0]
6+
7+
#### Changed
8+
- Changed sync rule changes migration script extension from .ps1 to .ps1.txt
9+
10+
------------
11+
512
### Version [1.20.0413.0]
613

714
#### Added

src/AzureADConnectSyncDocumenter/Documenter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1439,7 +1439,7 @@ protected void WriteReport(string reportHeader, Tuple<string, string, string> re
14391439
this.ReportWriter.WriteEndTag("body");
14401440
this.ReportWriter.WriteEndTag("html");
14411441

1442-
using (var syncRuleScriptFile = new StreamWriter(configReportFilePath.Replace(".html", ".ps1")))
1442+
using (var syncRuleScriptFile = new StreamWriter(configReportFilePath.Replace(".html", ".ps1.txt")))
14431443
{
14441444
syncRuleScriptFile.WriteLine(Documenter.GetEmbeddedScriptResource("PowerShellScriptHeader.ps1"));
14451445

src/VersionInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ internal static class VersionInfo
2222
/// Build Number (MMDD)
2323
/// Revision (if any on the same day)
2424
/// </summary>
25-
internal const string Version = "1.20.0413.0";
25+
internal const string Version = "1.20.0511.0";
2626

2727
/// <summary>
2828
/// File Version information for the assembly consists of the following four values:
@@ -31,6 +31,6 @@ internal static class VersionInfo
3131
/// Build Number (MMDD)
3232
/// Revision (if any on the same day)
3333
/// </summary>
34-
internal const string FileVersion = "1.20.0413.0";
34+
internal const string FileVersion = "1.20.0511.0";
3535
}
3636
}

0 commit comments

Comments
 (0)