Skip to content

Commit

Permalink
Update assembly version to 8.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
zyhfish committed May 25, 2016
1 parent 99731d0 commit 08fb75d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions DNN Platform/Library/Services/Upgrade/Upgrade.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4096,6 +4096,7 @@ public static string CheckUpgrade()
public static void DeleteInstallerFiles()
{
FileSystemUtils.DeleteFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Install", "DotNetNuke.install.config"));
FileSystemUtils.DeleteFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Install", "DotNetNuke.install.config.resources"));
FileSystemUtils.DeleteFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Install", "InstallWizard.aspx"));
FileSystemUtils.DeleteFile(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Install", "InstallWizard.aspx.cs"));
}
Expand Down
4 changes: 2 additions & 2 deletions SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("8.0.2.0")]
[assembly: AssemblyFileVersion("8.0.2.0")]
[assembly: AssemblyVersion("8.0.3.0")]
[assembly: AssemblyFileVersion("8.0.3.0")]
3 changes: 3 additions & 0 deletions Website/Install/Install.aspx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,9 @@ private void UpgradeApplication()
}
Response.Write("<h2>Upgrade Complete</h2>");
Response.Write("<br><br><h2><a href='../Default.aspx'>Click Here To Access Your Site</a></h2><br><br>");

//remove installwizard files
Upgrade.Upgrade.DeleteInstallerFiles();
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ UPDATE {databaseOwner}{objectQualifier}Packages SET Version = @version WHERE Nam

GO

DELETE FROM {databaseOwner}[{objectQualifier}HostSettings] WHERE SettingName = 'InstallerFilesRemoved'
GO

/************************************************************/
/***** SqlDataProvider *****/
Expand Down

0 comments on commit 08fb75d

Please sign in to comment.