Skip to content

Commit

Permalink
Add Aardvark.Base.Fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
hyazinthh committed Aug 1, 2024
1 parent 0541d4b commit 8d21acd
Show file tree
Hide file tree
Showing 12 changed files with 61 additions and 1 deletion.
3 changes: 3 additions & 0 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ nuget Unofficial.LibTessDotNet ~> 2.0.2
nuget FsPickler ~> 5.3.2
nuget FsPickler.Json ~> 5.3.2

nuget Unofficial.Typography ~> 0.1.0
nuget FuzzySharp ~> 2.0.2

group CodeGenerator
framework net8.0
storage: none
Expand Down
5 changes: 4 additions & 1 deletion paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ NUGET
FSharp.Core (>= 4.3.2)
FsPickler (>= 5.3.2)
Newtonsoft.Json (>= 10.0.1)
FuzzySharp (2.0.2)
Microsoft.Bcl.AsyncInterfaces (8.0) - restriction: || (&& (== net8.0) (>= net462)) (&& (== net8.0) (< net6.0)) (== netstandard2.0)
System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (== net8.0) (>= net462)) (&& (== net8.0) (< netstandard2.1)) (== netstandard2.0)
Microsoft.NETCore.Platforms (7.0.4)
Expand Down Expand Up @@ -90,7 +91,7 @@ NUGET
System.Buffers (>= 4.5.1) - restriction: || (&& (== net8.0) (>= monotouch)) (&& (== net8.0) (>= net461)) (&& (== net8.0) (< netcoreapp2.0)) (&& (== net8.0) (< netstandard1.1)) (&& (== net8.0) (< netstandard2.0)) (&& (== net8.0) (>= xamarinios)) (&& (== net8.0) (>= xamarinmac)) (&& (== net8.0) (>= xamarintvos)) (&& (== net8.0) (>= xamarinwatchos)) (== netstandard2.0)
System.Numerics.Vectors (>= 4.4) - restriction: || (&& (== net8.0) (< netcoreapp2.0)) (== netstandard2.0)
System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (== net8.0) (>= monotouch)) (&& (== net8.0) (>= net461)) (&& (== net8.0) (< netcoreapp2.0)) (&& (== net8.0) (< netcoreapp2.1)) (&& (== net8.0) (< netstandard1.1)) (&& (== net8.0) (< netstandard2.0)) (&& (== net8.0) (>= uap10.1)) (&& (== net8.0) (>= xamarinios)) (&& (== net8.0) (>= xamarinmac)) (&& (== net8.0) (>= xamarintvos)) (&& (== net8.0) (>= xamarinwatchos)) (== netstandard2.0)
System.Numerics.Vectors (4.5) - restriction: || (&& (== net8.0) (>= net462)) (&& (== net8.0) (< netcoreapp2.0)) (== netstandard2.0)
System.Numerics.Vectors (4.5)
System.ObjectModel (4.3)
System.Collections (>= 4.3)
System.Diagnostics.Debug (>= 4.3)
Expand Down Expand Up @@ -160,6 +161,8 @@ NUGET
System.Threading.Tasks.Extensions (4.5.4) - restriction: || (&& (== net8.0) (>= net462)) (&& (== net8.0) (< net6.0)) (== netstandard2.0)
System.Runtime.CompilerServices.Unsafe (>= 4.5.3) - restriction: || (&& (== net8.0) (>= net461)) (&& (== net8.0) (< netcoreapp2.1)) (&& (== net8.0) (< netstandard1.0)) (&& (== net8.0) (< netstandard2.0)) (&& (== net8.0) (>= wp8)) (== netstandard2.0)
Unofficial.LibTessDotNet (2.0.2)
Unofficial.Typography (0.1)
System.Numerics.Vectors (>= 4.5)

GROUP CodeGenerator
STORAGE: NONE
Expand Down
31 changes: 31 additions & 0 deletions src/Aardvark.Base.Fonts/Aardvark.Base.Fonts.fsproj
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.
5 changes: 5 additions & 0 deletions src/Aardvark.Base.Fonts/paket.references
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FSharp.Core
Aardvark.Build
Unofficial.LibTessDotNet
Unofficial.Typography
FuzzySharp
11 changes: 11 additions & 0 deletions src/Aardvark.Base.Fonts/paket.template
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
7 changes: 7 additions & 0 deletions src/Aardvark.sln
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "._", "._", "{61D029CD-C474-
..\RELEASE_NOTES.md = ..\RELEASE_NOTES.md
EndProjectSection
EndProject
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "Aardvark.Base.Fonts", "Aardvark.Base.Fonts\Aardvark.Base.Fonts.fsproj", "{C6C9C0AE-0900-4F21-86C6-2202E44A6013}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -168,6 +170,10 @@ Global
{F278A2F7-52FF-40CD-B16D-4D82F7DFA8C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F278A2F7-52FF-40CD-B16D-4D82F7DFA8C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F278A2F7-52FF-40CD-B16D-4D82F7DFA8C3}.Release|Any CPU.Build.0 = Release|Any CPU
{C6C9C0AE-0900-4F21-86C6-2202E44A6013}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C6C9C0AE-0900-4F21-86C6-2202E44A6013}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C6C9C0AE-0900-4F21-86C6-2202E44A6013}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C6C9C0AE-0900-4F21-86C6-2202E44A6013}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -195,6 +201,7 @@ Global
{06739A61-1B1C-4FC3-8DEF-926B10FACB28} = {C557CE9D-81EE-4EB3-AB94-B9F9CB2FA19A}
{FBB17215-CDCE-4FFA-B10A-EA1B320C8638} = {C557CE9D-81EE-4EB3-AB94-B9F9CB2FA19A}
{F278A2F7-52FF-40CD-B16D-4D82F7DFA8C3} = {A79411F9-60B3-46C8-8981-6905D9B9F74C}
{C6C9C0AE-0900-4F21-86C6-2202E44A6013} = {C557CE9D-81EE-4EB3-AB94-B9F9CB2FA19A}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1537AED0-2BB3-4EC3-B2CB-06E22C23B002}
Expand Down

0 comments on commit 8d21acd

Please sign in to comment.