Skip to content

Commit 98684e6

Browse files
Add 100 to the ClientDependency.config version to avoid conflicts with older caches
1 parent 9687b2a commit 98684e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Umbraco.Core/Configuration/ClientDependencyConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ internal bool IncreaseVersionNumber()
3030

3131
int oldVersion;
3232
int.TryParse(versionAttribute.Value, out oldVersion);
33-
var newVersion = oldVersion + 1;
33+
var newVersion = oldVersion + 100;
3434

3535
versionAttribute.SetValue(newVersion);
3636
clientDependencyConfigXml.Save(_fileName, SaveOptions.DisableFormatting);

src/Umbraco.Web.UI/Umbraco.Web.UI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2643,7 +2643,7 @@ xcopy "$(ProjectDir)"..\packages\SqlServerCE.4.0.0.0\x86\*.* "$(TargetDir)x86\"
26432643
<WebProjectProperties>
26442644
<UseIIS>True</UseIIS>
26452645
<AutoAssignPort>True</AutoAssignPort>
2646-
<DevelopmentServerPort>7020</DevelopmentServerPort>
2646+
<DevelopmentServerPort>7030</DevelopmentServerPort>
26472647
<DevelopmentServerVPath>/</DevelopmentServerVPath>
26482648
<IISUrl>http://localhost:7030</IISUrl>
26492649
<NTLMAuthentication>False</NTLMAuthentication>

0 commit comments

Comments
 (0)