|
1 |
| -// -------------------------------------------------------------------------------------------------------------------- |
2 |
| -// <copyright file="Constants.cs" company="James Jackson-South"> |
3 |
| -// Copyright (c) James Jackson-South. All rights reserved. |
| 1 | +// <copyright file="Constants.cs" company="James Jackson-South, Jeavon Leopold, and contributors"> |
| 2 | +// Copyright (c) James Jackson-South, Jeavon Leopold, and contributors. All rights reserved. |
4 | 3 | // Licensed under the Apache License, Version 2.0.
|
5 | 4 | // </copyright>
|
6 |
| -// <summary> |
7 |
| -// Constant strings for use within the application. |
8 |
| -// </summary> |
9 |
| -// -------------------------------------------------------------------------------------------------------------------- |
| 5 | + |
10 | 6 | namespace Our.Umbraco.FileSystemProviders.Azure.Installer
|
11 | 7 | {
|
| 8 | + /// <summary> |
| 9 | + /// Contains constants related to the installer. |
| 10 | + /// </summary> |
12 | 11 | public static class Constants
|
13 | 12 | {
|
| 13 | + /// <summary> |
| 14 | + /// The installer path for the plugin. |
| 15 | + /// </summary> |
14 | 16 | public const string InstallerPath = "~/App_Plugins/UmbracoFileSystemProviders/Azure/Install/";
|
| 17 | + |
| 18 | + /// <summary> |
| 19 | + /// The filesystem provider configuration file name. |
| 20 | + /// </summary> |
15 | 21 | public const string FileSystemProvidersConfigFile = "FileSystemProviders.config";
|
| 22 | + |
| 23 | + /// <summary> |
| 24 | + /// The Umbraco configuration path. |
| 25 | + /// </summary> |
16 | 26 | public const string UmbracoConfigPath = "~/Config/";
|
| 27 | + |
| 28 | + /// <summary> |
| 29 | + /// The web configuration file name. |
| 30 | + /// </summary> |
17 | 31 | public const string WebConfigFile = "web.config";
|
| 32 | + |
| 33 | + /// <summary> |
| 34 | + /// The full qualified type name for the provider. |
| 35 | + /// </summary> |
18 | 36 | public const string ProviderType = "Our.Umbraco.FileSystemProviders.Azure.AzureBlobFileSystem, Our.Umbraco.FileSystemProviders.Azure";
|
19 | 37 |
|
| 38 | + /// <summary> |
| 39 | + /// Contains constant values related to the ImageProcessor library. |
| 40 | + /// </summary> |
20 | 41 | public class ImageProcessor
|
21 | 42 | {
|
| 43 | + /// <summary> |
| 44 | + /// The assembly path to the ImageProcessor.Web binary. |
| 45 | + /// </summary> |
22 | 46 | public const string WebAssemblyPath = "~/bin/ImageProcessor.Web.dll";
|
| 47 | + |
| 48 | + /// <summary> |
| 49 | + /// The minimum ImageProcessor.Web version. |
| 50 | + /// </summary> |
23 | 51 | public const string WebMinRequiredVersion = "4.3.2.0";
|
| 52 | + |
| 53 | + /// <summary> |
| 54 | + /// The ImageProcessor.Web configuration path. |
| 55 | + /// </summary> |
24 | 56 | public const string ConfigPath = "~/Config/imageprocessor/";
|
| 57 | + |
| 58 | + /// <summary> |
| 59 | + /// The ImageProcessor.Web security configuration file. |
| 60 | + /// </summary> |
25 | 61 | public const string SecurityConfigFile = "security.config";
|
| 62 | + |
| 63 | + /// <summary> |
| 64 | + /// The full qualified type for the ImageProcessor.Web CloudImageService. |
| 65 | + /// </summary> |
26 | 66 | public const string SecurityServiceType = "ImageProcessor.Web.Services.CloudImageService, ImageProcessor.Web";
|
27 |
| - public const string SecurityServiceName = "CloudImageService"; |
28 | 67 |
|
| 68 | + /// <summary> |
| 69 | + /// The CloudImageService name. |
| 70 | + /// </summary> |
| 71 | + public const string SecurityServiceName = "CloudImageService"; |
29 | 72 | }
|
30 | 73 | }
|
31 | 74 | }
|
0 commit comments