-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
<AssemblyName>Aardvark.Base.Fonts</AssemblyName> | ||
<OutputType>Library</OutputType> | ||
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<WarnOn>3389;3390;3395</WarnOn> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<OutputPath>..\..\bin\Debug\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<OutputPath>..\..\bin\Release</OutputPath> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="BvhInternal.fs" /> | ||
<Compile Include="PathSegment.fs" /> | ||
<Compile Include="PathTessellator.fs" /> | ||
<Compile Include="Path.fs" /> | ||
<Compile Include="FontResolver.fs" /> | ||
<Compile Include="Font.fs" /> | ||
<None Include="paket.references" /> | ||
<None Include="paket.template" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Aardvark.Base.FSharp\Aardvark.Base.FSharp.fsproj" /> | ||
</ItemGroup> | ||
<Import Project="..\..\.paket\Paket.Restore.targets" /> | ||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FSharp.Core | ||
Aardvark.Build | ||
Unofficial.LibTessDotNet | ||
Unofficial.Typography | ||
FuzzySharp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
type project | ||
id Aardvark.Base.Fonts | ||
authors Aardvark Platform Team | ||
owners Aardvark Platform Team | ||
projectUrl http://github.com/aardvark-platform | ||
licenseUrl http://www.apache.org/licenses/LICENSE-2.0.txt | ||
repositoryType git | ||
repositoryUrl https://github.com/aardvark-platform/aardvark.base | ||
description | ||
Aardvark is an open-source platform for visual computing, real-time graphics and visualization. | ||
include-pdbs true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters