Skip to content

Instantly share code, notes, and snippets.

View grokys's full-sized avatar

Steven Kirk grokys

View GitHub Profile
Layout: Avalonia.Controls.Presenters.ContentPresenter Invalidated measure
Layout: Avalonia.Layout.LayoutManager Started layout pass. To measure: 1 To arrange: 1
Layout: Avalonia.Controls.TextBlock Measure requested "36, 16"
Layout: Avalonia.Controls.Presenters.ContentPresenter Measure requested "36, 16"
Layout: Avalonia.Controls.Grid Invalidated measure
Layout: Avalonia.Controls.Grid Measure requested "58, 42"
Layout: Avalonia.Controls.Border Invalidated measure
Layout: Avalonia.Controls.Border Measure requested "58, 42"
Layout: Avalonia.Controls.Expander Invalidated measure
Layout: Avalonia.Controls.Expander Measure requested "58, 42"
diff --git a/Avalonia.sln b/Avalonia.sln
index 3ed931933..cf440972b 100644
--- a/Avalonia.sln
+++ b/Avalonia.sln
@@ -1,4 +1,5 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
+
+Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
1>------ Build started: Project: _build, Configuration: Debug Any CPU ------
2>------ Build started: Project: Avalonia.DesktopRuntime, Configuration: Debug Any CPU ------
3>------ Build started: Project: Avalonia.Interactivity.UnitTests, Configuration: Debug Any CPU ------
4>------ Build started: Project: Avalonia.UnitTests, Configuration: Debug Any CPU ------
5>------ Build started: Project: Avalonia, Configuration: Debug Any CPU ------
6>------ Build started: Project: Avalonia.DesignerSupport.Tests, Configuration: Debug Any CPU ------
7>------ Build started: Project: Avalonia.Designer.HostApp, Configuration: Debug Any CPU ------
1>_build -> D:\projects\AvaloniaUI\Avalonia\nukebuild\bin\Debug\_build.dll
5>CSC : error CS0006: Metadata file 'D:\projects\AvaloniaUI\Avalonia\src\Avalonia.DesktopRuntime\bin\Debug\netcoreapp2.0\Avalonia.DesktopRuntime.dll' could not be found
5>Done building project "Avalonia.csproj" -- FAILED.
<Window x:Class="WpfApp1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp1"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
mc:Ignorable="d" Title="MainWindow" Height="450" Width="800">
<Window.Resources>
<StreamGeometry x:Key="Acorn">
<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<UserControl.Resources>
<StreamGeometry x:Key="Acorn">
F1 M 16.6309,18.6563C 17.1309,
8.15625 29.8809,14.1563 29.8809,
14.1563C 30.8809,11.1563 34.1308,
11.4063 34.1308,11.4063C 33.5,12
34.6309,13.1563 34.6309,13.1563C
32.1309,13.1562 31.1309,14.9062
Clipboard.SetText(link);
var ns = ServiceProvider.TryGetService<IStatusBarNotificationService>();
ns?.ShowMessage(Resources.LinkCopiedToClipboardMessage);
await UsageTracker.IncrementCounter(x => x.NumberOfLinkToGitHub);
Designer process crashed
Launching designer process:
C:\USERS\GROKYS\APPDATA\LOCAL\MICROSOFT\VISUALSTUDIO\15.0_60FFEC9A\EXTENSIONS\zfsk4yw0.ctj\lib\Avalonia.Designer.HostApp.exe --transport tcp-bson://127.0.0.1:58626/ --session-id 41c6b3ef-a0d1-44fc-b539-3ba60c91b264 --method win32 "D:\projects\AvaloniaUI\Avalonia\samples\ControlCatalog.Desktop\bin\Debug\ControlCatalog.Desktop.exe"
from directory D:\projects\AvaloniaUI\Avalonia\samples\ControlCatalog.Desktop\bin\Debug
Loading D:\projects\AvaloniaUI\Avalonia\samples\ControlCatalog.Desktop\bin\Debug\Avalonia.Animation.dll
Loading D:\projects\AvaloniaUI\Avalonia\samples\ControlCatalog.Desktop\bin\Debug\Avalonia.Base.dll
Loading D:\projects\AvaloniaUI\Avalonia\samples\ControlCatalog.Desktop\bin\Debug\Avalonia.Controls.dll
Loading D:\projects\AvaloniaUI\Avalonia\samples\ControlCatalog.Desktop\bin\Debug\Avalonia.DesignerSupport.dll
Loading D:\projects\AvaloniaUI\Avalonia\samples\ControlCatalog.Desktop\bin\Debug\Avalonia.Diagnostics.dll
Loading D:\projects\Avalonia
// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Linq;
using Avalonia.Logging;
using Avalonia.Threading;
namespace Avalonia.Layout
// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System.Reactive.Subjects;
using System.Windows.Input;
using Avalonia.Controls;
using Avalonia.Input;
using Avalonia.UnitTests;
using Xunit;
public Task<Tuple<string, string>> Load(HostAddress hostAddress)
{
Guard.ArgumentNotNull(hostAddress, nameof(hostAddress));
var keyGit = GetKeyGit(hostAddress.CredentialCacheKeyHost);
var keyHost = GetKeyHost(hostAddress.CredentialCacheKeyHost);
var gitFound = false;
var hostFound = false;
Tuple<string, string> result = null;