How do I update nuget filesDownload old version of package with NuGetHow do I get NuGet to install/update all the packages in the packages.config?How do I install a NuGet package .nupkg file locally?Visual Studio debugging/loading very slowDebugging private NuGet packages?'nuget' is not recognized but other nuget commands workingBest practices with Nuget: Debug or Release?Dissociate files from Nuget without removing from the projectnuget retrieving package metadataHow to change target directories structure of nuget package
How to change a file name containing ":" in timing info
Acceptable to cut steak before searing?
Why is transplanting a specific intact brain impossible if it is generally possible?
How to vertically align the three columns of my table top, top, middle
Identification of vintage sloping window
The cat ate your input again!
What is the difference between 型 and 形?
What gave Harry Potter the idea of writing in Tom Riddle's diary?
What costs less energy? Roll or Yaw?
Help evaluating integral (anything simple that I am missing?)
Infeasibility in mathematical optimization models
Why did Gandalf use a sword against the Balrog?
If "more guns less crime", how do gun advocates explain that the EU has less crime than the US?
Why are Gatwick's runways too close together?
Visa National - No Exit Stamp From France on Return to the UK
Is it okay for a ticket seller to grab a tip in the USA?
Are differences between uniformly distributed numbers uniformly distributed?
Dropdowns & Chevrons for Right to Left languages
How should an administrative assistant reply to student addressing them as "Professor" or "Doctor"?
Understanding the point of a kölsche Witz
How to mark beverage cans in a cooler for a blind person?
Should I ask for permission to write an expository post about someone's else research?
I accidentally overwrote a Linux binary file
Why isn’t SHA-3 in wider use?
How do I update nuget files
Download old version of package with NuGetHow do I get NuGet to install/update all the packages in the packages.config?How do I install a NuGet package .nupkg file locally?Visual Studio debugging/loading very slowDebugging private NuGet packages?'nuget' is not recognized but other nuget commands workingBest practices with Nuget: Debug or Release?Dissociate files from Nuget without removing from the projectnuget retrieving package metadataHow to change target directories structure of nuget package
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Im creating a webform aspx site. I have updated Bootstrap from 3.7.7 to 4.3.1 with Nuget manager. It took over a day before the new bootstrap files was added to debug.
Now I like to go back again, so I choose version 3.7.7 from Nuget again, and all files in Visual studio show correct. But when I run the debug the source files are linked to 4.3.1.
Can I force the changes to take effect? So I dont have to wait.
twitter-bootstrap visual-studio nuget updates
add a comment |
Im creating a webform aspx site. I have updated Bootstrap from 3.7.7 to 4.3.1 with Nuget manager. It took over a day before the new bootstrap files was added to debug.
Now I like to go back again, so I choose version 3.7.7 from Nuget again, and all files in Visual studio show correct. But when I run the debug the source files are linked to 4.3.1.
Can I force the changes to take effect? So I dont have to wait.
twitter-bootstrap visual-studio nuget updates
1
Look for your reference to bootstrap within the code, make sure the paths are correct.
– bilpor
Mar 27 at 8:31
"It took over a day before the new bootstrap files was added to debug." what do you mean by this ?
– D.J.
Mar 27 at 12:37
Since it's a webforms project, you're probably using nuget packages withpackages.config
. In this case, NuGet will change the contents of your project when you install a different version of the package. If you use source control, you should see the files changed. If you don't see the changes in your browser, it's probably a deployment or caching issue.
– zivkan
Mar 27 at 22:01
Hi, how did you know the source file are linking to the 4.3.1 during the debugging process? Could you please share more detail information about how to reproduce this issue, that will help us analysis, thanks.
– Sara Liu - MSFT
Mar 28 at 8:22
There was some visual studio cache that needed to be clear.
– Bo Christensen
Apr 29 at 11:26
add a comment |
Im creating a webform aspx site. I have updated Bootstrap from 3.7.7 to 4.3.1 with Nuget manager. It took over a day before the new bootstrap files was added to debug.
Now I like to go back again, so I choose version 3.7.7 from Nuget again, and all files in Visual studio show correct. But when I run the debug the source files are linked to 4.3.1.
Can I force the changes to take effect? So I dont have to wait.
twitter-bootstrap visual-studio nuget updates
Im creating a webform aspx site. I have updated Bootstrap from 3.7.7 to 4.3.1 with Nuget manager. It took over a day before the new bootstrap files was added to debug.
Now I like to go back again, so I choose version 3.7.7 from Nuget again, and all files in Visual studio show correct. But when I run the debug the source files are linked to 4.3.1.
Can I force the changes to take effect? So I dont have to wait.
twitter-bootstrap visual-studio nuget updates
twitter-bootstrap visual-studio nuget updates
edited Mar 27 at 12:31
ascripter
2,7008 gold badges23 silver badges38 bronze badges
2,7008 gold badges23 silver badges38 bronze badges
asked Mar 27 at 8:24
Bo ChristensenBo Christensen
1
1
1
Look for your reference to bootstrap within the code, make sure the paths are correct.
– bilpor
Mar 27 at 8:31
"It took over a day before the new bootstrap files was added to debug." what do you mean by this ?
– D.J.
Mar 27 at 12:37
Since it's a webforms project, you're probably using nuget packages withpackages.config
. In this case, NuGet will change the contents of your project when you install a different version of the package. If you use source control, you should see the files changed. If you don't see the changes in your browser, it's probably a deployment or caching issue.
– zivkan
Mar 27 at 22:01
Hi, how did you know the source file are linking to the 4.3.1 during the debugging process? Could you please share more detail information about how to reproduce this issue, that will help us analysis, thanks.
– Sara Liu - MSFT
Mar 28 at 8:22
There was some visual studio cache that needed to be clear.
– Bo Christensen
Apr 29 at 11:26
add a comment |
1
Look for your reference to bootstrap within the code, make sure the paths are correct.
– bilpor
Mar 27 at 8:31
"It took over a day before the new bootstrap files was added to debug." what do you mean by this ?
– D.J.
Mar 27 at 12:37
Since it's a webforms project, you're probably using nuget packages withpackages.config
. In this case, NuGet will change the contents of your project when you install a different version of the package. If you use source control, you should see the files changed. If you don't see the changes in your browser, it's probably a deployment or caching issue.
– zivkan
Mar 27 at 22:01
Hi, how did you know the source file are linking to the 4.3.1 during the debugging process? Could you please share more detail information about how to reproduce this issue, that will help us analysis, thanks.
– Sara Liu - MSFT
Mar 28 at 8:22
There was some visual studio cache that needed to be clear.
– Bo Christensen
Apr 29 at 11:26
1
1
Look for your reference to bootstrap within the code, make sure the paths are correct.
– bilpor
Mar 27 at 8:31
Look for your reference to bootstrap within the code, make sure the paths are correct.
– bilpor
Mar 27 at 8:31
"It took over a day before the new bootstrap files was added to debug." what do you mean by this ?
– D.J.
Mar 27 at 12:37
"It took over a day before the new bootstrap files was added to debug." what do you mean by this ?
– D.J.
Mar 27 at 12:37
Since it's a webforms project, you're probably using nuget packages with
packages.config
. In this case, NuGet will change the contents of your project when you install a different version of the package. If you use source control, you should see the files changed. If you don't see the changes in your browser, it's probably a deployment or caching issue.– zivkan
Mar 27 at 22:01
Since it's a webforms project, you're probably using nuget packages with
packages.config
. In this case, NuGet will change the contents of your project when you install a different version of the package. If you use source control, you should see the files changed. If you don't see the changes in your browser, it's probably a deployment or caching issue.– zivkan
Mar 27 at 22:01
Hi, how did you know the source file are linking to the 4.3.1 during the debugging process? Could you please share more detail information about how to reproduce this issue, that will help us analysis, thanks.
– Sara Liu - MSFT
Mar 28 at 8:22
Hi, how did you know the source file are linking to the 4.3.1 during the debugging process? Could you please share more detail information about how to reproduce this issue, that will help us analysis, thanks.
– Sara Liu - MSFT
Mar 28 at 8:22
There was some visual studio cache that needed to be clear.
– Bo Christensen
Apr 29 at 11:26
There was some visual studio cache that needed to be clear.
– Bo Christensen
Apr 29 at 11:26
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55372649%2fhow-do-i-update-nuget-files%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55372649%2fhow-do-i-update-nuget-files%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Look for your reference to bootstrap within the code, make sure the paths are correct.
– bilpor
Mar 27 at 8:31
"It took over a day before the new bootstrap files was added to debug." what do you mean by this ?
– D.J.
Mar 27 at 12:37
Since it's a webforms project, you're probably using nuget packages with
packages.config
. In this case, NuGet will change the contents of your project when you install a different version of the package. If you use source control, you should see the files changed. If you don't see the changes in your browser, it's probably a deployment or caching issue.– zivkan
Mar 27 at 22:01
Hi, how did you know the source file are linking to the 4.3.1 during the debugging process? Could you please share more detail information about how to reproduce this issue, that will help us analysis, thanks.
– Sara Liu - MSFT
Mar 28 at 8:22
There was some visual studio cache that needed to be clear.
– Bo Christensen
Apr 29 at 11:26