Skip to content

Commit

Permalink
Changed sync rule changes migration script extension from .ps1 to .ps…
Browse files Browse the repository at this point in the history
…1.txt
  • Loading branch information
NileshGhodekar committed May 11, 2020
1 parent 84eb91f commit 7e007fd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

### Version [1.20.0511.0]

#### Changed
- Changed sync rule changes migration script extension from .ps1 to .ps1.txt

------------

### Version [1.20.0413.0]

#### Added
Expand Down
2 changes: 1 addition & 1 deletion src/AzureADConnectSyncDocumenter/Documenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1439,7 +1439,7 @@ protected void WriteReport(string reportHeader, Tuple<string, string, string> re
this.ReportWriter.WriteEndTag("body");
this.ReportWriter.WriteEndTag("html");

using (var syncRuleScriptFile = new StreamWriter(configReportFilePath.Replace(".html", ".ps1")))
using (var syncRuleScriptFile = new StreamWriter(configReportFilePath.Replace(".html", ".ps1.txt")))
{
syncRuleScriptFile.WriteLine(Documenter.GetEmbeddedScriptResource("PowerShellScriptHeader.ps1"));

Expand Down
4 changes: 2 additions & 2 deletions src/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal static class VersionInfo
/// Build Number (MMDD)
/// Revision (if any on the same day)
/// </summary>
internal const string Version = "1.20.0413.0";
internal const string Version = "1.20.0511.0";

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

0 comments on commit 7e007fd

Please sign in to comment.