More work on nullable references

This commit is contained in:
Nikolaj Geisle
2022-02-22 13:35:32 +01:00
parent 315e8d6fe6
commit a8cf6ee127
189 changed files with 1271 additions and 983 deletions

View File

@@ -25,7 +25,7 @@ namespace Umbraco.Cms.Core.WebAssets
/// <exception cref="InvalidOperationException">
/// Thrown if any of the paths specified are not absolute
/// </exception>
void CreateCssBundle(string bundleName, BundlingOptions bundleOptions, params string[] filePaths);
void CreateCssBundle(string bundleName, BundlingOptions bundleOptions, params string[]? filePaths);
/// <summary>
/// Renders the html link tag for the bundle
@@ -48,7 +48,7 @@ namespace Umbraco.Cms.Core.WebAssets
/// <exception cref="InvalidOperationException">
/// Thrown if any of the paths specified are not absolute
/// </exception>
void CreateJsBundle(string bundleName, BundlingOptions bundleOptions, params string[] filePaths);
void CreateJsBundle(string bundleName, BundlingOptions bundleOptions, params string[]? filePaths);
/// <summary>
/// Renders the html script tag for the bundle