forked from BAndysc/WoWDatabaseEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAvaloniaStyles.csproj
34 lines (32 loc) · 1.45 KB
/
AvaloniaStyles.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<RuntimeIdentifiers>win8-x64;osx-x64;linux-x64;osx-arm64;win-x64</RuntimeIdentifiers>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU</Platforms>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<SelfContained>false</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<OutputPath>..\bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<Import Project="..\Module.props" />
<Import Project="..\Avalonia.props" />
<ItemGroup>
<PackageReference Include="Avalonia.Controls.DataGrid" Version="$(AvaloniaVersion)" />
<PackageReference Include="Avalonia.Diagnostics" Version="$(AvaloniaVersion)" />
<PackageReference Include="FuzzySharp" Version="2.0.2" />
</ItemGroup>
<ItemGroup>
<AvaloniaResource Include="Styles\Assets\Lato\*.ttf" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AvaloniaEdit\src\AvaloniaEdit\AvaloniaEdit.csproj" />
<ProjectReference Include="..\Dock\src\Dock.Avalonia\Dock.Avalonia.csproj" />
<ProjectReference Include="..\WDE.MVVM\WDE.MVVM.csproj" />
<ProjectReference Include="..\WoWDatabaseEditor.Common\WDE.Common\WDE.Common.csproj" />
</ItemGroup>
</Project>