Skip to content

Commit

Permalink
feat: 0.0.0.2 build
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraZiling committed Feb 3, 2024
1 parent 97f4eee commit 13080c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param(
[string] $Architecture = "x64",
[string] $Version = "0.0.0.1"
[string] $Version = "0.0.0.2"
)

$ErrorActionPreference = "Stop";
Expand Down
4 changes: 2 additions & 2 deletions src/PipManager/Models/Pages/LibraryInstallPackageItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

public class LibraryInstallPackageItem
{
public string PackageName { get; set; }
public string? PackageName { get; set; }
public bool VersionSpecified { get; set; } = false;
public string VersionSpecifiedType { get; set; } = "~=";
public string TargetVersion { get; set; } = string.Empty;
public List<string> AvailableVersions { get; set; }
public List<string>? AvailableVersions { get; set; }
}

0 comments on commit 13080c0

Please sign in to comment.