-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathAvaloniaMath.csproj
More file actions
43 lines (40 loc) · 1.94 KB
/
AvaloniaMath.csproj
File metadata and controls
43 lines (40 loc) · 1.94 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net462;netstandard2.0;net6.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<PackageId>AvaloniaMath</PackageId>
<Title>Avalonia-Math</Title>
<PackageLicenseExpression>MIT AND OFL-1.1</PackageLicenseExpression>
<PackageTags>$(PackageTags);avalonia</PackageTags>
<Description>.NET library for rendering mathematical formulae using the LaTeX typsetting style, for the Avalonia framework.</Description>
</PropertyGroup>
<ItemGroup>
<!-- TODO[#352]: Include after we support Avalonia 11 -->
<!-- See this: https://github.com/AvaloniaUI/Avalonia/blob/81fab67becf5499f1893d23e556e1b84abcce135/src/Avalonia.Build.Tasks/GenerateAvaloniaResourcesTask.cs#L39-L43 -->
<!-- <_Font Include="..\..\fonts\*.ttf" Visible="false" />-->
<!-- <AvaloniaResource Include="@(_Font->'%(FullPath)')"-->
<!-- Link="Fonts\@(_Font->'%(Filename)').ttf"-->
<!-- Visible="true"/>-->
<None Remove="Fonts\*.ttf" />
<AvaloniaResource Include="Fonts\*.ttf" />
<None Include="..\..\fonts\LICENSES.md" Pack="true" PackagePath="\FONT-LICENSES.md" />
</ItemGroup>
<ItemGroup>
<Compile Update="**\*.xaml.cs">
<DependentUpon>%(Filename)</DependentUpon>
</Compile>
<AvaloniaResource Include="**\*.xaml">
<SubType>Designer</SubType>
</AvaloniaResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" />
<PackageReference Include="Nullable" PrivateAssets="All" />
<PackageReference Include="ChangelogAutomation.MSBuild" PrivateAssets="All" ExcludeAssets="compile;runtime" />
<PackageReference Include="System.Reactive" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XamlMath.Shared\XamlMath.Shared.csproj" />
</ItemGroup>
</Project>