-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDMINLauncher.csproj
More file actions
57 lines (48 loc) · 1.77 KB
/
Copy pathDMINLauncher.csproj
File metadata and controls
57 lines (48 loc) · 1.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<RootNamespace>DMINLauncher</RootNamespace>
<AssemblyName>DMINLauncher</AssemblyName>
<!-- Version Information -->
<Version>1.4.0</Version>
<AssemblyVersion>1.4.0</AssemblyVersion>
<FileVersion>1.4.0</FileVersion>
<InformationalVersion>1.4.0</InformationalVersion>
<!-- Application Icon -->
<ApplicationIcon>Assets\doom.ico</ApplicationIcon>
<!-- Self-contained deployment settings -->
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>false</PublishTrimmed>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
<AvaloniaResource Include="Styles\**" />
</ItemGroup>
<ItemGroup>
<AvaloniaXaml Remove="Styles\CompactNumericUpDown.axaml" />
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\release.yml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.0.10" />
<PackageReference Include="Avalonia.Desktop" Version="11.0.10" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.10" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.10" />
<PackageReference Include="Avalonia.ReactiveUI" Version="11.0.10" />
<PackageReference Include="Open.NAT" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<None Update="Assets\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>