-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIconPull.csproj
More file actions
44 lines (37 loc) · 1.52 KB
/
Copy pathIconPull.csproj
File metadata and controls
44 lines (37 loc) · 1.52 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Assets\icon.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(SelfContained)' != 'true'">
<DefineConstants>$(DefineConstants);FRAMEWORK_DEPENDENT_BUILD</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugType>none</DebugType>
<CopyOutputSymbolsToPublishDirectory>false</CopyOutputSymbolsToPublishDirectory>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="12.0.5" />
<PackageReference Include="Avalonia.Desktop" Version="12.0.5" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="12.0.5" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="12.0.5" />
</ItemGroup>
<Target Name="ExcludePdbsFromPublish" AfterTargets="Publish">
<ItemGroup>
<_PublishedPdbs Include="$(PublishDir)**\*.pdb" />
</ItemGroup>
<Delete Files="@(_PublishedPdbs)" />
</Target>
</Project>