Skip to content

Commit

Permalink
Add FixedVersion To ReleaseTemplatePackage (#873)
Browse files Browse the repository at this point in the history
* Add FixedVersion To ReleaseTemplatePackage.cs

* Fix approved surface area

* Fix .Net framework public surface area test
  • Loading branch information
stevencl840 authored Sep 24, 2024
1 parent d1338cd commit c1b29d1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4806,6 +4806,7 @@ Octopus.Client.Model
String ActionName { get; set; }
String FeedId { get; set; }
String FeedName { get; set; }
String FixedVersion { get; set; }
Boolean IsResolvable { get; set; }
String NuGetFeedId { get; set; }
String NuGetFeedName { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4825,6 +4825,7 @@ Octopus.Client.Model
String ActionName { get; set; }
String FeedId { get; set; }
String FeedName { get; set; }
String FixedVersion { get; set; }
Boolean IsResolvable { get; set; }
String NuGetFeedId { get; set; }
String NuGetFeedName { get; set; }
Expand Down
2 changes: 2 additions & 0 deletions source/Octopus.Server.Client/Model/ReleaseTemplatePackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public string NuGetFeedName

public string VersionSelectedLastRelease { get; set; }

public string FixedVersion { get; set; }

/// <summary>
/// Gets or sets a value indicating whether the <see cref="PackageId" /> or <see cref="FeedId" /> contain no
/// references to other variables. Variables can be used to
Expand Down

0 comments on commit c1b29d1

Please sign in to comment.