-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTmCGPTD.csproj
85 lines (85 loc) · 4.38 KB
/
TmCGPTD.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<SelfContained>true</SelfContained>
<RuntimeIdentifiers>win-x64;osx-x64;osx-arm64;linux-x64</RuntimeIdentifiers>
<Nullable>enable</Nullable>
<UseAppHost>true</UseAppHost>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>TmCGPTD.ico</ApplicationIcon>
<NSPrincipalClass>NSApplication</NSPrincipalClass>
<NSHighResolutionCapable>true</NSHighResolutionCapable>
<Configurations>Debug;Release;Debug64</Configurations>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyName>TmCGPTD</AssemblyName>
<RootNameSpace>TmCGPTD</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\TmCGPTD.ico" />
<Content Include="TmCGPTD.ico" />
</ItemGroup>
<ItemGroup>
<TrimmerRootDescriptor Include="Roots.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="CsvHelper" Version="31.0.2" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.59" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0-preview.1.24081.2" />
<PackageReference Include="Microsoft.DeepDev.TokenizerLib" Version="1.3.3" />
<PackageReference Include="ReverseMarkdown" Version="4.3.0" />
<PackageReference Include="supabase-csharp" Version="0.15.0" />
<PackageReference Include="Avalonia" Version="11.0.10" />
<PackageReference Include="Avalonia.AvaloniaEdit" Version="11.0.6" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
<!-- 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.10" />
<PackageReference Include="Avalonia.Diagnostics" Condition="'$(Configuration)'=='Debug64'" Version="11.0.6" />
<PackageReference Include="Avalonia.Xaml.Interactivity" Version="11.0.10" />
<PackageReference Include="CefGlue.Avalonia.ARM64" Version="117.5938.2-avalonia11" Condition="'$(RuntimeIdentifier)' == 'osx-arm64'" />
<PackageReference Include="CefGlue.Avalonia" Version="117.5938.2-avalonia11" Condition="'$(RuntimeIdentifier)' != 'osx-arm64'" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="11.0.6" />
<PackageReference Include="DialogHost.Avalonia" Version="0.7.7" />
<PackageReference Include="FluentAvaloniaUI" Version="2.0.5" />
</ItemGroup>
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
<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>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<DefineConstants>WINDOWS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<DefineConstants>MAC</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
<PackageSuffix>-ARM64</PackageSuffix>
<CefGluePackageSuffix>.ARM64</CefGluePackageSuffix>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsOSPlatform('OSX'))">
<CefGlueTargetPlatform>osx-arm64</CefGlueTargetPlatform>
</PropertyGroup>
</Project>