Giter Site home page Giter Site logo

Comments (6)

mcnallys avatar mcnallys commented on June 5, 2024 1

You are correct about DefaultItemExcludes, I ended up needing a combination of both.

I also had to do this for every glob include I did,

<Content Include="**\*.js" Exclude="$(DefaultItemExcludes)" />

from msbuild.sdk.systemweb.

CZEMacLeod avatar CZEMacLeod commented on June 5, 2024 1

Looking at the ASP.NET Core SDK I found the following lines:

    <DefaultItemExcludes>$(DefaultItemExcludes);**\node_modules\**;node_modules\**</DefaultItemExcludes>
    <DefaultItemExcludes>$(DefaultItemExcludes);**\jspm_packages\**;jspm_packages\**</DefaultItemExcludes>
    <DefaultItemExcludes>$(DefaultItemExcludes);**\bower_components\**;bower_components\**</DefaultItemExcludes>

from msbuild.sdk.systemweb.

CZEMacLeod avatar CZEMacLeod commented on June 5, 2024 1

@mcnallys If you update to Version 4.0.50 these lines will be included by default and you can remove them from your project file.

from msbuild.sdk.systemweb.

CZEMacLeod avatar CZEMacLeod commented on June 5, 2024

Good idea - I will have a look at this. We will probably put it behind a flag, but I don't see any harm in defaulting it to true.
As an alternative, I think DefaultItemExcludes is actually designed for this scenario.
Could you try the following instead and see if it is any better or worse? I think it should be better and it won't add the items in the first place then remove them again.

<PropertyGroup>
  <DefaultItemExcludes>$(DefaultItemExcludes);node_modules\**</DefaultItemExcludes>
</PropertyGroup>

from msbuild.sdk.systemweb.

CZEMacLeod avatar CZEMacLeod commented on June 5, 2024

@mcnallys I think most people would be including Content\**\*.css or Scripts\**\*.js etc. rather than the open glob, but adding the Exclude="$(DefaultItemExcludes)" obviously works too. In my case, ***.js would grab gulpfile.js.
Do you think it is worthwhile adding

<PropertyGroup>
  <DefaultItemExcludes>$(DefaultItemExcludes);node_modules\**</DefaultItemExcludes>
</PropertyGroup>

to the SDK?
Or is it something that would be done by the consumer?
I feel there might be other folders that would be excluded based on which package manager you were using,

from msbuild.sdk.systemweb.

mcnallys avatar mcnallys commented on June 5, 2024

Yeah I would add those lines to the sdk, it took me quite a while to figure out what was going on.

from msbuild.sdk.systemweb.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.