Skip to content

Commit

Permalink
remove vestigal tag
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel committed Jan 20, 2023
1 parent 702192f commit 953baf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Microsoft.NET.Build.Containers/Registry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Microsoft.NET.Build.Containers;

public record struct ManifestConfig(string mediaType, long size, string digest);
public record struct ManifestLayer(string mediaType, long size, string digest, string[]? urls);
public record struct ManifestV2(int schemaVersion, string tag, string mediaType, ManifestConfig config, List<ManifestLayer> layers);
public record struct ManifestV2(int schemaVersion, string mediaType, ManifestConfig config, List<ManifestLayer> layers);

public record struct PlatformInformation(string architecture, string os, string? variant, string[] features, [property:JsonPropertyName("os.version")][field: JsonPropertyName("os.version")] string? version);
public record struct PlatformSpecificManifest(string mediaType, long size, string digest, PlatformInformation platform);
Expand Down
2 changes: 1 addition & 1 deletion packaging/package.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

<Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec">
<PropertyGroup>
<PackageReleaseNotesFile>../docs/ReleaseNotes/v0.2.0.md</PackageReleaseNotesFile>
<PackageReleaseNotesFile>../docs/ReleaseNotes/v0.3.0.md</PackageReleaseNotesFile>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText($(PackageReleaseNotesFile)))</PackageReleaseNotes>
</PropertyGroup>
</Target>
Expand Down

0 comments on commit 953baf0

Please sign in to comment.