Browse Source
docs: Document this.AttachDevTools() generation (#36)
* docs: Document this.AttachDevTools() generation
* Update version.json
pull/10407/head
0.5.1
Artyom V. Gorchakov
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
1 deletions
-
README.md
-
version.json
|
|
|
@ -171,6 +171,11 @@ namespace Sample.App |
|
|
|
AvaloniaXamlLoader.Load(this); |
|
|
|
} |
|
|
|
|
|
|
|
#if DEBUG |
|
|
|
// This will be added only if you install Avalonia.Diagnostics. |
|
|
|
this.AttachDevTools(); |
|
|
|
#endif |
|
|
|
|
|
|
|
UserNameTextBox = this.FindControl<global::Avalonia.NameGenerator.Sandbox.Controls.CustomTextBox>("UserNameTextBox"); |
|
|
|
UserNameValidation = this.FindControl<global::Avalonia.Controls.TextBlock>("UserNameValidation"); |
|
|
|
PasswordTextBox = this.FindControl<global::Avalonia.Controls.TextBox>("PasswordTextBox"); |
|
|
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
{ |
|
|
|
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", |
|
|
|
"version": "0.4", |
|
|
|
"version": "0.5", |
|
|
|
"assemblyVersion": { |
|
|
|
"precision": "revision" |
|
|
|
}, |
|
|
|
|