File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
src/Umbraco.Core/Configuration/Models Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ public class RuntimeMinificationSettings
7
7
{
8
8
internal const bool StaticUseInMemoryCache = false ;
9
9
internal const string StaticCacheBuster = "Version" ;
10
+ internal const string StaticVersion = null ;
10
11
11
12
/// <summary>
12
13
/// Use in memory cache
@@ -19,5 +20,11 @@ public class RuntimeMinificationSettings
19
20
/// </summary>
20
21
[ DefaultValue ( StaticCacheBuster ) ]
21
22
public RuntimeMinificationCacheBuster CacheBuster { get ; set ; } = Enum < RuntimeMinificationCacheBuster > . Parse ( StaticCacheBuster ) ;
23
+
24
+ /// <summary>
25
+ /// The unique version string used if CacheBuster is 'Version'.
26
+ /// </summary>
27
+ [ DefaultValue ( StaticVersion ) ]
28
+ public string Version { get ; set ; } = StaticVersion ;
22
29
}
23
30
}
You can’t perform that action at this time.
0 commit comments