-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashComputer.csproj
More file actions
49 lines (45 loc) · 1.84 KB
/
Copy pathHashComputer.csproj
File metadata and controls
49 lines (45 loc) · 1.84 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
<AssemblyName>HashComputer.Frontend</AssemblyName>
<ApplicationIcon>icon.ico</ApplicationIcon>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<None Remove="computed_stables.txt" />
<None Remove="hasher.png" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="hasher.png" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="icon.ico" />
</ItemGroup>
<ItemGroup>
<Content Include="computed_stables.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" />
<PackageReference Include="Avalonia.Desktop" />
<PackageReference Include="Avalonia.Themes.Fluent" />
<PackageReference Include="Avalonia.Fonts.Inter" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" />
<PackageReference Include="Hypocrite.Fody">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; compile; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Hypocrite.Services.Avalonia" />
<PackageReference Include="log4net" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HashComputer.Backend\HashComputer.Backend.csproj" />
<ProjectReference Include="..\HashComputer.Cli\HashComputer.Cli.csproj" />
</ItemGroup>
</Project>