Skip to content

Commit

Permalink
1.1.4
Browse files Browse the repository at this point in the history
More updates to try to get freetype dlls to copy over.
  • Loading branch information
vonderborch committed Apr 15, 2021
1 parent f731e2e commit d107c52
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 3 deletions.
24 changes: 24 additions & 0 deletions Velentr.Font.Core/Velentr - Backup.Font.Core.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Platforms>AnyCPU</Platforms>
<RootNamespace>Velentr.Font</RootNamespace>
<Version>1.1.4</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641" />
<PackageReference Include="SharpFont.Dependencies" Version="2.6.0" />
<PackageReference Include="SharpFont.NetStandard" Version="1.0.5" />
<PackageReference Include="System.Drawing.Common" Version="5.0.2" />
<PackageReference Include="Velentr.Collections" Version="1.0.3" />
</ItemGroup>

<ItemGroup>
<Content Update="C:\Users\ricky\.nuget\packages\sharpfont.netstandard\1.0.5\contentFiles\any\netstandard2.0\lib\x64\freetype6.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>

</Project>
13 changes: 12 additions & 1 deletion Velentr.Font.Core/Velentr.Font.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Platforms>AnyCPU</Platforms>
<RootNamespace>Velentr.Font</RootNamespace>
<Version>1.1.3</Version>
<Version>1.1.4</Version>
</PropertyGroup>

<ItemGroup>
Expand All @@ -15,4 +15,15 @@
<PackageReference Include="Velentr.Collections" Version="1.0.3" />
</ItemGroup>

<ItemGroup>
<Content Update="C:\Users\ricky\.nuget\packages\sharpfont.netstandard\1.0.5\contentFiles\any\netstandard2.0\lib\x64\freetype6.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
<Content Update="C:\Users\ricky\.nuget\packages\sharpfont.netstandard\1.0.5\contentFiles\any\netstandard2.0\lib\x86\freetype6.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
</ItemGroup>

</Project>
13 changes: 12 additions & 1 deletion Velentr.Font.FNA/Velentr.Font.FNA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageProjectUrl>https://github.com/vonderborch/Velentr.Font</PackageProjectUrl>
<Description>An alternative solution for Monogame/FNA/XNA-derived frameworks that utilizes SharpFont to draw text rather than the traditional SpriteFont approach.</Description>
<PackageTags>SharpFont, FNA, SpriteFont, Font</PackageTags>
<Version>1.1.3</Version>
<Version>1.1.4</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down Expand Up @@ -104,4 +104,15 @@
<ProjectReference Include="..\FNA\FNA.Core.csproj" />
</ItemGroup>

<ItemGroup>
<Content Update="C:\Users\ricky\.nuget\packages\sharpfont.netstandard\1.0.5\contentFiles\any\netstandard2.0\lib\x64\freetype6.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
<Content Update="C:\Users\ricky\.nuget\packages\sharpfont.netstandard\1.0.5\contentFiles\any\netstandard2.0\lib\x86\freetype6.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
</ItemGroup>

</Project>
13 changes: 12 additions & 1 deletion Velentr.Font.Monogame/Velentr.Font.Monogame.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageProjectUrl>https://github.com/vonderborch/Velentr.Font</PackageProjectUrl>
<Description>An alternative solution for Monogame/FNA/XNA-derived frameworks that utilizes SharpFont to draw text rather than the traditional SpriteFont approach.</Description>
<PackageTags>SharpFont, Monogame, SpriteFont, Font</PackageTags>
<Version>1.1.3</Version>
<Version>1.1.4</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down Expand Up @@ -54,4 +54,15 @@
</None>
</ItemGroup>

<ItemGroup>
<Content Update="C:\Users\ricky\.nuget\packages\sharpfont.netstandard\1.0.5\contentFiles\any\netstandard2.0\lib\x64\freetype6.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
<Content Update="C:\Users\ricky\.nuget\packages\sharpfont.netstandard\1.0.5\contentFiles\any\netstandard2.0\lib\x86\freetype6.dll">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<PackageCopyToOutput>true</PackageCopyToOutput>
</Content>
</ItemGroup>

</Project>

0 comments on commit d107c52

Please sign in to comment.