Jeff Kluge

Results 143 comments of Jeff Kluge

@inthemedium sorry for the delay. I've rebased your branch since our code base has had a lot of CI improvements. You'll need to pull the changes from your remote. Do...

I'm not sure, maybe some logging would help? https://github.com/jeffkl/ManagedWimgApi/blob/main/src/Microsoft.Wim/WimgApi.RegisterLogFile.cs#L21 ```c# string logfile = @"C:\wimgapi.log"; WimgApi.RegisterLogFile(logfile); try { // Code that does the capture } finally { Wimgapi.UnregisterLogFile(logfile); } ```

I use the Traversal SDK in a lot of places and it restores all the projects. Can you put together a simple repro of your problem and attach a ZIP...

I tend to agree, `Equals()` is just seeing if two objects are equal and in this case its correct. I'm interested to know about the scenario where you're comparing to...

There are two `.nuspecs` in NuGet. The one [checked into this repository](https://github.com/nunit/nunit3-vs-adapter/blob/master/nuget/NUnit3TestAdapter.nuspec), tells NuGet how to pack up a package. This one contains all of the files so that they...

> @jeffkl Ok, but I assume you then mean the 4 "engine" files, not the adapter.dll ? All of the files could be just content files that get copied to...

The Package Folder Structure section gives examples on how to specify target framework-specific assets. ``` /contentFiles/{codeLanguage}/{TxM}/{any?} ``` So if you place files under `/contentFiles/any/net45`, they would be copied to the...

In order to correctly do this, you'll need to do the following: 1. Pack the appropriate assets into the correct location inside the `.nupkg` by telling NuGet which files go...

Here's an example: Project.csproj: ```xml netstandard2.0;net45 false AddOutputAssembliesToPackage NU5100;NU5128 ``` When you call Pack, the package has the following contents: ![image](https://github.com/nunit/nunit3-vs-adapter/assets/17556515/f211a5d4-20b0-4b9c-a665-b24602329616) Also, the `.nupsec` inside of the `.nupkg` tells NuGet...

There are probably other ways to do it, this is just an example if you're relying soley on the built-in CSPROJ logic. In the end, you just want the layout...