CacheResultType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Result types that a plugin can return for a given build request.
public enum class CacheResultType
public enum CacheResultType
type CacheResultType =
Public Enum CacheResultType
- Inheritance
-
CacheResultType
Fields
| Name | Value | Description |
|---|---|---|
| None | 0 | The plugin failed and couldn't return a result. The plugin should log an error detailing the failure. MSBuild will stop the build. |
| CacheHit | 1 | The plugin determined that it supports a build request and found that it can be skipped. MSBuild won't build the request. |
| CacheMiss | 2 | The plugin determined that it supports a build request and found that it cannot be skipped. MSBuild will build the request. |
| CacheNotApplicable | 3 | The plugin determined that it does not support a certain build request. MSBuild will build the request. For example, a plugin may not support projects with a certain extension, certain properties, or certain called targets. |