-
Notifications
You must be signed in to change notification settings - Fork 0
/
AI_Prompt_Editor.csproj
142 lines (132 loc) · 7.66 KB
/
AI_Prompt_Editor.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<SelfContained>true</SelfContained>
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
<Nullable>enable</Nullable>
<UseAppHost>true</UseAppHost>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>AI_Prompt_Editor.ico</ApplicationIcon>
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
<Configurations>Debug;Release;Debug64</Configurations>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyName>AI Prompt Editor</AssemblyName>
<RootNameSpace>AI_Prompt_Editor</RootNameSpace>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<OutputType>WinExe</OutputType>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
<AvaloniaXaml Remove="Helper\**" />
<Compile Remove="Helper\**" />
<EmbeddedResource Remove="Helper\**" />
<None Remove="Helper\**" />
<None Remove=".gitignore" />
<AvaloniaResource Include="supabaseConfig.json" />
<AvaloniaResource Include="appsettings.json" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\AI_Prompt_Editor.ico" />
<Content Include="AI_Prompt_Editor.ico" />
</ItemGroup>
<ItemGroup>
<TrimmerRootDescriptor Include="Roots.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.49" />
<PackageReference Include="Microsoft.DeepDev.TokenizerLib" Version="1.3.2" />
<PackageReference Include="ReverseMarkdown" Version="3.25.0" />
<PackageReference Include="supabase-csharp" Version="0.12.1" />
<PackageReference Include="System.Data.SQLite" Version="1.0.118" />
</ItemGroup>
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
<PackageReference Include="Avalonia" Version="11.0.0" />
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.0" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0" />
<!-- Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration. -->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0" />
<PackageReference Include="Avalonia.Diagnostics" Condition="'$(Configuration)'=='Debug64'" Version="11.0.0">
</PackageReference>
<PackageReference Include="Avalonia.Xaml.Interactivity" Version="11.0.0.1" />
<PackageReference Include="CefGlue.Avalonia" Version="106.5249.19-avalonia11" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.0" />
<PackageReference Include="DialogHost.Avalonia" Version="0.7.5" />
<PackageReference Include="FluentAvaloniaUI" Version="2.0.0" />
<AvaloniaXaml Remove="src\Views\Mac\**" />
<Compile Remove="src\Views\Mac\**" />
<EmbeddedResource Remove="src\Views\Mac\**" />
<Compile Remove="src\Views\Mac\*.cs" />
<AvaloniaXaml Remove="src\AppMac.axaml" />
<Compile Remove="src\AppMac.axaml.cs" />
</ItemGroup>
<ItemGroup Condition="'$(OS)' != 'Windows_NT'">
<PackageReference Include="Avalonia" Version="11.0.0-preview6" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.0-preview6" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.0.0-preview6" />
<PackageReference Include="Avalonia.Diagnostics" Condition="'$(Configuration)'=='Debug64'" Version="11.0.0-preview6">
</PackageReference>
<PackageReference Include="Avalonia.Xaml.Interactivity" Version="11.0.0-preview6" />
<PackageReference Include="CefGlue.Avalonia" Version="106.5249.7-avalonia11" />
<PackageReference Include="DialogHost.Avalonia" Version="0.7.3" />
<PackageReference Include="FluentAvaloniaUI" Version="2.0.0-preview6fork2" />
<Compile Remove="src\Views\Windows\Options\HotKeyDisplayView.axaml.cs" />
<Compile Remove="src\Views\Windows\Options\ApiSettingsView.axaml.cs" />
<Compile Remove="src\Views\Windows\Options\AppSettingsView.axaml.cs" />
<Compile Remove="src\Views\Windows\Options\LicenseView.axaml.cs" />
<Compile Remove="src\Views\Windows\Options\WebAppView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\Editor4AvalonEditView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\EditorView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\Editor2AvalonEditView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\EditorFiveView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\Editor3_2AvalonEditView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\EditorThreeView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\Editor4TextBoxView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\EditorOneView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\Editor3_2TextBoxView.axaml.cs" />
<Compile Remove="src\Views\Windows\Editors\Editor2TextBoxView.axaml.cs" />
<AvaloniaXaml Remove="src\Views\Windows\DataGridView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\OptionSettingsView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\MainView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Options\LicenseView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Options\AppSettingsView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Options\ApiSettingsView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Options\HotKeyDisplayView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Options\WebAppView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\EditorView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\Editor4TextBoxView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\EditorOneView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\EditorThreeView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\Editor2AvalonEditView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\Editor3_2AvalonEditView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\EditorFiveView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\Editor4AvalonEditView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\Editor2TextBoxView.axaml" />
<AvaloniaXaml Remove="src\Views\Windows\Editors\Editor3_2TextBoxView.axaml" />
<Compile Remove="src\Views\Windows\DataGridView.axaml.cs" />
<Compile Remove="src\Views\Windows\MainView.axaml.cs" />
<Compile Remove="src\Views\Windows\OptionSettingsView.axaml.cs" />
<AvaloniaXaml Remove="src\AppWindows.axaml" />
<Compile Remove="src\AppWindows.axaml.cs" />
<AvaloniaResource Remove="Assets\StylesWindows.axaml" />
<AvaloniaXaml Remove="Assets\StylesWindows.axaml" />
<Compile Remove="src\Views\Class\DocumentTextBindingBehavior.cs" />
<Compile Remove="src\Views\Class\ElementGenerator.cs" />
</ItemGroup>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<DefineConstants>WINDOWS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<DefineConstants>MAC</DefineConstants>
</PropertyGroup>
</Project>