Jeff Kluge

Results 143 comments of Jeff Kluge

Sorry I was out on vacation. There will have to be some convention of marking which PackageReferences are allowed to specify a version. In your example above: ```xml ``` Either...

`Microsoft.Build.NoTargets` is really designed for projects that don't build assemblies and instead copy files around or some other build orchestration actions. It uses the official `Microsoft.NET.Sdk` logic and just disables...

> Why does NoTargets keep any of the implicit includes of the Sdk? The main reason is so that some of the items are automatic, just like other SDKs. In...

@shuebner okay, I'm going to leave the issue open for now and if we get enough upvotes we'll consider changing the defaults.

`Microsoft.Build.Traversal` does not have any other way to express dependencies at the moment. You should be able to native projects reference managed projects and visa versa. Perhaps we can find...

@shueybubbles you should be able to set `BuildInParallel=false` on the ``: ```xml ```

I get an error about trying to build a solution file from a Traversal project. ``` D:\Temp\repro-temp\TraversalWithPack\build>msbuild /bl /restore /clp:v=m;summary;forcenoalign /nr:false /m build.proj /t:pack Microsoft (R) Build Engine version 17.1.0-preview-21623-01+11081a235...

I think we could transfer the condition from the `` element to the implicit import: So ```xml ``` Would become: ```xml ``` We can't actually apply conditions to `` elements...

Some warnings are logged by the same code that parse the codes to suppress in your `Directory.Build.props`. To suppress this warning (not recommended if you can just fix the double...