Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7585109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T19:05:37+00:00 2026-05-30T19:05:37+00:00

Is it possible to force nuGet packages to overwrite existing files? I need a

  • 0

Is it possible to force nuGet packages to overwrite existing files? I need a nice way of applying patches (files, dll, resources) across 3 similar projects and through that this could be a nice solution.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T19:05:38+00:00Added an answer on May 30, 2026 at 7:05 pm

    It can be accomplished with powershell and a package dependencies…

    I have a NuGet package that I create for ASP.NET MVC it has all the files that I want to add to the standard Mvc project (DisplayTemplates, EditorTemplate, Extensions, BaseController, etc). Let say its called “Company.WebMvc”

    I created another NuGet package called “Company.WebMvc-Prep” That has an Install.ps1 script that deletes anything I don’t want from the standard Mvc project. Here is an code example of deleting the existing Scripts files…

    param($installPath, $toolsPath, $package, $project)
    
    #Remove Script Files
    
    $scripts = $project.ProjectItems | Where-Object { $_.Name -eq "Scripts" }
    
    if ($scripts) {
    
        $scripts.ProjectItems | ForEach-Object { $_.Delete() }
    
    }
    

    I then make “Company.WebMvc-Prep” a dependency of “Company.WebMvc”. Why? because Install.ps1 (normally) is run after NuGet adds the files from the content folder. I need it to delete the files first then add the new ones. So when you call…

    Install-Package Company.WebMvc

    Company.WebMvc-Prep is installed first because it is a dependency (runs Install.ps1)

    Then Company.WebMvc is installed which adds your content.

    Long and short of it is… You Can overwrite existing content on your project via a NuGet package.

    P.S. Remember you can also you partial classes to isolate NuGet package code vs. project specific code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to force an already existing project to be a java project?
Is it possible to force my C# solution file to make a single DLL
Is it possible to force the server to download files from peer-to-peer networks just
Possible Duplicate: Is it possible to force jQuery to make AJAX calls for URLs
Is it possible to force tt_news to always retrieve new posts? I have a
Is it possible to force the iPhone to shutdown ( programmatically , of course)?
Is it possible to force the Facebook session to refresh, or alternatively, call the
This is an extension to Is it possible to force row level locking in
this may be a very simple question, but is it possible to force a
> return $this->_prepareDownloadResponse( > 'invoice'.Mage::getSingleton('core/date')->date('Y-m-d_H-i-s').'.pdf', > $pdf->render(), 'application/pdf' Is it still possible to force

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.