-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCubaseDrumMapEditor.csproj
More file actions
37 lines (37 loc) · 1.74 KB
/
Copy pathCubaseDrumMapEditor.csproj
File metadata and controls
37 lines (37 loc) · 1.74 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<Version>1.5.0</Version>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifiers>win-x64;osx-arm64;osx-x64</RuntimeIdentifiers>
<UseAppHost>true</UseAppHost>
<ApplicationIcon>Assets\avalonia-logo.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'">
<OutputType>WinExe</OutputType>
</PropertyGroup>
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<OutputType>Exe</OutputType>
</PropertyGroup>
<ItemGroup>
<AvaloniaResource Include="Assets\**" />
</ItemGroup>
<ItemGroup>
<None Remove="avalonia-logo.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="11.3.7" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.7" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.7" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.7" />
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.3.0.6" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="CsvHelper" Version="33.1.0" />
<!-- Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration. -->
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.3.7" />
<PackageReference Include="FluentAvaloniaUI" Version="2.4.0" />
</ItemGroup>
</Project>