Skip to content

Commit

Permalink
VCI-128: Remove redundant properties
Browse files Browse the repository at this point in the history
  • Loading branch information
krankenbro committed Aug 20, 2021
1 parent 60fc90e commit 16dddf2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -312,14 +312,14 @@ private void SonarLogger(OutputType type, string text)
.EnableIncludeSymbols()
.SetSymbolPackageFormat(DotNetSymbolPackageFormat.snupkg)
.SetOutputDirectory(ArtifactsDirectory)
.SetVersion(ReleaseVersion)
.When(IsModule, modulePackSettings => modulePackSettings
.SetPackageLicenseUrl(ModuleManifest.LicenseUrl)
.SetPackageProjectUrl(ModuleManifest.ProjectUrl)
.SetPackageIconUrl(ModuleManifest.IconUrl)
.SetPackageRequireLicenseAcceptance(false)
.SetDescription(ModuleManifest.Description)
.SetCopyright(ModuleManifest.Copyright));
.SetVersion(ReleaseVersion);
//.When(IsModule, modulePackSettings => modulePackSettings
// .SetPackageLicenseUrl(ModuleManifest.LicenseUrl)
// .SetPackageProjectUrl(ModuleManifest.ProjectUrl)
// .SetPackageIconUrl(ModuleManifest.IconUrl)
// .SetPackageRequireLicenseAcceptance(false)
// .SetDescription(ModuleManifest.Description)
// .SetCopyright(ModuleManifest.Copyright));
DotNetPack(settings);
});

Expand Down

0 comments on commit 16dddf2

Please sign in to comment.