Skip to content

Commit 27e6c60

Browse files
committed
[Static Web Assets] Expose endpoint manifest type (#43167)
1 parent ae9054b commit 27e6c60

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/StaticWebAssetsSdk/Tasks/Data/StaticWebAssetEndpointsManifest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ public class StaticWebAssetEndpointsManifest()
77
{
88
public int Version { get; set; }
99

10+
public string ManifestType { get; set; }
11+
1012
public StaticWebAssetEndpoint[] Endpoints { get; set; }
1113
}

src/StaticWebAssetsSdk/Tasks/GenerateStaticWebAssetEndpointsManifest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ public override bool Execute()
5656
var manifest = new StaticWebAssetEndpointsManifest()
5757
{
5858
Version = 1,
59+
ManifestType = ManifestType,
5960
Endpoints = [.. filteredEndpoints]
6061
};
6162

0 commit comments

Comments
 (0)