Description:
Lots of cleanup.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -0,0 +1,37 | |||
|
1 | | |
|
2 | Microsoft Visual Studio Solution File, Format Version 12.00 | |
|
3 | # Visual Studio Version 16 | |
|
4 | VisualStudioVersion = 16.0.808.6 | |
|
5 | MinimumVisualStudioVersion = 10.0.40219.1 | |
|
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.Xna", "Microsoft.Xna.csproj", "{35253CE1-C864-4CD3-8249-4D1319748E8F}" | |
|
7 | EndProject | |
|
8 | Global | |
|
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
|
10 | Debug|x86 = Debug|x86 | |
|
11 | Release|x86 = Release|x86 | |
|
12 | Debug|x64 = Debug|x64 | |
|
13 | Release|x64 = Release|x64 | |
|
14 | Debug|Any CPU = Debug|Any CPU | |
|
15 | Release|Any CPU = Release|Any CPU | |
|
16 | EndGlobalSection | |
|
17 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
|
18 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Debug|x86.ActiveCfg = Debug|x86 | |
|
19 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Debug|x86.Build.0 = Debug|x86 | |
|
20 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Release|x86.ActiveCfg = Release|x86 | |
|
21 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Release|x86.Build.0 = Release|x86 | |
|
22 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Debug|x64.ActiveCfg = Debug|x64 | |
|
23 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Debug|x64.Build.0 = Debug|x64 | |
|
24 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Release|x64.ActiveCfg = Release|x64 | |
|
25 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Release|x64.Build.0 = Release|x64 | |
|
26 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
|
27 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
|
28 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
|
29 | {35253CE1-C864-4CD3-8249-4D1319748E8F}.Release|Any CPU.Build.0 = Release|Any CPU | |
|
30 | EndGlobalSection | |
|
31 | GlobalSection(SolutionProperties) = preSolution | |
|
32 | HideSolutionNode = FALSE | |
|
33 | EndGlobalSection | |
|
34 | GlobalSection(ExtensibilityGlobals) = postSolution | |
|
35 | SolutionGuid = {2C0248DB-631B-4520-9E95-DF09CC51CD7F} | |
|
36 | EndGlobalSection | |
|
37 | EndGlobal |
@@ -0,0 +1,32 | |||
|
1 | <Project Sdk="Microsoft.NET.Sdk"> | |
|
2 | <PropertyGroup> | |
|
3 | <TargetFrameworks>net45;netstandard2.0</TargetFrameworks> | |
|
4 | <PackageId>SpriteFontPlus</PackageId> | |
|
5 | <Authors>SpriteFontPlusTeam</Authors> | |
|
6 | <Product>SpriteFontPlus</Product> | |
|
7 | <Description>Library extending functionality of the SpriteFont.</Description> | |
|
8 | <PackageLicense>https://github.com/rds1983/SpriteFontPlus/blob/master/LICENSE</PackageLicense> | |
|
9 | <PackageProjectUrl>https://github.com/rds1983/SpriteFontPlus</PackageProjectUrl> | |
|
10 | <AssemblyName>SpriteFontPlus</AssemblyName> | |
|
11 | <RootNamespace>SpriteFontPlus</RootNamespace> | |
|
12 | <Version>1.0.0.0</Version> | |
|
13 | <DefineConstants>$(DefineConstants);STBSHARP_INTERNAL;FNA</DefineConstants> | |
|
14 | <OutputPath>bin\FNA\$(Configuration)</OutputPath> | |
|
15 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | |
|
16 | </PropertyGroup> | |
|
17 | ||
|
18 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
|
19 | <LangVersion>8.0</LangVersion> | |
|
20 | </PropertyGroup> | |
|
21 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
|
22 | <LangVersion>8.0</LangVersion> | |
|
23 | </PropertyGroup> | |
|
24 | <ItemGroup> | |
|
25 | <Compile Include="..\deps\StbTrueTypeSharp\src\**\*.cs" LinkBase="StbTrueTypeSharp" /> | |
|
26 | <Compile Include="..\deps\BMFontToSpriteFont\**\*.cs" LinkBase="BMFontToSpriteFont" /> | |
|
27 | </ItemGroup> | |
|
28 | ||
|
29 | <ItemGroup> | |
|
30 | <ProjectReference Include="..\..\FNA\FNA.Core.csproj" /> | |
|
31 | </ItemGroup> | |
|
32 | </Project> |
@@ -0,0 +1,32 | |||
|
1 | <Project Sdk="Microsoft.NET.Sdk"> | |
|
2 | <PropertyGroup> | |
|
3 | <TargetFrameworks>net45;netstandard2.0</TargetFrameworks> | |
|
4 | <PackageId>SpriteFontPlus</PackageId> | |
|
5 | <Authors>SpriteFontPlusTeam</Authors> | |
|
6 | <Product>SpriteFontPlus</Product> | |
|
7 | <Description>Library extending functionality of the SpriteFont.</Description> | |
|
8 | <PackageLicense>https://github.com/rds1983/SpriteFontPlus/blob/master/LICENSE</PackageLicense> | |
|
9 | <PackageProjectUrl>https://github.com/rds1983/SpriteFontPlus</PackageProjectUrl> | |
|
10 | <AssemblyName>SpriteFontPlus</AssemblyName> | |
|
11 | <RootNamespace>SpriteFontPlus</RootNamespace> | |
|
12 | <Version>1.0.0.0</Version> | |
|
13 | <DefineConstants>$(DefineConstants);STBSHARP_INTERNAL;FNA</DefineConstants> | |
|
14 | <OutputPath>bin\FNA\$(Configuration)</OutputPath> | |
|
15 | <AllowUnsafeBlocks>true</AllowUnsafeBlocks> | |
|
16 | </PropertyGroup> | |
|
17 | ||
|
18 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
|
19 | <LangVersion>8.0</LangVersion> | |
|
20 | </PropertyGroup> | |
|
21 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
|
22 | <LangVersion>8.0</LangVersion> | |
|
23 | </PropertyGroup> | |
|
24 | <ItemGroup> | |
|
25 | <Compile Include="..\deps\StbTrueTypeSharp\src\**\*.cs" LinkBase="StbTrueTypeSharp" /> | |
|
26 | <Compile Include="..\deps\BMFontToSpriteFont\**\*.cs" LinkBase="BMFontToSpriteFont" /> | |
|
27 | </ItemGroup> | |
|
28 | ||
|
29 | <ItemGroup> | |
|
30 | <ProjectReference Include="..\..\FNA\FNA.Core.csproj" /> | |
|
31 | </ItemGroup> | |
|
32 | </Project> |
@@ -0,0 +1,37 | |||
|
1 | | |
|
2 | Microsoft Visual Studio Solution File, Format Version 12.00 | |
|
3 | # Visual Studio Version 16 | |
|
4 | VisualStudioVersion = 16.0.808.6 | |
|
5 | MinimumVisualStudioVersion = 10.0.40219.1 | |
|
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "isometric-park-fna-core", "isometric-park-fna\isometric-park-fna-core.csproj", "{4BA11D6F-B980-4E5B-99FE-729AD3D34A12}" | |
|
7 | EndProject | |
|
8 | Global | |
|
9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution | |
|
10 | Debug|Any CPU = Debug|Any CPU | |
|
11 | Release|Any CPU = Release|Any CPU | |
|
12 | EndGlobalSection | |
|
13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution | |
|
14 | {4BA11D6F-B980-4E5B-99FE-729AD3D34A12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
|
15 | {4BA11D6F-B980-4E5B-99FE-729AD3D34A12}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
|
16 | {4BA11D6F-B980-4E5B-99FE-729AD3D34A12}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
|
17 | {4BA11D6F-B980-4E5B-99FE-729AD3D34A12}.Release|Any CPU.Build.0 = Release|Any CPU | |
|
18 | {EF93C19F-5ECE-4BEC-93DA-F496E8EEB5E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
|
19 | {EF93C19F-5ECE-4BEC-93DA-F496E8EEB5E8}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
|
20 | {EF93C19F-5ECE-4BEC-93DA-F496E8EEB5E8}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
|
21 | {EF93C19F-5ECE-4BEC-93DA-F496E8EEB5E8}.Release|Any CPU.Build.0 = Release|Any CPU | |
|
22 | {39F4DE76-3B75-463C-B765-FA9E8CD70CB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
|
23 | {39F4DE76-3B75-463C-B765-FA9E8CD70CB7}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
|
24 | {39F4DE76-3B75-463C-B765-FA9E8CD70CB7}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
|
25 | {39F4DE76-3B75-463C-B765-FA9E8CD70CB7}.Release|Any CPU.Build.0 = Release|Any CPU | |
|
26 | {0D5ECE60-2EEA-40DE-BFD3-4A72B6662B0E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | |
|
27 | {0D5ECE60-2EEA-40DE-BFD3-4A72B6662B0E}.Debug|Any CPU.Build.0 = Debug|Any CPU | |
|
28 | {0D5ECE60-2EEA-40DE-BFD3-4A72B6662B0E}.Release|Any CPU.ActiveCfg = Release|Any CPU | |
|
29 | {0D5ECE60-2EEA-40DE-BFD3-4A72B6662B0E}.Release|Any CPU.Build.0 = Release|Any CPU | |
|
30 | EndGlobalSection | |
|
31 | GlobalSection(SolutionProperties) = preSolution | |
|
32 | HideSolutionNode = FALSE | |
|
33 | EndGlobalSection | |
|
34 | GlobalSection(ExtensibilityGlobals) = postSolution | |
|
35 | SolutionGuid = {9EECCA92-94F2-4BA9-9DFE-6D2B7C7988A3} | |
|
36 | EndGlobalSection | |
|
37 | EndGlobal |
@@ -3,6 +3,7 | |||
|
3 | 3 | *.git/* |
|
4 | 4 | .vs/* |
|
5 | 5 | *.DS_Store |
|
6 | *mono_crash* | |
|
6 | 7 | |
|
7 | 8 | packages/* |
|
8 | 9 | [Dd]ebug/ |
@@ -17,3 +18,8 | |||
|
17 | 18 | [Ll]og/ |
|
18 | 19 | [Ll]ogs/ |
|
19 | 20 | |
|
21 | ||
|
22 | *.app/* | |
|
23 | **.dmg | |
|
24 | PackageTemplates/* | |
|
25 | isometric-park-fna/Content/images/converted/* |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
|
1 | NO CONTENT: modified file, binary diff hidden |
@@ -1,14 +1,14 | |||
|
1 | 1 | { |
|
2 | 2 | "format": 1, |
|
3 | 3 | "restore": { |
|
4 |
"/ |
|
|
4 | "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj": {} | |
|
5 | 5 | }, |
|
6 | 6 | "projects": { |
|
7 |
"/ |
|
|
7 | "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj": { | |
|
8 | 8 | "restore": { |
|
9 |
"projectUniqueName": "/ |
|
|
9 | "projectUniqueName": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj", | |
|
10 | 10 | "projectName": "FNA", |
|
11 |
"projectPath": "/ |
|
|
11 | "projectPath": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj", | |
|
12 | 12 | "frameworks": { |
|
13 | 13 | "net48": { |
|
14 | 14 | "projectReferences": {} |
@@ -19,20 +19,17 | |||
|
19 | 19 | "net48": {} |
|
20 | 20 | } |
|
21 | 21 | }, |
|
22 |
"/ |
|
|
22 | "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj": { | |
|
23 | 23 | "version": "1.0.0", |
|
24 | 24 | "restore": { |
|
25 |
"projectUniqueName": "/ |
|
|
25 | "projectUniqueName": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj", | |
|
26 | 26 | "projectName": "SpriteFontPlus", |
|
27 |
"projectPath": "/ |
|
|
28 |
"packagesPath": "/ |
|
|
29 |
"outputPath": "/ |
|
|
27 | "projectPath": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj", | |
|
28 | "packagesPath": "/Users/alys/.nuget/packages/", | |
|
29 | "outputPath": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/obj/", | |
|
30 | 30 | "projectStyle": "PackageReference", |
|
31 | "fallbackFolders": [ | |
|
32 | "/usr/share/dotnet/sdk/NuGetFallbackFolder" | |
|
33 | ], | |
|
34 | 31 | "configFilePaths": [ |
|
35 |
"/ |
|
|
32 | "/Users/alys/.config/NuGet/NuGet.Config" | |
|
36 | 33 | ], |
|
37 | 34 | "originalTargetFrameworks": [ |
|
38 | 35 | "net45" |
@@ -42,10 +39,9 | |||
|
42 | 39 | }, |
|
43 | 40 | "frameworks": { |
|
44 | 41 | "net45": { |
|
45 | "targetAlias": "net45", | |
|
46 | 42 | "projectReferences": { |
|
47 |
"/ |
|
|
48 |
"projectPath": "/ |
|
|
43 | "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj": { | |
|
44 | "projectPath": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj" | |
|
49 | 45 | } |
|
50 | 46 | } |
|
51 | 47 | } |
@@ -58,16 +54,7 | |||
|
58 | 54 | }, |
|
59 | 55 | "frameworks": { |
|
60 | 56 | "net45": { |
|
61 | "targetAlias": "net45", | |
|
62 | "dependencies": { | |
|
63 | "Microsoft.NETFramework.ReferenceAssemblies": { | |
|
64 | "suppressParent": "All", | |
|
65 | "target": "Package", | |
|
66 | "version": "[1.0.0, )", | |
|
67 | "autoReferenced": true | |
|
68 | } | |
|
69 | }, | |
|
70 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.201/RuntimeIdentifierGraph.json" | |
|
57 | "runtimeIdentifierGraphPath": "/Library/Frameworks/Mono.framework/Versions/6.12.0/lib/mono/msbuild/Current/bin/RuntimeIdentifierGraph.json" | |
|
71 | 58 | } |
|
72 | 59 | } |
|
73 | 60 | } |
@@ -4,15 +4,11 | |||
|
4 | 4 | <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> |
|
5 | 5 | <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> |
|
6 | 6 | <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> |
|
7 |
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/ |
|
|
8 |
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/ |
|
|
7 | <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/alys/.nuget/packages/</NuGetPackageRoot> | |
|
8 | <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/alys/.nuget/packages/</NuGetPackageFolders> | |
|
9 | 9 | <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> |
|
10 |
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5. |
|
|
10 | <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.6.0</NuGetToolVersion> | |
|
11 | 11 | </PropertyGroup> |
|
12 | <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |
|
13 | <SourceRoot Include="/home/alys/.nuget/packages/" /> | |
|
14 | <SourceRoot Include="/usr/share/dotnet/sdk/NuGetFallbackFolder/" /> | |
|
15 | </ItemGroup> | |
|
16 | 12 | <PropertyGroup> |
|
17 | 13 | <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> |
|
18 | 14 | </PropertyGroup> |
@@ -3,7 +3,4 | |||
|
3 | 3 | <PropertyGroup> |
|
4 | 4 | <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> |
|
5 | 5 | </PropertyGroup> |
|
6 | <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> | |
|
7 | <Import Project="$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net45/1.0.0/build/Microsoft.NETFramework.ReferenceAssemblies.net45.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netframework.referenceassemblies.net45/1.0.0/build/Microsoft.NETFramework.ReferenceAssemblies.net45.targets')" /> | |
|
8 | </ImportGroup> | |
|
9 | 6 | </Project> No newline at end of file |
This diff has been collapsed as it changes many lines, (598 lines changed) Show them Hide them | |||
@@ -2,57 +2,8 | |||
|
2 | 2 | "version": 3, |
|
3 | 3 | "targets": { |
|
4 | 4 | ".NETFramework,Version=v4.5": { |
|
5 | "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": { | |
|
6 | "type": "package", | |
|
7 | "dependencies": { | |
|
8 | "Microsoft.NETFramework.ReferenceAssemblies.net45": "1.0.0" | |
|
9 | } | |
|
10 | }, | |
|
11 | "Microsoft.NETFramework.ReferenceAssemblies.net45/1.0.0": { | |
|
12 | "type": "package", | |
|
13 | "build": { | |
|
14 | "build/Microsoft.NETFramework.ReferenceAssemblies.net45.targets": {} | |
|
15 | } | |
|
16 | }, | |
|
17 | 5 | "FNA/1.0.0": { |
|
18 | 6 | "type": "project", |
|
19 | "framework": ".NETFramework,Version=v4.0", | |
|
20 | "compile": { | |
|
21 | "bin/placeholder/FNA.dll": {} | |
|
22 | }, | |
|
23 | "runtime": { | |
|
24 | "bin/placeholder/FNA.dll": {} | |
|
25 | } | |
|
26 | } | |
|
27 | }, | |
|
28 | ".NETStandard,Version=v2.0": { | |
|
29 | "Microsoft.NETCore.Platforms/1.1.0": { | |
|
30 | "type": "package", | |
|
31 | "compile": { | |
|
32 | "lib/netstandard1.0/_._": {} | |
|
33 | }, | |
|
34 | "runtime": { | |
|
35 | "lib/netstandard1.0/_._": {} | |
|
36 | } | |
|
37 | }, | |
|
38 | "NETStandard.Library/2.0.3": { | |
|
39 | "type": "package", | |
|
40 | "dependencies": { | |
|
41 | "Microsoft.NETCore.Platforms": "1.1.0" | |
|
42 | }, | |
|
43 | "compile": { | |
|
44 | "lib/netstandard1.0/_._": {} | |
|
45 | }, | |
|
46 | "runtime": { | |
|
47 | "lib/netstandard1.0/_._": {} | |
|
48 | }, | |
|
49 | "build": { | |
|
50 | "build/netstandard2.0/NETStandard.Library.targets": {} | |
|
51 | } | |
|
52 | }, | |
|
53 | "FNA/1.0.0": { | |
|
54 | "type": "project", | |
|
55 | "framework": ".NETStandard,Version=v2.0", | |
|
56 | 7 | "compile": { |
|
57 | 8 | "bin/placeholder/FNA.dll": {} |
|
58 | 9 | }, |
@@ -63,535 +14,43 | |||
|
63 | 14 | } |
|
64 | 15 | }, |
|
65 | 16 | "libraries": { |
|
66 | "Microsoft.NETCore.Platforms/1.1.0": { | |
|
67 | "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", | |
|
68 | "type": "package", | |
|
69 | "path": "microsoft.netcore.platforms/1.1.0", | |
|
70 | "files": [ | |
|
71 | ".nupkg.metadata", | |
|
72 | ".signature.p7s", | |
|
73 | "ThirdPartyNotices.txt", | |
|
74 | "dotnet_library_license.txt", | |
|
75 | "lib/netstandard1.0/_._", | |
|
76 | "microsoft.netcore.platforms.1.1.0.nupkg.sha512", | |
|
77 | "microsoft.netcore.platforms.nuspec", | |
|
78 | "runtime.json" | |
|
79 | ] | |
|
80 | }, | |
|
81 | "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": { | |
|
82 | "sha512": "7D2TMufjGiowmt0E941kVoTIS+GTNzaPopuzM1/1LSaJAdJdBrVP0SkZW7AgDd0a2U1DjsIeaKG1wxGVBNLDMw==", | |
|
83 | "type": "package", | |
|
84 | "path": "microsoft.netframework.referenceassemblies/1.0.0", | |
|
85 | "files": [ | |
|
86 | ".nupkg.metadata", | |
|
87 | ".signature.p7s", | |
|
88 | "microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512", | |
|
89 | "microsoft.netframework.referenceassemblies.nuspec" | |
|
90 | ] | |
|
91 | }, | |
|
92 | "Microsoft.NETFramework.ReferenceAssemblies.net45/1.0.0": { | |
|
93 | "sha512": "f7XMQsZFaoc3w8Vg3VQ3FHuU2C9vf0Ng5EAV4gzdNWDerPM/OmrzccLj15eI1wCLLXj4jk8+lKsbonzJeyXgQQ==", | |
|
94 | "type": "package", | |
|
95 | "path": "microsoft.netframework.referenceassemblies.net45/1.0.0", | |
|
96 | "files": [ | |
|
97 | ".nupkg.metadata", | |
|
98 | ".signature.p7s", | |
|
99 | "build/.NETFramework/v4.5/Accessibility.dll", | |
|
100 | "build/.NETFramework/v4.5/Accessibility.xml", | |
|
101 | "build/.NETFramework/v4.5/CustomMarshalers.dll", | |
|
102 | "build/.NETFramework/v4.5/CustomMarshalers.xml", | |
|
103 | "build/.NETFramework/v4.5/Facades/System.Collections.Concurrent.dll", | |
|
104 | "build/.NETFramework/v4.5/Facades/System.Collections.dll", | |
|
105 | "build/.NETFramework/v4.5/Facades/System.ComponentModel.Annotations.dll", | |
|
106 | "build/.NETFramework/v4.5/Facades/System.ComponentModel.EventBasedAsync.dll", | |
|
107 | "build/.NETFramework/v4.5/Facades/System.ComponentModel.dll", | |
|
108 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Contracts.dll", | |
|
109 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Debug.dll", | |
|
110 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Tools.dll", | |
|
111 | "build/.NETFramework/v4.5/Facades/System.Diagnostics.Tracing.dll", | |
|
112 | "build/.NETFramework/v4.5/Facades/System.Dynamic.Runtime.dll", | |
|
113 | "build/.NETFramework/v4.5/Facades/System.Globalization.dll", | |
|
114 | "build/.NETFramework/v4.5/Facades/System.IO.dll", | |
|
115 | "build/.NETFramework/v4.5/Facades/System.Linq.Expressions.dll", | |
|
116 | "build/.NETFramework/v4.5/Facades/System.Linq.Parallel.dll", | |
|
117 | "build/.NETFramework/v4.5/Facades/System.Linq.Queryable.dll", | |
|
118 | "build/.NETFramework/v4.5/Facades/System.Linq.dll", | |
|
119 | "build/.NETFramework/v4.5/Facades/System.Net.NetworkInformation.dll", | |
|
120 | "build/.NETFramework/v4.5/Facades/System.Net.Primitives.dll", | |
|
121 | "build/.NETFramework/v4.5/Facades/System.Net.Requests.dll", | |
|
122 | "build/.NETFramework/v4.5/Facades/System.ObjectModel.dll", | |
|
123 | "build/.NETFramework/v4.5/Facades/System.Reflection.Emit.ILGeneration.dll", | |
|
124 | "build/.NETFramework/v4.5/Facades/System.Reflection.Emit.Lightweight.dll", | |
|
125 | "build/.NETFramework/v4.5/Facades/System.Reflection.Emit.dll", | |
|
126 | "build/.NETFramework/v4.5/Facades/System.Reflection.Extensions.dll", | |
|
127 | "build/.NETFramework/v4.5/Facades/System.Reflection.Primitives.dll", | |
|
128 | "build/.NETFramework/v4.5/Facades/System.Reflection.dll", | |
|
129 | "build/.NETFramework/v4.5/Facades/System.Resources.ResourceManager.dll", | |
|
130 | "build/.NETFramework/v4.5/Facades/System.Runtime.Extensions.dll", | |
|
131 | "build/.NETFramework/v4.5/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", | |
|
132 | "build/.NETFramework/v4.5/Facades/System.Runtime.InteropServices.dll", | |
|
133 | "build/.NETFramework/v4.5/Facades/System.Runtime.Numerics.dll", | |
|
134 | "build/.NETFramework/v4.5/Facades/System.Runtime.Serialization.Json.dll", | |
|
135 | "build/.NETFramework/v4.5/Facades/System.Runtime.Serialization.Primitives.dll", | |
|
136 | "build/.NETFramework/v4.5/Facades/System.Runtime.Serialization.Xml.dll", | |
|
137 | "build/.NETFramework/v4.5/Facades/System.Runtime.dll", | |
|
138 | "build/.NETFramework/v4.5/Facades/System.Security.Principal.dll", | |
|
139 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Duplex.dll", | |
|
140 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Http.dll", | |
|
141 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.NetTcp.dll", | |
|
142 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Primitives.dll", | |
|
143 | "build/.NETFramework/v4.5/Facades/System.ServiceModel.Security.dll", | |
|
144 | "build/.NETFramework/v4.5/Facades/System.Text.Encoding.Extensions.dll", | |
|
145 | "build/.NETFramework/v4.5/Facades/System.Text.Encoding.dll", | |
|
146 | "build/.NETFramework/v4.5/Facades/System.Text.RegularExpressions.dll", | |
|
147 | "build/.NETFramework/v4.5/Facades/System.Threading.Tasks.Parallel.dll", | |
|
148 | "build/.NETFramework/v4.5/Facades/System.Threading.Tasks.dll", | |
|
149 | "build/.NETFramework/v4.5/Facades/System.Threading.dll", | |
|
150 | "build/.NETFramework/v4.5/Facades/System.Xml.ReaderWriter.dll", | |
|
151 | "build/.NETFramework/v4.5/Facades/System.Xml.XDocument.dll", | |
|
152 | "build/.NETFramework/v4.5/Facades/System.Xml.XmlSerializer.dll", | |
|
153 | "build/.NETFramework/v4.5/ISymWrapper.dll", | |
|
154 | "build/.NETFramework/v4.5/ISymWrapper.xml", | |
|
155 | "build/.NETFramework/v4.5/Microsoft.Activities.Build.dll", | |
|
156 | "build/.NETFramework/v4.5/Microsoft.Activities.Build.xml", | |
|
157 | "build/.NETFramework/v4.5/Microsoft.Build.Conversion.v4.0.dll", | |
|
158 | "build/.NETFramework/v4.5/Microsoft.Build.Conversion.v4.0.xml", | |
|
159 | "build/.NETFramework/v4.5/Microsoft.Build.Engine.dll", | |
|
160 | "build/.NETFramework/v4.5/Microsoft.Build.Engine.xml", | |
|
161 | "build/.NETFramework/v4.5/Microsoft.Build.Framework.dll", | |
|
162 | "build/.NETFramework/v4.5/Microsoft.Build.Framework.xml", | |
|
163 | "build/.NETFramework/v4.5/Microsoft.Build.Tasks.v4.0.dll", | |
|
164 | "build/.NETFramework/v4.5/Microsoft.Build.Tasks.v4.0.xml", | |
|
165 | "build/.NETFramework/v4.5/Microsoft.Build.Utilities.v4.0.dll", | |
|
166 | "build/.NETFramework/v4.5/Microsoft.Build.Utilities.v4.0.xml", | |
|
167 | "build/.NETFramework/v4.5/Microsoft.Build.dll", | |
|
168 | "build/.NETFramework/v4.5/Microsoft.Build.xml", | |
|
169 | "build/.NETFramework/v4.5/Microsoft.CSharp.dll", | |
|
170 | "build/.NETFramework/v4.5/Microsoft.CSharp.xml", | |
|
171 | "build/.NETFramework/v4.5/Microsoft.JScript.dll", | |
|
172 | "build/.NETFramework/v4.5/Microsoft.JScript.xml", | |
|
173 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.Data.dll", | |
|
174 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.Data.xml", | |
|
175 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.dll", | |
|
176 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.Compatibility.xml", | |
|
177 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.dll", | |
|
178 | "build/.NETFramework/v4.5/Microsoft.VisualBasic.xml", | |
|
179 | "build/.NETFramework/v4.5/Microsoft.VisualC.STLCLR.dll", | |
|
180 | "build/.NETFramework/v4.5/Microsoft.VisualC.STLCLR.xml", | |
|
181 | "build/.NETFramework/v4.5/Microsoft.VisualC.dll", | |
|
182 | "build/.NETFramework/v4.5/Microsoft.VisualC.xml", | |
|
183 | "build/.NETFramework/v4.5/PermissionSets/FullTrust.xml", | |
|
184 | "build/.NETFramework/v4.5/PermissionSets/Internet.xml", | |
|
185 | "build/.NETFramework/v4.5/PermissionSets/LocalIntranet.xml", | |
|
186 | "build/.NETFramework/v4.5/PresentationBuildTasks.dll", | |
|
187 | "build/.NETFramework/v4.5/PresentationBuildTasks.xml", | |
|
188 | "build/.NETFramework/v4.5/PresentationCore.dll", | |
|
189 | "build/.NETFramework/v4.5/PresentationCore.xml", | |
|
190 | "build/.NETFramework/v4.5/PresentationFramework.Aero.dll", | |
|
191 | "build/.NETFramework/v4.5/PresentationFramework.Aero.xml", | |
|
192 | "build/.NETFramework/v4.5/PresentationFramework.Aero2.dll", | |
|
193 | "build/.NETFramework/v4.5/PresentationFramework.AeroLite.dll", | |
|
194 | "build/.NETFramework/v4.5/PresentationFramework.Classic.dll", | |
|
195 | "build/.NETFramework/v4.5/PresentationFramework.Classic.xml", | |
|
196 | "build/.NETFramework/v4.5/PresentationFramework.Luna.dll", | |
|
197 | "build/.NETFramework/v4.5/PresentationFramework.Luna.xml", | |
|
198 | "build/.NETFramework/v4.5/PresentationFramework.Royale.dll", | |
|
199 | "build/.NETFramework/v4.5/PresentationFramework.Royale.xml", | |
|
200 | "build/.NETFramework/v4.5/PresentationFramework.dll", | |
|
201 | "build/.NETFramework/v4.5/PresentationFramework.xml", | |
|
202 | "build/.NETFramework/v4.5/ReachFramework.dll", | |
|
203 | "build/.NETFramework/v4.5/ReachFramework.xml", | |
|
204 | "build/.NETFramework/v4.5/RedistList/FrameworkList.xml", | |
|
205 | "build/.NETFramework/v4.5/System.Activities.Core.Presentation.dll", | |
|
206 | "build/.NETFramework/v4.5/System.Activities.Core.Presentation.xml", | |
|
207 | "build/.NETFramework/v4.5/System.Activities.DurableInstancing.dll", | |
|
208 | "build/.NETFramework/v4.5/System.Activities.DurableInstancing.xml", | |
|
209 | "build/.NETFramework/v4.5/System.Activities.Presentation.dll", | |
|
210 | "build/.NETFramework/v4.5/System.Activities.Presentation.xml", | |
|
211 | "build/.NETFramework/v4.5/System.Activities.dll", | |
|
212 | "build/.NETFramework/v4.5/System.Activities.xml", | |
|
213 | "build/.NETFramework/v4.5/System.AddIn.Contract.dll", | |
|
214 | "build/.NETFramework/v4.5/System.AddIn.Contract.xml", | |
|
215 | "build/.NETFramework/v4.5/System.AddIn.dll", | |
|
216 | "build/.NETFramework/v4.5/System.AddIn.xml", | |
|
217 | "build/.NETFramework/v4.5/System.ComponentModel.Composition.Registration.dll", | |
|
218 | "build/.NETFramework/v4.5/System.ComponentModel.Composition.dll", | |
|
219 | "build/.NETFramework/v4.5/System.ComponentModel.Composition.xml", | |
|
220 | "build/.NETFramework/v4.5/System.ComponentModel.DataAnnotations.dll", | |
|
221 | "build/.NETFramework/v4.5/System.ComponentModel.DataAnnotations.xml", | |
|
222 | "build/.NETFramework/v4.5/System.Configuration.Install.dll", | |
|
223 | "build/.NETFramework/v4.5/System.Configuration.Install.xml", | |
|
224 | "build/.NETFramework/v4.5/System.Configuration.dll", | |
|
225 | "build/.NETFramework/v4.5/System.Configuration.xml", | |
|
226 | "build/.NETFramework/v4.5/System.Core.dll", | |
|
227 | "build/.NETFramework/v4.5/System.Core.xml", | |
|
228 | "build/.NETFramework/v4.5/System.Data.DataSetExtensions.dll", | |
|
229 | "build/.NETFramework/v4.5/System.Data.DataSetExtensions.xml", | |
|
230 | "build/.NETFramework/v4.5/System.Data.Entity.Design.dll", | |
|
231 | "build/.NETFramework/v4.5/System.Data.Entity.Design.xml", | |
|
232 | "build/.NETFramework/v4.5/System.Data.Entity.dll", | |
|
233 | "build/.NETFramework/v4.5/System.Data.Entity.xml", | |
|
234 | "build/.NETFramework/v4.5/System.Data.Linq.dll", | |
|
235 | "build/.NETFramework/v4.5/System.Data.Linq.xml", | |
|
236 | "build/.NETFramework/v4.5/System.Data.OracleClient.dll", | |
|
237 | "build/.NETFramework/v4.5/System.Data.OracleClient.xml", | |
|
238 | "build/.NETFramework/v4.5/System.Data.Services.Client.dll", | |
|
239 | "build/.NETFramework/v4.5/System.Data.Services.Client.xml", | |
|
240 | "build/.NETFramework/v4.5/System.Data.Services.Design.dll", | |
|
241 | "build/.NETFramework/v4.5/System.Data.Services.Design.xml", | |
|
242 | "build/.NETFramework/v4.5/System.Data.Services.dll", | |
|
243 | "build/.NETFramework/v4.5/System.Data.Services.xml", | |
|
244 | "build/.NETFramework/v4.5/System.Data.SqlXml.dll", | |
|
245 | "build/.NETFramework/v4.5/System.Data.SqlXml.xml", | |
|
246 | "build/.NETFramework/v4.5/System.Data.dll", | |
|
247 | "build/.NETFramework/v4.5/System.Data.xml", | |
|
248 | "build/.NETFramework/v4.5/System.Deployment.dll", | |
|
249 | "build/.NETFramework/v4.5/System.Deployment.xml", | |
|
250 | "build/.NETFramework/v4.5/System.Design.dll", | |
|
251 | "build/.NETFramework/v4.5/System.Design.xml", | |
|
252 | "build/.NETFramework/v4.5/System.Device.dll", | |
|
253 | "build/.NETFramework/v4.5/System.Device.xml", | |
|
254 | "build/.NETFramework/v4.5/System.DirectoryServices.AccountManagement.dll", | |
|
255 | "build/.NETFramework/v4.5/System.DirectoryServices.AccountManagement.xml", | |
|
256 | "build/.NETFramework/v4.5/System.DirectoryServices.Protocols.dll", | |
|
257 | "build/.NETFramework/v4.5/System.DirectoryServices.Protocols.xml", | |
|
258 | "build/.NETFramework/v4.5/System.DirectoryServices.dll", | |
|
259 | "build/.NETFramework/v4.5/System.DirectoryServices.xml", | |
|
260 | "build/.NETFramework/v4.5/System.Drawing.Design.dll", | |
|
261 | "build/.NETFramework/v4.5/System.Drawing.Design.xml", | |
|
262 | "build/.NETFramework/v4.5/System.Drawing.dll", | |
|
263 | "build/.NETFramework/v4.5/System.Drawing.xml", | |
|
264 | "build/.NETFramework/v4.5/System.EnterpriseServices.Thunk.dll", | |
|
265 | "build/.NETFramework/v4.5/System.EnterpriseServices.Wrapper.dll", | |
|
266 | "build/.NETFramework/v4.5/System.EnterpriseServices.dll", | |
|
267 | "build/.NETFramework/v4.5/System.EnterpriseServices.xml", | |
|
268 | "build/.NETFramework/v4.5/System.IO.Compression.FileSystem.dll", | |
|
269 | "build/.NETFramework/v4.5/System.IO.Compression.FileSystem.xml", | |
|
270 | "build/.NETFramework/v4.5/System.IO.Compression.dll", | |
|
271 | "build/.NETFramework/v4.5/System.IO.Compression.xml", | |
|
272 | "build/.NETFramework/v4.5/System.IO.Log.dll", | |
|
273 | "build/.NETFramework/v4.5/System.IO.Log.xml", | |
|
274 | "build/.NETFramework/v4.5/System.IdentityModel.Selectors.dll", | |
|
275 | "build/.NETFramework/v4.5/System.IdentityModel.Selectors.xml", | |
|
276 | "build/.NETFramework/v4.5/System.IdentityModel.Services.dll", | |
|
277 | "build/.NETFramework/v4.5/System.IdentityModel.Services.xml", | |
|
278 | "build/.NETFramework/v4.5/System.IdentityModel.dll", | |
|
279 | "build/.NETFramework/v4.5/System.IdentityModel.xml", | |
|
280 | "build/.NETFramework/v4.5/System.Management.Instrumentation.dll", | |
|
281 | "build/.NETFramework/v4.5/System.Management.Instrumentation.xml", | |
|
282 | "build/.NETFramework/v4.5/System.Management.dll", | |
|
283 | "build/.NETFramework/v4.5/System.Management.xml", | |
|
284 | "build/.NETFramework/v4.5/System.Messaging.dll", | |
|
285 | "build/.NETFramework/v4.5/System.Messaging.xml", | |
|
286 | "build/.NETFramework/v4.5/System.Net.Http.WebRequest.dll", | |
|
287 | "build/.NETFramework/v4.5/System.Net.Http.WebRequest.xml", | |
|
288 | "build/.NETFramework/v4.5/System.Net.Http.dll", | |
|
289 | "build/.NETFramework/v4.5/System.Net.Http.xml", | |
|
290 | "build/.NETFramework/v4.5/System.Net.dll", | |
|
291 | "build/.NETFramework/v4.5/System.Net.xml", | |
|
292 | "build/.NETFramework/v4.5/System.Numerics.dll", | |
|
293 | "build/.NETFramework/v4.5/System.Numerics.xml", | |
|
294 | "build/.NETFramework/v4.5/System.Printing.dll", | |
|
295 | "build/.NETFramework/v4.5/System.Printing.xml", | |
|
296 | "build/.NETFramework/v4.5/System.Reflection.Context.dll", | |
|
297 | "build/.NETFramework/v4.5/System.Reflection.Context.xml", | |
|
298 | "build/.NETFramework/v4.5/System.Runtime.Caching.dll", | |
|
299 | "build/.NETFramework/v4.5/System.Runtime.Caching.xml", | |
|
300 | "build/.NETFramework/v4.5/System.Runtime.DurableInstancing.dll", | |
|
301 | "build/.NETFramework/v4.5/System.Runtime.DurableInstancing.xml", | |
|
302 | "build/.NETFramework/v4.5/System.Runtime.Remoting.dll", | |
|
303 | "build/.NETFramework/v4.5/System.Runtime.Remoting.xml", | |
|
304 | "build/.NETFramework/v4.5/System.Runtime.Serialization.Formatters.Soap.dll", | |
|
305 | "build/.NETFramework/v4.5/System.Runtime.Serialization.Formatters.Soap.xml", | |
|
306 | "build/.NETFramework/v4.5/System.Runtime.Serialization.dll", | |
|
307 | "build/.NETFramework/v4.5/System.Runtime.Serialization.xml", | |
|
308 | "build/.NETFramework/v4.5/System.Security.dll", | |
|
309 | "build/.NETFramework/v4.5/System.Security.xml", | |
|
310 | "build/.NETFramework/v4.5/System.ServiceModel.Activation.dll", | |
|
311 | "build/.NETFramework/v4.5/System.ServiceModel.Activation.xml", | |
|
312 | "build/.NETFramework/v4.5/System.ServiceModel.Activities.dll", | |
|
313 | "build/.NETFramework/v4.5/System.ServiceModel.Activities.xml", | |
|
314 | "build/.NETFramework/v4.5/System.ServiceModel.Channels.dll", | |
|
315 | "build/.NETFramework/v4.5/System.ServiceModel.Channels.xml", | |
|
316 | "build/.NETFramework/v4.5/System.ServiceModel.Discovery.dll", | |
|
317 | "build/.NETFramework/v4.5/System.ServiceModel.Discovery.xml", | |
|
318 | "build/.NETFramework/v4.5/System.ServiceModel.Routing.dll", | |
|
319 | "build/.NETFramework/v4.5/System.ServiceModel.Routing.xml", | |
|
320 | "build/.NETFramework/v4.5/System.ServiceModel.Web.dll", | |
|
321 | "build/.NETFramework/v4.5/System.ServiceModel.Web.xml", | |
|
322 | "build/.NETFramework/v4.5/System.ServiceModel.dll", | |
|
323 | "build/.NETFramework/v4.5/System.ServiceModel.xml", | |
|
324 | "build/.NETFramework/v4.5/System.ServiceProcess.dll", | |
|
325 | "build/.NETFramework/v4.5/System.ServiceProcess.xml", | |
|
326 | "build/.NETFramework/v4.5/System.Speech.dll", | |
|
327 | "build/.NETFramework/v4.5/System.Speech.xml", | |
|
328 | "build/.NETFramework/v4.5/System.Threading.Tasks.Dataflow.xml", | |
|
329 | "build/.NETFramework/v4.5/System.Transactions.dll", | |
|
330 | "build/.NETFramework/v4.5/System.Transactions.xml", | |
|
331 | "build/.NETFramework/v4.5/System.Web.Abstractions.dll", | |
|
332 | "build/.NETFramework/v4.5/System.Web.ApplicationServices.dll", | |
|
333 | "build/.NETFramework/v4.5/System.Web.ApplicationServices.xml", | |
|
334 | "build/.NETFramework/v4.5/System.Web.DataVisualization.Design.dll", | |
|
335 | "build/.NETFramework/v4.5/System.Web.DataVisualization.dll", | |
|
336 | "build/.NETFramework/v4.5/System.Web.DataVisualization.xml", | |
|
337 | "build/.NETFramework/v4.5/System.Web.DynamicData.Design.dll", | |
|
338 | "build/.NETFramework/v4.5/System.Web.DynamicData.Design.xml", | |
|
339 | "build/.NETFramework/v4.5/System.Web.DynamicData.dll", | |
|
340 | "build/.NETFramework/v4.5/System.Web.DynamicData.xml", | |
|
341 | "build/.NETFramework/v4.5/System.Web.Entity.Design.dll", | |
|
342 | "build/.NETFramework/v4.5/System.Web.Entity.Design.xml", | |
|
343 | "build/.NETFramework/v4.5/System.Web.Entity.dll", | |
|
344 | "build/.NETFramework/v4.5/System.Web.Entity.xml", | |
|
345 | "build/.NETFramework/v4.5/System.Web.Extensions.Design.dll", | |
|
346 | "build/.NETFramework/v4.5/System.Web.Extensions.Design.xml", | |
|
347 | "build/.NETFramework/v4.5/System.Web.Extensions.dll", | |
|
348 | "build/.NETFramework/v4.5/System.Web.Extensions.xml", | |
|
349 | "build/.NETFramework/v4.5/System.Web.Mobile.dll", | |
|
350 | "build/.NETFramework/v4.5/System.Web.Mobile.xml", | |
|
351 | "build/.NETFramework/v4.5/System.Web.RegularExpressions.dll", | |
|
352 | "build/.NETFramework/v4.5/System.Web.RegularExpressions.xml", | |
|
353 | "build/.NETFramework/v4.5/System.Web.Routing.dll", | |
|
354 | "build/.NETFramework/v4.5/System.Web.Services.dll", | |
|
355 | "build/.NETFramework/v4.5/System.Web.Services.xml", | |
|
356 | "build/.NETFramework/v4.5/System.Web.dll", | |
|
357 | "build/.NETFramework/v4.5/System.Web.xml", | |
|
358 | "build/.NETFramework/v4.5/System.Windows.Controls.Ribbon.dll", | |
|
359 | "build/.NETFramework/v4.5/System.Windows.Controls.Ribbon.xml", | |
|
360 | "build/.NETFramework/v4.5/System.Windows.Forms.DataVisualization.Design.dll", | |
|
361 | "build/.NETFramework/v4.5/System.Windows.Forms.DataVisualization.dll", | |
|
362 | "build/.NETFramework/v4.5/System.Windows.Forms.DataVisualization.xml", | |
|
363 | "build/.NETFramework/v4.5/System.Windows.Forms.dll", | |
|
364 | "build/.NETFramework/v4.5/System.Windows.Forms.xml", | |
|
365 | "build/.NETFramework/v4.5/System.Windows.Input.Manipulations.dll", | |
|
366 | "build/.NETFramework/v4.5/System.Windows.Input.Manipulations.xml", | |
|
367 | "build/.NETFramework/v4.5/System.Windows.Presentation.dll", | |
|
368 | "build/.NETFramework/v4.5/System.Windows.Presentation.xml", | |
|
369 | "build/.NETFramework/v4.5/System.Windows.dll", | |
|
370 | "build/.NETFramework/v4.5/System.Workflow.Activities.dll", | |
|
371 | "build/.NETFramework/v4.5/System.Workflow.Activities.xml", | |
|
372 | "build/.NETFramework/v4.5/System.Workflow.ComponentModel.dll", | |
|
373 | "build/.NETFramework/v4.5/System.Workflow.ComponentModel.xml", | |
|
374 | "build/.NETFramework/v4.5/System.Workflow.Runtime.dll", | |
|
375 | "build/.NETFramework/v4.5/System.Workflow.Runtime.xml", | |
|
376 | "build/.NETFramework/v4.5/System.WorkflowServices.dll", | |
|
377 | "build/.NETFramework/v4.5/System.WorkflowServices.xml", | |
|
378 | "build/.NETFramework/v4.5/System.Xaml.dll", | |
|
379 | "build/.NETFramework/v4.5/System.Xaml.xml", | |
|
380 | "build/.NETFramework/v4.5/System.Xml.Linq.dll", | |
|
381 | "build/.NETFramework/v4.5/System.Xml.Linq.xml", | |
|
382 | "build/.NETFramework/v4.5/System.Xml.Serialization.dll", | |
|
383 | "build/.NETFramework/v4.5/System.Xml.dll", | |
|
384 | "build/.NETFramework/v4.5/System.Xml.xml", | |
|
385 | "build/.NETFramework/v4.5/System.dll", | |
|
386 | "build/.NETFramework/v4.5/System.xml", | |
|
387 | "build/.NETFramework/v4.5/UIAutomationClient.dll", | |
|
388 | "build/.NETFramework/v4.5/UIAutomationClient.xml", | |
|
389 | "build/.NETFramework/v4.5/UIAutomationClientsideProviders.dll", | |
|
390 | "build/.NETFramework/v4.5/UIAutomationClientsideProviders.xml", | |
|
391 | "build/.NETFramework/v4.5/UIAutomationProvider.dll", | |
|
392 | "build/.NETFramework/v4.5/UIAutomationProvider.xml", | |
|
393 | "build/.NETFramework/v4.5/UIAutomationTypes.dll", | |
|
394 | "build/.NETFramework/v4.5/UIAutomationTypes.xml", | |
|
395 | "build/.NETFramework/v4.5/WindowsBase.dll", | |
|
396 | "build/.NETFramework/v4.5/WindowsBase.xml", | |
|
397 | "build/.NETFramework/v4.5/WindowsFormsIntegration.dll", | |
|
398 | "build/.NETFramework/v4.5/WindowsFormsIntegration.xml", | |
|
399 | "build/.NETFramework/v4.5/XamlBuildTask.dll", | |
|
400 | "build/.NETFramework/v4.5/XamlBuildTask.xml", | |
|
401 | "build/.NETFramework/v4.5/mscorlib.dll", | |
|
402 | "build/.NETFramework/v4.5/mscorlib.xml", | |
|
403 | "build/.NETFramework/v4.5/sysglobl.dll", | |
|
404 | "build/.NETFramework/v4.5/sysglobl.xml", | |
|
405 | "build/Microsoft.NETFramework.ReferenceAssemblies.net45.targets", | |
|
406 | "microsoft.netframework.referenceassemblies.net45.1.0.0.nupkg.sha512", | |
|
407 | "microsoft.netframework.referenceassemblies.net45.nuspec" | |
|
408 | ] | |
|
409 | }, | |
|
410 | "NETStandard.Library/2.0.3": { | |
|
411 | "sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==", | |
|
412 | "type": "package", | |
|
413 | "path": "netstandard.library/2.0.3", | |
|
414 | "files": [ | |
|
415 | ".nupkg.metadata", | |
|
416 | "LICENSE.TXT", | |
|
417 | "THIRD-PARTY-NOTICES.TXT", | |
|
418 | "build/netstandard2.0/NETStandard.Library.targets", | |
|
419 | "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", | |
|
420 | "build/netstandard2.0/ref/System.AppContext.dll", | |
|
421 | "build/netstandard2.0/ref/System.Collections.Concurrent.dll", | |
|
422 | "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", | |
|
423 | "build/netstandard2.0/ref/System.Collections.Specialized.dll", | |
|
424 | "build/netstandard2.0/ref/System.Collections.dll", | |
|
425 | "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", | |
|
426 | "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", | |
|
427 | "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", | |
|
428 | "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", | |
|
429 | "build/netstandard2.0/ref/System.ComponentModel.dll", | |
|
430 | "build/netstandard2.0/ref/System.Console.dll", | |
|
431 | "build/netstandard2.0/ref/System.Core.dll", | |
|
432 | "build/netstandard2.0/ref/System.Data.Common.dll", | |
|
433 | "build/netstandard2.0/ref/System.Data.dll", | |
|
434 | "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", | |
|
435 | "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", | |
|
436 | "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", | |
|
437 | "build/netstandard2.0/ref/System.Diagnostics.Process.dll", | |
|
438 | "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", | |
|
439 | "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", | |
|
440 | "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", | |
|
441 | "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", | |
|
442 | "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", | |
|
443 | "build/netstandard2.0/ref/System.Drawing.Primitives.dll", | |
|
444 | "build/netstandard2.0/ref/System.Drawing.dll", | |
|
445 | "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", | |
|
446 | "build/netstandard2.0/ref/System.Globalization.Calendars.dll", | |
|
447 | "build/netstandard2.0/ref/System.Globalization.Extensions.dll", | |
|
448 | "build/netstandard2.0/ref/System.Globalization.dll", | |
|
449 | "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", | |
|
450 | "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", | |
|
451 | "build/netstandard2.0/ref/System.IO.Compression.dll", | |
|
452 | "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", | |
|
453 | "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", | |
|
454 | "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", | |
|
455 | "build/netstandard2.0/ref/System.IO.FileSystem.dll", | |
|
456 | "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", | |
|
457 | "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", | |
|
458 | "build/netstandard2.0/ref/System.IO.Pipes.dll", | |
|
459 | "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", | |
|
460 | "build/netstandard2.0/ref/System.IO.dll", | |
|
461 | "build/netstandard2.0/ref/System.Linq.Expressions.dll", | |
|
462 | "build/netstandard2.0/ref/System.Linq.Parallel.dll", | |
|
463 | "build/netstandard2.0/ref/System.Linq.Queryable.dll", | |
|
464 | "build/netstandard2.0/ref/System.Linq.dll", | |
|
465 | "build/netstandard2.0/ref/System.Net.Http.dll", | |
|
466 | "build/netstandard2.0/ref/System.Net.NameResolution.dll", | |
|
467 | "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", | |
|
468 | "build/netstandard2.0/ref/System.Net.Ping.dll", | |
|
469 | "build/netstandard2.0/ref/System.Net.Primitives.dll", | |
|
470 | "build/netstandard2.0/ref/System.Net.Requests.dll", | |
|
471 | "build/netstandard2.0/ref/System.Net.Security.dll", | |
|
472 | "build/netstandard2.0/ref/System.Net.Sockets.dll", | |
|
473 | "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", | |
|
474 | "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", | |
|
475 | "build/netstandard2.0/ref/System.Net.WebSockets.dll", | |
|
476 | "build/netstandard2.0/ref/System.Net.dll", | |
|
477 | "build/netstandard2.0/ref/System.Numerics.dll", | |
|
478 | "build/netstandard2.0/ref/System.ObjectModel.dll", | |
|
479 | "build/netstandard2.0/ref/System.Reflection.Extensions.dll", | |
|
480 | "build/netstandard2.0/ref/System.Reflection.Primitives.dll", | |
|
481 | "build/netstandard2.0/ref/System.Reflection.dll", | |
|
482 | "build/netstandard2.0/ref/System.Resources.Reader.dll", | |
|
483 | "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", | |
|
484 | "build/netstandard2.0/ref/System.Resources.Writer.dll", | |
|
485 | "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", | |
|
486 | "build/netstandard2.0/ref/System.Runtime.Extensions.dll", | |
|
487 | "build/netstandard2.0/ref/System.Runtime.Handles.dll", | |
|
488 | "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", | |
|
489 | "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", | |
|
490 | "build/netstandard2.0/ref/System.Runtime.Numerics.dll", | |
|
491 | "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", | |
|
492 | "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", | |
|
493 | "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", | |
|
494 | "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", | |
|
495 | "build/netstandard2.0/ref/System.Runtime.Serialization.dll", | |
|
496 | "build/netstandard2.0/ref/System.Runtime.dll", | |
|
497 | "build/netstandard2.0/ref/System.Security.Claims.dll", | |
|
498 | "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", | |
|
499 | "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", | |
|
500 | "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", | |
|
501 | "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", | |
|
502 | "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", | |
|
503 | "build/netstandard2.0/ref/System.Security.Principal.dll", | |
|
504 | "build/netstandard2.0/ref/System.Security.SecureString.dll", | |
|
505 | "build/netstandard2.0/ref/System.ServiceModel.Web.dll", | |
|
506 | "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", | |
|
507 | "build/netstandard2.0/ref/System.Text.Encoding.dll", | |
|
508 | "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", | |
|
509 | "build/netstandard2.0/ref/System.Threading.Overlapped.dll", | |
|
510 | "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", | |
|
511 | "build/netstandard2.0/ref/System.Threading.Tasks.dll", | |
|
512 | "build/netstandard2.0/ref/System.Threading.Thread.dll", | |
|
513 | "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", | |
|
514 | "build/netstandard2.0/ref/System.Threading.Timer.dll", | |
|
515 | "build/netstandard2.0/ref/System.Threading.dll", | |
|
516 | "build/netstandard2.0/ref/System.Transactions.dll", | |
|
517 | "build/netstandard2.0/ref/System.ValueTuple.dll", | |
|
518 | "build/netstandard2.0/ref/System.Web.dll", | |
|
519 | "build/netstandard2.0/ref/System.Windows.dll", | |
|
520 | "build/netstandard2.0/ref/System.Xml.Linq.dll", | |
|
521 | "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", | |
|
522 | "build/netstandard2.0/ref/System.Xml.Serialization.dll", | |
|
523 | "build/netstandard2.0/ref/System.Xml.XDocument.dll", | |
|
524 | "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", | |
|
525 | "build/netstandard2.0/ref/System.Xml.XPath.dll", | |
|
526 | "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", | |
|
527 | "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", | |
|
528 | "build/netstandard2.0/ref/System.Xml.dll", | |
|
529 | "build/netstandard2.0/ref/System.dll", | |
|
530 | "build/netstandard2.0/ref/mscorlib.dll", | |
|
531 | "build/netstandard2.0/ref/netstandard.dll", | |
|
532 | "build/netstandard2.0/ref/netstandard.xml", | |
|
533 | "lib/netstandard1.0/_._", | |
|
534 | "netstandard.library.2.0.3.nupkg.sha512", | |
|
535 | "netstandard.library.nuspec" | |
|
536 | ] | |
|
537 | }, | |
|
538 | 17 | "FNA/1.0.0": { |
|
539 | 18 | "type": "project", |
|
540 |
"path": "../../FNA/FNA. |
|
|
541 |
"msbuildProject": "../../FNA/FNA. |
|
|
19 | "path": "../../FNA/FNA.csproj", | |
|
20 | "msbuildProject": "../../FNA/FNA.csproj" | |
|
542 | 21 | } |
|
543 | 22 | }, |
|
544 | 23 | "projectFileDependencyGroups": { |
|
545 | 24 | ".NETFramework,Version=v4.5": [ |
|
546 |
"FNA >= 1.0.0" |
|
|
547 | "Microsoft.NETFramework.ReferenceAssemblies >= 1.0.0" | |
|
548 | ], | |
|
549 | ".NETStandard,Version=v2.0": [ | |
|
550 | "FNA >= 1.0.0", | |
|
551 | "NETStandard.Library >= 2.0.3" | |
|
25 | "FNA >= 1.0.0" | |
|
552 | 26 | ] |
|
553 | 27 | }, |
|
554 | 28 | "packageFolders": { |
|
555 |
"/ |
|
|
556 | "/usr/share/dotnet/sdk/NuGetFallbackFolder": {} | |
|
29 | "/Users/alys/.nuget/packages/": {} | |
|
557 | 30 | }, |
|
558 | 31 | "project": { |
|
559 | 32 | "version": "1.0.0", |
|
560 | 33 | "restore": { |
|
561 |
"projectUniqueName": "/ |
|
|
34 | "projectUniqueName": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj", | |
|
562 | 35 | "projectName": "SpriteFontPlus", |
|
563 |
"projectPath": "/ |
|
|
564 |
"packagesPath": "/ |
|
|
565 |
"outputPath": "/ |
|
|
36 | "projectPath": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj", | |
|
37 | "packagesPath": "/Users/alys/.nuget/packages/", | |
|
38 | "outputPath": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/obj/", | |
|
566 | 39 | "projectStyle": "PackageReference", |
|
567 | "crossTargeting": true, | |
|
568 | "fallbackFolders": [ | |
|
569 | "/usr/share/dotnet/sdk/NuGetFallbackFolder" | |
|
570 | ], | |
|
571 | 40 | "configFilePaths": [ |
|
572 |
"/ |
|
|
41 | "/Users/alys/.config/NuGet/NuGet.Config" | |
|
573 | 42 | ], |
|
574 | 43 | "originalTargetFrameworks": [ |
|
575 |
"net45" |
|
|
576 | "netstandard2.0" | |
|
44 | "net45" | |
|
577 | 45 | ], |
|
578 | 46 | "sources": { |
|
579 | 47 | "https://api.nuget.org/v3/index.json": {} |
|
580 | 48 | }, |
|
581 | 49 | "frameworks": { |
|
582 | 50 | "net45": { |
|
583 | "targetAlias": "net45", | |
|
584 | 51 | "projectReferences": { |
|
585 |
"/ |
|
|
586 |
"projectPath": "/ |
|
|
587 | } | |
|
588 | } | |
|
589 | }, | |
|
590 | "netstandard2.0": { | |
|
591 | "targetAlias": "netstandard2.0", | |
|
592 | "projectReferences": { | |
|
593 | "/home/alys/repos/isometric-park-fna/FNA/FNA.Core.csproj": { | |
|
594 | "projectPath": "/home/alys/repos/isometric-park-fna/FNA/FNA.Core.csproj" | |
|
52 | "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj": { | |
|
53 | "projectPath": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj" | |
|
595 | 54 | } |
|
596 | 55 | } |
|
597 | 56 | } |
@@ -604,38 +63,7 | |||
|
604 | 63 | }, |
|
605 | 64 | "frameworks": { |
|
606 | 65 | "net45": { |
|
607 | "targetAlias": "net45", | |
|
608 | "dependencies": { | |
|
609 | "Microsoft.NETFramework.ReferenceAssemblies": { | |
|
610 | "suppressParent": "All", | |
|
611 | "target": "Package", | |
|
612 | "version": "[1.0.0, )", | |
|
613 | "autoReferenced": true | |
|
614 | } | |
|
615 | }, | |
|
616 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.201/RuntimeIdentifierGraph.json" | |
|
617 | }, | |
|
618 | "netstandard2.0": { | |
|
619 | "targetAlias": "netstandard2.0", | |
|
620 | "dependencies": { | |
|
621 | "NETStandard.Library": { | |
|
622 | "suppressParent": "All", | |
|
623 | "target": "Package", | |
|
624 | "version": "[2.0.3, )", | |
|
625 | "autoReferenced": true | |
|
626 | } | |
|
627 | }, | |
|
628 | "imports": [ | |
|
629 | "net461", | |
|
630 | "net462", | |
|
631 | "net47", | |
|
632 | "net471", | |
|
633 | "net472", | |
|
634 | "net48" | |
|
635 | ], | |
|
636 | "assetTargetFallback": true, | |
|
637 | "warn": true, | |
|
638 | "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.201/RuntimeIdentifierGraph.json" | |
|
66 | "runtimeIdentifierGraphPath": "/Library/Frameworks/Mono.framework/Versions/6.12.0/lib/mono/msbuild/Current/bin/RuntimeIdentifierGraph.json" | |
|
639 | 67 | } |
|
640 | 68 | } |
|
641 | 69 | } |
@@ -1,13 +1,8 | |||
|
1 | 1 | { |
|
2 | 2 | "version": 2, |
|
3 | "dgSpecHash": "Efsuks8cHxqhZCyd6XNLGs8LjwzsxGwqE0aseS+1wuxER/2+SRrNXhamVo8xA0RVHGtDCJZbeU5nmyeDAVj5oQ==", | |
|
3 | "dgSpecHash": "kUPsWi+W/I8KOuiF0fQ9nWh1vVsW3b0wAQVjldBK6JNRF3usvNENwsXcLXddNG6Wh/129HHhkfaanQmLUK7wcA==", | |
|
4 | 4 | "success": true, |
|
5 |
"projectFilePath": "/ |
|
|
6 | "expectedPackageFiles": [ | |
|
7 | "/usr/share/dotnet/sdk/NuGetFallbackFolder/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", | |
|
8 | "/home/alys/.nuget/packages/microsoft.netframework.referenceassemblies/1.0.0/microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512", | |
|
9 | "/home/alys/.nuget/packages/microsoft.netframework.referenceassemblies.net45/1.0.0/microsoft.netframework.referenceassemblies.net45.1.0.0.nupkg.sha512", | |
|
10 | "/usr/share/dotnet/sdk/NuGetFallbackFolder/netstandard.library/2.0.3/netstandard.library.2.0.3.nupkg.sha512" | |
|
11 | ], | |
|
5 | "projectFilePath": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj", | |
|
6 | "expectedPackageFiles": [], | |
|
12 | 7 | "logs": [] |
|
13 | 8 | } No newline at end of file |
You need to be logged in to leave comments.
Login now