renamed project to more sensible name
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<Application xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
x:Class="Finder2eFoundryConverterCS.App"
|
||||
xmlns:local="using:Finder2eFoundryConverterCS"
|
||||
x:Class="finder2e_foundry_converter.App"
|
||||
xmlns:local="using:finder2e_foundry_converter"
|
||||
RequestedThemeVariant="Default">
|
||||
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||||
|
||||
|
||||
+3
-3
@@ -4,10 +4,10 @@ using Avalonia.Data.Core;
|
||||
using Avalonia.Data.Core.Plugins;
|
||||
using System.Linq;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Finder2eFoundryConverterCS.ViewModels;
|
||||
using Finder2eFoundryConverterCS.Views;
|
||||
using finder2e_foundry_converter.ViewModels;
|
||||
using finder2e_foundry_converter.Views;
|
||||
|
||||
namespace Finder2eFoundryConverterCS;
|
||||
namespace finder2e_foundry_converter;
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using Avalonia.Media.Imaging;
|
||||
|
||||
namespace Finder2eFoundryConverterCS.Models
|
||||
namespace finder2e_foundry_converter.Models
|
||||
{
|
||||
public class ImageItem
|
||||
{
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
using Avalonia;
|
||||
using System;
|
||||
|
||||
namespace Finder2eFoundryConverterCS;
|
||||
namespace finder2e_foundry_converter;
|
||||
|
||||
sealed class Program
|
||||
{
|
||||
|
||||
@@ -6,7 +6,7 @@ using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Finder2eFoundryConverterCS.Services
|
||||
namespace finder2e_foundry_converter.Services
|
||||
{
|
||||
public class LlmService
|
||||
{
|
||||
|
||||
+2
-2
@@ -2,9 +2,9 @@ using System;
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Controls.Templates;
|
||||
using Finder2eFoundryConverterCS.ViewModels;
|
||||
using finder2e_foundry_converter.ViewModels;
|
||||
|
||||
namespace Finder2eFoundryConverterCS;
|
||||
namespace finder2e_foundry_converter;
|
||||
|
||||
[RequiresUnreferencedCode(
|
||||
"Default implementation of ViewLocator involves reflection which may be trimmed away.",
|
||||
|
||||
@@ -7,10 +7,10 @@ using System.Windows.Input;
|
||||
using Avalonia.Media.Imaging;
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
using CommunityToolkit.Mvvm.Input;
|
||||
using Finder2eFoundryConverterCS.Models;
|
||||
using Finder2eFoundryConverterCS.Services;
|
||||
using finder2e_foundry_converter.Models;
|
||||
using finder2e_foundry_converter.Services;
|
||||
|
||||
namespace Finder2eFoundryConverterCS.ViewModels
|
||||
namespace finder2e_foundry_converter.ViewModels
|
||||
{
|
||||
public partial class MainWindowViewModel : ViewModelBase
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using CommunityToolkit.Mvvm.ComponentModel;
|
||||
|
||||
namespace Finder2eFoundryConverterCS.ViewModels;
|
||||
namespace finder2e_foundry_converter.ViewModels;
|
||||
|
||||
public abstract class ViewModelBase : ObservableObject
|
||||
{
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:vm="using:Finder2eFoundryConverterCS.ViewModels"
|
||||
xmlns:vm="using:finder2e_foundry_converter.ViewModels"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="500" d:DesignHeight="600"
|
||||
x:Class="Finder2eFoundryConverterCS.Views.MainWindow"
|
||||
x:Class="finder2e_foundry_converter.Views.MainWindow"
|
||||
x:DataType="vm:MainWindowViewModel"
|
||||
Icon="/Assets/avalonia-logo.ico"
|
||||
Title="Finder2e Foundry Converter"
|
||||
|
||||
@@ -9,9 +9,9 @@ using Avalonia.Input.Platform;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Platform.Storage;
|
||||
using Avalonia.Media.Imaging;
|
||||
using Finder2eFoundryConverterCS.ViewModels;
|
||||
using finder2e_foundry_converter.ViewModels;
|
||||
|
||||
namespace Finder2eFoundryConverterCS.Views
|
||||
namespace finder2e_foundry_converter.Views
|
||||
{
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user