This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////////////////////////////////////////////////////////////////// | |
// | |
// (C) Copyright Ion Gaztanaga 2005-2009. Distributed under the Boost | |
// Software License, Version 1.0. (See accompanying file | |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | |
// | |
// See http://www.boost.org/libs/interprocess for documentation. | |
// | |
////////////////////////////////////////////////////////////////////////////// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mscorlib.dll!System.Threading.WaitHandle.InternalWaitOne(System.Runtime.InteropServices.SafeHandle waitableSafeHandle, long millisecondsTimeout, bool hasThreadAffinity, bool exitContext) Unknown | |
mscorlib.dll!System.Threading.WaitHandle.WaitOne(int millisecondsTimeout, bool exitContext) Unknown | |
mscorlib.dll!System.Threading.WaitHandle.WaitOne() Unknown | |
TestStack.BDDfy.dll!TestStack.BDDfy.Scanners.StepScanners.StepActionFactory.Run(System.Func<object> func) Unknown | |
TestStack.BDDfy.dll!TestStack.BDDfy.Scanners.StepScanners.StepActionFactory.GetStepAction<BDDFYPackage_IntegrationTests.DebuggingTests>.AnonymousMethod__6(object o) Unknown | |
TestStack.BDDfy.dll!TestStack.BDDfy.Core.ExecutionStep.Execute(object testObject) Unknown | |
TestStack.BDDfy.dll!TestStack.BDDfy.Core.Scenario.ExecuteStep(TestStack.BDDfy.Core.ExecutionStep executionStep = {TestStack.BDDfy.Core.ExecutionStep}) Unknown | |
TestStack.BDDfy.dll!TestStack.BDDfy.Processors.TestRunner.Process(TestStack.BDDfy.Core.Story story) Unknown | |
TestStac |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MyUserControl{ | |
InitializeComponent(); | |
Loaded += delegate { StartAnimating(); }; | |
} | |
public double StrokeValue | |
{ | |
get { return (double)GetValue(StrokeValueProperty); } | |
set { SetValue(StrokeValueProperty, value); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Setter Property="StrokeDashArray" TargetName="MyRectangleWhichCouldBeACircleInYourCase" Value="{Binding ElementName=This,Path=AnimatedStrokeArray}" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----- | |
MainWindow.xaml.cs: | |
----- | |
class Person | |
{ | |
public int Age { get; set; } | |
} | |
/// <summary> | |
/// Interaction logic for MainWindow.xaml | |
/// </summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Stops keystrokes on a WPF Window or Adornment from propagating to the Visual Studio code editor. | |
/// | |
/// "The reason that keys like Backspace and Delete do not work in your WPF windows/Adornments is due to Visual Studio's usage of IOleComponentManager and IOleComponent. | |
/// Visual Studio and WinForms both use IOleComponent as a way of tracking the active component in the application. | |
/// | |
/// WPF does not implement IOleComponent or use the IOleComponentManager for its windows. This means that when your WPF window is active, Visual Studio doesn't know that its | |
/// primary component should not be processing command keybindings. Since "Backspace", "Delete", and several other keys are bound to commands for the text editor, | |
/// Visual Studio continues processing those keystrokes as command bindings." | |
/// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Obsolete("Not supported on VS2015, Use INavigationEngine implementation instead")] | |
internal static class LegacyGoToDefinitionEngine | |
{ | |
/// <summary> | |
/// If Visual Studio's recognizes the given member and knows where its source code is, goes to the source code. | |
/// Otherwise, opens the "Find Symbols" ToolWindow. | |
/// </summary> | |
public static void GoToMemberDefinition(string memberName, uint sreachOptions = (uint)_VSOBSEARCHOPTIONS.VSOBSO_LOOKINREFS) | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Managed to Native Transition] | |
> WindowsBase.dll!System.Windows.Threading.DispatcherSynchronizationContext.Wait(System.IntPtr[] waitHandles, bool waitAll, int millisecondsTimeout) Unknown | |
mscorlib.dll!System.Threading.SynchronizationContext.InvokeWaitMethodHelper(System.Threading.SynchronizationContext syncContext, System.IntPtr[] waitHandles, bool waitAll, int millisecondsTimeout) Unknown | |
[Native to Managed Transition] | |
[Managed to Native Transition] | |
mscorlib.dll!System.Threading.WaitHandle.WaitAny(System.Threading.WaitHandle[] waitHandles, int millisecondsTimeout, bool exitContext) Unknown | |
Microsoft.Build.dll!Microsoft.Build.BackEnd.RequestBuilder.WaitWithBuilderThreadStart(System.Threading.WaitHandle[] handles, bool recursive, Microsoft.Build.Execution.LegacyThreadingData threadingData, int submissionId) Unknown | |
Microsoft.Build.dll!Microsoft.Build.BackEnd.RequestBuilder.StartNewBuildRequests(Microsoft.Build.BackEnd.FullyQualifiedBuildRequest[] requests) Unknown | |
mscorlib.dll!System.Runtime |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<entry> | |
<record>580</record> | |
<time>2016/10/19 16:44:39.176</time> | |
<type>Error</type> | |
<source>Microsoft.VisualStudio.CommonIDE.ExtensibilityHosting.VsShellComponentModelHost</source> | |
<description>A MEF Component threw an exception at runtime: Microsoft.VisualStudio.ExtensibilityHosting.InvalidMEFCacheException: The Visual Studio component cache is out of date. Please restart Visual Studio.
 at Microsoft.VisualStudio.ExtensibilityHosting.FaultCatchingAssemblyLoader.<LoadAssembly>b__13_0(AssemblyName assemblyNameParam)
 at Microsoft.VisualStudio.ExtensibilityHosting.FaultCatchingAssemblyLoader.SafeGetOrAdd[TKey,TValue](IDictionary`2 dictionary, TKey key, Func`2 valueFactory)
 at Microsoft.VisualStudio.ExtensibilityHosting.FaultCatchingAssemblyLoader.LoadAssembly(AssemblyName assemblyName)
 at Microsoft.VisualStudio.Composition.Reflection.ResolverExtensions.GetManifest(Resolver resolver, AssemblyName assemblyName)
 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update && apt-get -y upgrade \ | |
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --fix-missing \ | |
git \ | |
procps \ | |
wget \ | |
curl \ | |
cmake \ | |
make \ | |
llvm \ | |
clang \ |