Skip to content

Commit

Permalink
Keep only Desktop UI project
Browse files Browse the repository at this point in the history
  • Loading branch information
agailloty committed Feb 1, 2025
1 parent 733095e commit f853191
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 53 deletions.
6 changes: 0 additions & 6 deletions xpathrunner.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "xpathrunner", "xpathrunner\
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xpathrunnerui", "xpathrunnerui\xpathrunnerui\xpathrunnerui.csproj", "{4A6A3B53-39EB-4EC3-A721-86A90A7BC263}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xpathrunnerui.Desktop", "xpathrunnerui\xpathrunnerui.Desktop\xpathrunnerui.Desktop.csproj", "{5D984B3B-FAF0-4B02-BCD4-D2809826C08E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -23,10 +21,6 @@ Global
{4A6A3B53-39EB-4EC3-A721-86A90A7BC263}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4A6A3B53-39EB-4EC3-A721-86A90A7BC263}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4A6A3B53-39EB-4EC3-A721-86A90A7BC263}.Release|Any CPU.Build.0 = Release|Any CPU
{5D984B3B-FAF0-4B02-BCD4-D2809826C08E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D984B3B-FAF0-4B02-BCD4-D2809826C08E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D984B3B-FAF0-4B02-BCD4-D2809826C08E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D984B3B-FAF0-4B02-BCD4-D2809826C08E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
18 changes: 0 additions & 18 deletions xpathrunnerui/xpathrunnerui.Desktop/app.manifest

This file was deleted.

25 changes: 0 additions & 25 deletions xpathrunnerui/xpathrunnerui.Desktop/xpathrunnerui.Desktop.csproj

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,27 @@

using Avalonia;

namespace xpathrunnerui.Desktop
namespace xpathrunnerui
{
internal sealed class Program
{
// Initialization code. Don't use any Avalonia, third-party APIs or any
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
// yet and stuff might break.
[STAThread]
public static void Main(string[] args) => BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
public static void Main(string[] args)
{
BuildAvaloniaApp()
.StartWithClassicDesktopLifetime(args);
}

// Avalonia configuration, don't remove; also used by visual designer.
public static AppBuilder BuildAvaloniaApp()
=> AppBuilder.Configure<App>()
{
return AppBuilder.Configure<App>()
.UsePlatformDetect()
.WithInterFont()
.LogToTrace();
}
}
}
1 change: 1 addition & 0 deletions xpathrunnerui/xpathrunnerui/xpathrunnerui.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
Expand Down

0 comments on commit f853191

Please sign in to comment.