drewnoakes on master
Typos Clarify content Remove VS2015 docs VS2015 is n… and 2 more (compare)
drewnoakes on master
Install MSBuild and rules files… Merge pull request #255 from zi… (compare)
drewnoakes on master
Update docs on adding rules Up… Update documentation on extendi… Merge pull request #344 from tm… (compare)
drewnoakes on drewnoakes-patch-1
drewnoakes on master
Fix markdown formatting - Head… Merge pull request #346 from mi… (compare)
UnconfiguredProject
, or do we have to fall back on IVsHierarchy
?UnconfiguredProject
is tied to IVsProject
, which I know is not available from an unloaded IVsHierarchy
.
I'm updating my extension to VS 2019 preview, I seeing this exception
System.MissingMethodException: Method not found: 'Microsoft.VisualStudio.ProjectSystem.IProjectServices Microsoft.VisualStudio.ProjectSystem.IProjectService.get_Services()'.
at IceBuilder.ProjectHelper.<WithProjectAsync>d__2`1.MoveNext()
at System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1.Start[TStateMachine](TStateMachine& stateMachine)
at IceBuilder.ProjectHelper.WithProjectAsync[T](UnconfiguredProject unconfiguredProject, Func`2 func)
I'm building my extension with Microsoft.VisualStudio.ProjectSystem 15.8.243
Hi. Is there a way to retrieve an individual value from an item definition metadata?
(i.e. ClCompile.PreprocessorDefinitions)
I have this in an MSBuild task:
<Message Text="=> PreprocessorDefinitions [@(CLCompile->Metadata('PreprocessorDefinitions')->Distinct())]" />
It yields a semicolon-separated list of values (a;b;c;d=1;e=2)
How can I obtain a plain a
or d=1
?
I have Visual Studio Isolated Shell applicaton, I have hosted one Windows Form View on Factory.
The Windows form having Grid control and Property Grid.
Problem is when user clicks on the Property Grid and do Shift+Alt+Enter then window maximize but the same not working on
GridView ?
I tried to handle the KeyDown event as below
private void dataGridView1D_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter && e.Modifiers == (Keys.Shift | Keys.Alt))
{
e.Handled = true;
return;
}
base.OnKeyDown(e);
}
the condition never calls.