Denis Kuzmin
Denis Kuzmin
MS drops support of the `ProjectGuid` in their projects files. Means that some project files may not provide this at all. And as a result, it cannot guarantee a uniqueness...
The bug was described here: https://github.com/3F/DllExport/issues/56 For example, the following definition below should cause a problem as for #1: ```xml netcoreapp2.0 ``` ``` The default XML namespace of the project...
This question has been raised a very long time. As I already [mentioned](https://twitter.com/GitHub3F/status/1184170248532119552): > Modern #MSBuild assemblies are much more closely integrated with #VisualStudio and much more difficult to maintain...
yes, again... https://social.msdn.microsoft.com/Forums/en-US/2badfe39-1321-4ec4-9cc8-74bf4efd39b3/ ```csharp // InvalidProjectFileException:"D:\Microsoft.Cpp.Default.props" - yes, because $(VCTargetsPath) is not defined. new Project("Sample.vcxproj", new Dictionary(), null); // OK, because I also have 14.0 new Project("Sample.vcxproj", new Dictionary(), "14.0");...
``` net.r_eg.MvsSln.EnvDTE ``` Scheduled for removal in future major releases! These features were added together with features from DllExport project when it was based on PowerShell scripts in the past...
`sln.Result` is a legacy from vssbe, no, mainly from its transferring from that projects. In fact, we're using MvsSln through empty [Sln](https://github.com/3F/MvsSln/blob/master/MvsSln/Sln.cs) class. That is, only as wrapper over initial...
Currently we're using some abstraction for enumeration of parsed items (projects, folders, dependencies, all others or most of this). But **v2** provides now analyzed map for some user modifications. ###...
copy/paste from my old reply for John via email (07.02.2019). Just for future questions. Enjoy. > ... > The build of u-boot really depends on specific board. Some manufacturer even...
## ~v1 - Same char to escape~ * `1024*2` -> `10247412` * `1024**2` -> `1024*2` * `1024***2` -> `1024*0xD2` * `one|two` -> `one` or `two` * `one||two` -> `one|two` *...
To use additional syntax, we can add special markers & flags The entry point like: * Single: `@x ...` * Pair: `@x ... @` Where `x` the any supported combination,...