-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathproject.json
42 lines (42 loc) · 1021 Bytes
/
project.json
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
{
"name": "NOpenType",
"title": "NOpenType",
"version": "0.0.1-*",
"description": "Simple and clean TrueType font loader and renderer written purely in c#.",
"copyright": "Copyright 2016 Samuel Carlsson",
"authors": [
"Samuel Carlsson, WinterDev"
],
"packOptions": {
"owners": [ "vidstige" ],
"licenseUrl": "https://github.com/vidstige/NRasterizer/blob/master/LICENSE.md",
"projectUrl": "https://github.com/vidstige/NRasterizer",
"iconUrl": "https://github.com/vidstige/NRasterizer/raw/master/icon.png",
"requireLicenseAcceptance": false,
"repository": {
"type": "git",
"url": "https://github.com/vidstige/NRasterizer"
},
"tags": [
"font",
"truetype",
"true-type"
]
},
"configurations": {
"Release": {
"buildOptions": {
"optimize": true
}
}
},
"dependencies": {
"NETStandard.Library": "1.6.0"
},
"tools": {
"dotnet-version": "1.1.0"
},
"frameworks": {
"netstandard1.1": {}
}
}