ssteiner

Results 12 comments of ssteiner

Using an absolute path that's inside the project folder does work indeed. Why would ASP.NET Core not have acces to other paths though? Our traditional ASP.NET MVC projects all write...

I'm having the same issue.. I only have two nodes, using simple ``Profile.dataGrid()`` and I'm creating the map as follows ``` DistributedMapBuilder mapBuilder = atomix.mapBuilder(mapName); map = mapBuilder.withCacheEnabled().build(); ``` it...

No, because `Assembly.GetExecutingAssembly().Location()` generally returns the location of the executing assembly (so e.g. the .exe file), and that would then be the program that loads and uses the plugin, and...

So, it seems this is the culprit: `SwitchProjectsToPackagesCommand` line 123 `if (!mappedProjectFilePaths.Contains(projectFileName) || !configuration.RemoveProjects)` `mappedProjectFilePaths` contains a list of all projects in the mapping file. I'd argue that if `switch-to-projects`...

@RicoSuter been debugging both switch-to-projects and switch-to-packages. And one thing I don't get: `switch-to-projects` parses the solution, adds any .csproj from the switcher config that's not already present in the...

I don't think you can fix that.. the exception comes from the Microsoft.Build namespace (which are dependencies of dnt) - if at all you'd have to talk to the guys...

Turns out that was only half the battle - one inheritent problem in the lib is concurrent access. Try launching a couple of imap operations in the newmail handler will...

I managed to do a .NET 8 build. changed the TargetFrameworks to net8.0 in both projects (Dnt.Commands and Dnt), adapted to changes when removing the outdated Nuget packages. Not too...

Have you tried looking in the `SwitchToProject` method in `SwitchPackageToProjectsCommand` ? `item` in line 111 might have that info and if so, it could be stored in the restore information...

I think the MSBuild APis don't allow that. I'm looking at the source for another matter, but the API used [AddItem](https://learn.microsoft.com/en-us/dotnet/api/microsoft.build.evaluation.project.additem?view=msbuild-17-netcore#microsoft-build-evaluation-project-additem(system-string-system-string-system-collections-generic-ienumerable((system-collections-generic-keyvaluepair((system-string-system-string)))))) doesn't seem to allow selecting the ItemGroup, let alone...