Nikolay Pianikov

Results 46 comments of Nikolay Pianikov

@Th3LionH3ad could you add '-l:debug` and attach the output?

@Th3LionH3ad Try using a full path for you executable

Unfortunately I cannot reproduce this issue, I've added logs. Could you try installing [this plugin](https://teamcity.jetbrains.com/repository/download/TeamCityUnityPlugin_Build/3145699:id/teamcity-unity-plugin.zip) and attach _teamcity-agent.log_ after TeamCity agent restart.

TeamCity is not responsible for installing components on an agent except [TeamCity agent tools](https://www.jetbrains.com/help/teamcity/installing-agent-tools.html). Actually these tools are archives and ready to use after unpacking. Looks like Unity requires an...

@Bullrich did you suppose to have different sets of _Test categories_ and _Test names_ for each mode?

@NikolayFedorenko You can install it via ```Administration->Plugins->Browse plugins repository->Unity Support->Get```

Hi Why you would not just separate logic to setup an identity from some data and to get this identity. Please see my example: ```C# using System; using Pure.DI; namespace...

Also please see [this sample](https://github.com/DevTeam/Pure.DI/tree/master/Samples/BlazorServerApp) or [this](https://github.com/DevTeam/Pure.DI#aspnet). It is not a problem to configure Pure DI to work with ASP.NET services.

Yes, thanks for details. May be this approach will be suitable: ```C# using System; using Pure.DI; namespace AppStart.Pure_DI; public struct Identity { public int UserId; // More fields } public...

Looks good in my opinion. But one small thing: ```.Bind().To(ctx => new IdentityService(ctx.Resolve()))``` May be it could be replaced something like: ```.Bind().To()``` and ``` internal static T ResolveWithIdentity(Identity identity) {...