-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPleasantUI.Example.Desktop.csproj
More file actions
39 lines (35 loc) · 1.8 KB
/
Copy pathPleasantUI.Example.Desktop.csproj
File metadata and controls
39 lines (35 loc) · 1.8 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<PublishTrimmed>true</PublishTrimmed>
<PublishAot>true</PublishAot>
<Company>Dmitry Zhutkov (Onebeld)</Company>
<ApplicationIcon>PleasantUIIcon.ico</ApplicationIcon>
<IncludeAvaloniaGenerators>true</IncludeAvaloniaGenerators>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DebugType>embedded</DebugType>
<IncludeSymbolsInSingleFile>true</IncludeSymbolsInSingleFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="12.0.0" />
<PackageReference Include="Avalonia.Desktop" Version="12.0.0" />
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="AvaloniaUI.DiagnosticsSupport" Version="2.2.0" />
<PackageReference Include="Microsoft.DotNet.ILCompiler" Version="9.0.8" />
<PackageReference Include="HotAvalonia" Version="3.*" PrivateAssets="All" Publish="True" />
<PackageReference Include="MonoMod.RuntimeDetour" Version="*" PrivateAssets="All" />
<PackageReference Include="Avalonia.Markup.Xaml.Loader" Version="12.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="PleasantUIIcon.ico" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\PleasantUI.DataGrid\PleasantUI.DataGrid.csproj" />
<ProjectReference Include="..\PleasantUI.Example\PleasantUI.Example.csproj" />
</ItemGroup>
</Project>