-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove double slash from nuget package API calls * Allow for other projects to be upgraded if one or more are with old Sitefinity version * Improve logic for SyncReferencesWithPackages; * Add logic to remove references to non-existing files in nuget packages * Use Path.Combine where approriate * Improve logic for updating hint path; Update variable names; * Fix bug with parsing assembly version * Replaced string.format with string interpolation * Bump version to 1.1.0.20 Co-authored-by: PROGRESS\sruzmano <[email protected]>
- Loading branch information
1 parent
de4021a
commit 809251e
Showing
10 changed files
with
300 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
|
||
namespace Sitefinity_CLI.PackageManagement | ||
{ | ||
internal class AssemblyReference | ||
{ | ||
public string Name { get; set; } | ||
|
||
public string FullName { get; set; } | ||
|
||
public Version Version { get; set; } | ||
|
||
public string HintPath { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.