You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for many of VS Solutions i need an "nuget.targets" customizable Template in appdata.
for example:
i need to restore and safe update packages automatically on TFS Build.
i change the nuget.targets RestoreCommand - tag to following: $(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir) | $(NuGetCommand) update "$(PackagesConfig)" -safe -source "$(PackageSources)"
this works well so far, but I do not have to make this anywhere with the hand and would just want to edit a template
The text was updated successfully, but these errors were encountered:
for many of VS Solutions i need an "nuget.targets" customizable Template in appdata.
for example:
$(NuGetCommand) install "$ (PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $ (RequireConsentSwitch) -solutionDir $(PaddedSolutionDir) | $ (NuGetCommand) update "$(PackagesConfig)" -safe -source "$(PackageSources)"
i need to restore and safe update packages automatically on TFS Build.
i change the nuget.targets RestoreCommand - tag to following:
this works well so far, but I do not have to make this anywhere with the hand and would just want to edit a template
The text was updated successfully, but these errors were encountered: