Renamed Katteker.Gui to Katteker.UserInterface.
This commit is contained in:
@ -104,9 +104,9 @@
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Katteker.Gui\Katteker.Gui.csproj">
|
||||
<ProjectReference Include="..\Katteker.Gui\Katteker.UserInterface.csproj">
|
||||
<Project>{07e2de31-80a0-43da-b307-1ca47cd930a1}</Project>
|
||||
<Name>Katteker.Gui</Name>
|
||||
<Name>Katteker.UserInterface</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Katteker\Katteker.csproj">
|
||||
<Project>{a45e1c59-ba9e-452c-a5e2-50de49d53e92}</Project>
|
||||
|
@ -1,10 +1,10 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using System.Windows;
|
||||
using Katteker.Gui;
|
||||
|
||||
namespace Example
|
||||
{
|
||||
/// <inheritdoc cref="Window" />
|
||||
/// <summary>
|
||||
/// Interaction logic for MainWindow.xaml
|
||||
/// </summary>
|
||||
@ -21,12 +21,12 @@ namespace Example
|
||||
|
||||
private async void MainWindow_OnContentRendered(object sender, EventArgs e)
|
||||
{
|
||||
await Wrapper.CheckForUpdateAsync(true).ConfigureAwait(false);
|
||||
await Katteker.UserInterface.CheckForUpdateAsync(true).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
private async void ButtonBase_OnClick(object sender, RoutedEventArgs e)
|
||||
{
|
||||
await Wrapper.CheckForUpdateAsync().ConfigureAwait(false);
|
||||
await Katteker.UserInterface.CheckForUpdateAsync().ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user