zabulus
zabulus
There are a bunch of new macros from MSDN that are preferable way to get version information in new SDK: https://msdn.microsoft.com/en-us/library/windows/desktop/dn424972(v=vs.85).aspx
> working the module needs a manifest included. Of course, it is by design and not a bug. Windows 10 compatible applications must include the manifest so the OS can...
Found out that the 2 blank lines is added not via CopyrightHeadersRule but NewLineAboveRule
workarounded by manually adding ``` var dict = ImmutableDictionary.Empty; dict = dict.Add("VCTargetsPath", @"c:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\"); using (var workspace = MSBuildWorkspace.Create(dict)) ```
There are plenty of nuget packages that allows you to manually sign 3rd party libraries. Simplest nuget package that signs all not-signed libraries with same certificates: https://www.nuget.org/packages/StrongNamer/
> This kind of works, but I'd rather have the original authors signature for his own code, like it's meant to be. What is the use case of this? In...
Will you accept PRs for this issue?
In my project I've already used RestSharp to communicate with Device Portal. > while we finish out the API surface Any details about this?
> Did RestSharp handle the PIN pairing and CSRF protection? That would be interesting to investigate. Thanks! Hirsch It's just cookies taken from here and there. EDIT: or you wondering...
I can only provide you implementation of API client on top of RestSharp, used in BenchmarkDotNet: https://github.com/dotnet/BenchmarkDotNet/blob/uap/src/BenchmarkDotNet.Toolchains.Uap/Toolchains/Uap/DevicePortalApiWrapper.cs It just covers deploying and starting application and handles authentication for both mobile...