-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrated cake build system, switch sdk style project file for Andro…
…id and iOS
- Loading branch information
1 parent
d037383
commit 1f58393
Showing
20 changed files
with
666 additions
and
200 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -373,3 +373,7 @@ Temporary Items | |
|
||
# Project | ||
.vscode | ||
|
||
# Cake | ||
tools/** | ||
!tools/packages.config |
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,23 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<ProjectPlatform>Android</ProjectPlatform> | ||
<BaseIntermediateOutputPath>obj\$(ProjectPlatform)</BaseIntermediateOutputPath> | ||
<BaseOutputPath>..\Artifacts\$(ProjectPlatform)</BaseOutputPath> | ||
<RootNamespace>FreeTypeSharp</RootNamespace> | ||
<AssemblyName>FreeTypeSharp.$(ProjectPlatform)</AssemblyName> | ||
<PackageId>FreeTypeSharp.$(ProjectPlatform)</PackageId> | ||
<PackageProjectUrl>https://github.com/ryancheung/FreeTypeSharp</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/ryancheung/FreeTypeSharp</RepositoryUrl> | ||
<Authors>ryancheung</Authors> | ||
<Copyright>Copyright (c) 2020 ryancheung</Copyright> | ||
<Title>FreeTypeSharp.$(ProjectPlatform)</Title> | ||
<PackageTags>freetype2 xamarin.android</PackageTags> | ||
<Description> | ||
A moden cross-platform managed FreeType2 library. This package provides you with managed FreeType2 on Android. | ||
</Description> | ||
|
||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
</Project> |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 @@ | ||
{ | ||
"msbuild-sdks": { | ||
"MSBuild.Sdk.Extras": "2.0.54" | ||
} | ||
} |
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,23 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<ProjectPlatform>Core</ProjectPlatform> | ||
<BaseIntermediateOutputPath>obj\$(ProjectPlatform)</BaseIntermediateOutputPath> | ||
<BaseOutputPath>..\Artifacts\$(ProjectPlatform)</BaseOutputPath> | ||
<RootNamespace>FreeTypeSharp</RootNamespace> | ||
<AssemblyName>FreeTypeSharp.$(ProjectPlatform)</AssemblyName> | ||
<PackageId>FreeTypeSharp.$(ProjectPlatform)</PackageId> | ||
<PackageProjectUrl>https://github.com/ryancheung/FreeTypeSharp</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/ryancheung/FreeTypeSharp</RepositoryUrl> | ||
<Authors>ryancheung</Authors> | ||
<Copyright>Copyright (c) 2020 ryancheung</Copyright> | ||
<Title>FreeTypeSharp.$(ProjectPlatform)</Title> | ||
<PackageTags>freetype2 netstandard2.0</PackageTags> | ||
<Description> | ||
A moden cross-platform managed FreeType2 library. This package provides you with managed FreeType2 on Windows, Linux and MacOS. | ||
</Description> | ||
|
||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
</Project> |
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,24 @@ | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<ProjectPlatform>iOS</ProjectPlatform> | ||
<BaseIntermediateOutputPath>obj\$(ProjectPlatform)</BaseIntermediateOutputPath> | ||
<BaseOutputPath>..\Artifacts\$(ProjectPlatform)</BaseOutputPath> | ||
<OutputPath>..\Artifacts\$(ProjectPlatform)\$(Configuration)</OutputPath> | ||
<RootNamespace>FreeTypeSharp</RootNamespace> | ||
<AssemblyName>FreeTypeSharp.$(ProjectPlatform)</AssemblyName> | ||
<PackageId>FreeTypeSharp.$(ProjectPlatform)</PackageId> | ||
<PackageProjectUrl>https://github.com/ryancheung/FreeTypeSharp</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/ryancheung/FreeTypeSharp</RepositoryUrl> | ||
<Authors>ryancheung</Authors> | ||
<Copyright>Copyright (c) 2020 ryancheung</Copyright> | ||
<Title>FreeTypeSharp.$(ProjectPlatform)</Title> | ||
<PackageTags>freetype2 xamarin.ios</PackageTags> | ||
<Description> | ||
A moden cross-platform managed FreeType2 library. This package provides you with managed FreeType2 on iOS. | ||
</Description> | ||
|
||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
</Project> |
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
Oops, something went wrong.