Skip to content

Instantly share code, notes, and snippets.

View jacksonh's full-sized avatar
🎯
Focusing

Jackson Harper jacksonh

🎯
Focusing
View GitHub Profile
Unhandled Exception: System.Threading.ThreadAbortException: Thread was being aborted
at (wrapper managed-to-native) System.Threading.WaitHandle:WaitOne_internal (System.Threading.WaitHandle*,intptr,int,bool)
at System.Threading.WaitHandle.WaitOne () [0x00015] in WaitHandle.cs:326
at System.Windows.Threading.DispatcherExtensions.Invoke (System.Windows.Threading.Dispatcher thisObject, System.Delegate d, System.Object[] args) [0x00000] in <filename unknown>:0
at System.Windows.Threading.DispatcherExtensions.Invoke (System.Windows.Threading.Dispatcher thisObject, DispatcherPriority priority, System.Delegate method, System.Object[] args) [0x00000] in <filename unknown>:0
at Microsoft.Pivot.Internal.Model.Query.AsyncCollectionDownloader.StartLoadingInBackground () [0x00000] in <filename unknown>:0
at Microsoft.Pivot.Internal.Model.Query.AsyncCollectionDownloader.<.ctor>b__0 (System.Object unused) [0x00000] in <filename unknown>:0
at System.Threading.ThreadPool+<MoonlightHandler>c__AnonStorey8.<>m
diff --git a/src/deployment.h b/src/deployment.h
index 98adaf2..7619905 100644
--- a/src/deployment.h
+++ b/src/deployment.h
@@ -435,6 +435,8 @@ protected:
virtual ~Deployment ();
private:
+
+public:
../build/executable.make:134: warning: ignoring old commands for target `csproj-local'
MCS [basic] gmcs.exe
* Assertion at marshal.c:4131, condition `method' not met
Stacktrace:
at (wrapper managed-to-native) System.MonoCustomAttrs.GetCustomAttributesDataInternal (System.Reflection.ICustomAttributeProvider) <0x00049>
at (wrapper managed-to-native) System.MonoCustomAttrs.GetCustomAttributesDataInternal (System.Reflection.ICustomAttributeProvider) <0x00049>
at System.MonoCustomAttrs.GetCustomAttributesData (System.Reflection.ICustomAttributeProvider) <0x0001b>
at System.Reflection.CustomAttributeData.GetCustomAttributes (System.Reflection.Assembly) <0x0000f>
diff --git a/class/tuning/SecurityAttributes/automatic/System.auto.ssc b/class/tuning/SecurityAttributes/automatic/System.auto.ssc
index 801837d..3aea142 100644
--- a/class/tuning/SecurityAttributes/automatic/System.auto.ssc
+++ b/class/tuning/SecurityAttributes/automatic/System.auto.ssc
@@ -1,15 +1,12 @@
# [SecuritySafeCritical] needed inside System to call all [SecurityCritical] methods
-# 12 methods
+# 9 methods
+SSC-M: System.Net.Authorization Mono.Http.NtlmClient::Authenticate(System.String,System.Net.WebRequest,System.Net.ICredentials)
diff --git a/src/deployment.h b/src/deployment.h
index c433e32..1effdc4 100644
--- a/src/deployment.h
+++ b/src/deployment.h
@@ -261,7 +261,7 @@ public:
const static int ExternalPartsProperty;
/* @PropertyType=OutOfBrowserSettings,ManagedSetterAccess=Internal,GenerateAccessors,Validator=OnlyDuringInitializationValidator */
const static int OutOfBrowserSettingsProperty;
- /* @PropertyType=AssemblyPartCollection,ManagedSetterAccess=Internal,GenerateAccessors,Validator=OnlyDuringInitializationValidator */
+ /* @PropertyType=AssemblyPartCollection,AutoCreateValue,ManagedSetterAccess=Internal,GenerateAccessors,Validator=OnlyDuringInitializationValidator */
diff --git a/class/System.Windows/Mono/Value.cs b/class/System.Windows/Mono/Value.cs
index 6afea49..9dede04 100644
--- a/class/System.Windows/Mono/Value.cs
+++ b/class/System.Windows/Mono/Value.cs
@@ -333,7 +333,7 @@ namespace Mono {
return new PropertyPath (null);
if (propertypath->property != IntPtr.Zero)
return null;
- return new PropertyPath (Marshal.PtrToStringAuto (propertypath->pathString));
+ return new PropertyPath (Marshal.PtrToStringAuto (propertypath->pathString), Marshal.PtrToStringAuto (propertypath->expandedPathString));
CreateAsyncTest (c,
() => Assert.VisualChildren (c, "#1",
new VisualNode<Grid> ("#a",
new VisualNode<ContentPresenter> ("#b",
new VisualNode<Rectangle> ("#c")
)
)
),
() => {
c.Content = new Rectangle ();
[TestMethod]
[Asynchronous]
public void ChangeContentChangesTemplate ()
{
ContentControl c = (ContentControl) XamlReader.Load (@"
<ContentControl xmlns=""http://schemas.microsoft.com/client/2007"" xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml"">
<ContentControl.Template>
<ControlTemplate>
<Grid>
<ContentPresenter />
*** NSPlugin Viewer *** WARNING:(/usr/src/packages/BUILD/nspluginwrapper-1.3.0/src/npw-viewer.c:1291):invoke_NPN_InvalidateRect: assertion failed: (rpc_method_invoke_possible(g_rpc_connection))
*** NSPlugin Viewer *** WARNING:(/usr/src/packages/BUILD/nspluginwrapper-1.3.0/src/npw-viewer.c:1136):invoke_NPN_GetValue: assertion failed: (rpc_method_invoke_possible(g_rpc_connection))
diff --git a/class/System.Windows/Mono.Xaml/XamlParser.cs b/class/System.Windows/Mono.Xaml/XamlParser.cs
index ded7b4d..101c476 100644
--- a/class/System.Windows/Mono.Xaml/XamlParser.cs
+++ b/class/System.Windows/Mono.Xaml/XamlParser.cs
@@ -383,6 +383,11 @@ namespace Mono.Xaml {
XamlObjectElement element = new XamlObjectElement (this, reader.LocalName, t, o);
+ if (reader.LocalName == "FilterPaneViewModel") {
+ PropertyInfo p = t.GetProperty ("ClearAllFiltersCommand");