Skip to content

Commit

Permalink
remove Avalonia Browser and update nuget versions
Browse files Browse the repository at this point in the history
  • Loading branch information
agailloty committed Jan 31, 2025
1 parent e911810 commit bfe1d72
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 179 deletions.
6 changes: 0 additions & 6 deletions xpathrunner.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xpathrunnerui", "xpathrunne
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xpathrunnerui.Desktop", "xpathrunnerui\xpathrunnerui.Desktop\xpathrunnerui.Desktop.csproj", "{5D984B3B-FAF0-4B02-BCD4-D2809826C08E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "xpathrunnerui.Browser", "xpathrunnerui\xpathrunnerui.Browser\xpathrunnerui.Browser.csproj", "{22994BE7-CF95-40F5-9AF7-03AE55A7FBE3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -29,10 +27,6 @@ Global
{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
{22994BE7-CF95-40F5-9AF7-03AE55A7FBE3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{22994BE7-CF95-40F5-9AF7-03AE55A7FBE3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{22994BE7-CF95-40F5-9AF7-03AE55A7FBE3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{22994BE7-CF95-40F5-9AF7-03AE55A7FBE3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
19 changes: 0 additions & 19 deletions xpathrunnerui/xpathrunnerui.Browser/Program.cs

This file was deleted.

This file was deleted.

13 changes: 0 additions & 13 deletions xpathrunnerui/xpathrunnerui.Browser/Properties/launchSettings.json

This file was deleted.

10 changes: 0 additions & 10 deletions xpathrunnerui/xpathrunnerui.Browser/runtimeconfig.template.json

This file was deleted.

58 changes: 0 additions & 58 deletions xpathrunnerui/xpathrunnerui.Browser/wwwroot/app.css

This file was deleted.

Binary file not shown.
36 changes: 0 additions & 36 deletions xpathrunnerui/xpathrunnerui.Browser/wwwroot/index.html

This file was deleted.

13 changes: 0 additions & 13 deletions xpathrunnerui/xpathrunnerui.Browser/wwwroot/main.js

This file was deleted.

15 changes: 0 additions & 15 deletions xpathrunnerui/xpathrunnerui.Browser/xpathrunnerui.Browser.csproj

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<!--If you are willing to use Windows/MacOS native APIs you will need to create 3 projects.
One for Windows with net8.0-windows TFM, one for MacOS with net8.0-macos and one with net8.0 TFM for Linux.-->
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<LangVersion>latest</LangVersion>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>

<PropertyGroup>
Expand Down
19 changes: 13 additions & 6 deletions xpathrunnerui/xpathrunnerui/xpathrunnerui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<LangVersion>latest</LangVersion>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
Expand All @@ -15,12 +17,17 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Avalonia" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia" Version="11.1.0"/>
<PackageReference Include="Avalonia.Desktop" Version="11.1.0"/>
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.0"/>
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.0"/>
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.61" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.1.0"/>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1"/>
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
</ItemGroup>

<ItemGroup>
<Folder Include="ViewModels\" />
</ItemGroup>
</Project>

0 comments on commit bfe1d72

Please sign in to comment.