Skip to content

Commit 4884e33

Browse files
committed
GenericJson investigation
1 parent 2fc54c7 commit 4884e33

29 files changed

+1554
-916
lines changed

Diff for: JsonLD.sln

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 15
4-
VisualStudioVersion = 15.0.28010.2026
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30523.141
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "json-ld.net", "src\json-ld.net\json-ld.net.csproj", "{E1AB2A29-D1E4-45A1-9076-8255916F5693}"
77
EndProject
@@ -12,9 +12,11 @@ EndProject
1212
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{8010CF28-BCB3-4DC2-901F-3118B2AAD142}"
1313
EndProject
1414
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "root", "root", "{4B8ED350-355A-4D30-9F63-B13FBFDBD9E8}"
15-
ProjectSection(SolutionItems) = preProject
16-
.gitignore = .gitignore
17-
EndProjectSection
15+
ProjectSection(SolutionItems) = preProject
16+
.gitignore = .gitignore
17+
EndProjectSection
18+
EndProject
19+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GenericJson", "src\GenericJson\GenericJson.csproj", "{08018825-CCFF-49B3-812E-611AF7098F6D}"
1820
EndProject
1921
Global
2022
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -30,15 +32,20 @@ Global
3032
{05CBE0E2-FBD2-40D1-BD9A-D30BD7ACF219}.Debug|Any CPU.Build.0 = Debug|Any CPU
3133
{05CBE0E2-FBD2-40D1-BD9A-D30BD7ACF219}.Release|Any CPU.ActiveCfg = Release|Any CPU
3234
{05CBE0E2-FBD2-40D1-BD9A-D30BD7ACF219}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{08018825-CCFF-49B3-812E-611AF7098F6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{08018825-CCFF-49B3-812E-611AF7098F6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{08018825-CCFF-49B3-812E-611AF7098F6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{08018825-CCFF-49B3-812E-611AF7098F6D}.Release|Any CPU.Build.0 = Release|Any CPU
3339
EndGlobalSection
3440
GlobalSection(SolutionProperties) = preSolution
3541
HideSolutionNode = FALSE
3642
EndGlobalSection
37-
GlobalSection(ExtensibilityGlobals) = postSolution
38-
SolutionGuid = {F10834B6-ACA3-4C86-892B-368D0B68ED83}
39-
EndGlobalSection
4043
GlobalSection(NestedProjects) = preSolution
4144
{E1AB2A29-D1E4-45A1-9076-8255916F5693} = {8D83EC18-10BB-4C6E-A34A-AC183AD6D814}
4245
{05CBE0E2-FBD2-40D1-BD9A-D30BD7ACF219} = {8010CF28-BCB3-4DC2-901F-3118B2AAD142}
46+
{08018825-CCFF-49B3-812E-611AF7098F6D} = {8D83EC18-10BB-4C6E-A34A-AC183AD6D814}
47+
EndGlobalSection
48+
GlobalSection(ExtensibilityGlobals) = postSolution
49+
SolutionGuid = {F10834B6-ACA3-4C86-892B-368D0B68ED83}
4350
EndGlobalSection
4451
EndGlobal

Diff for: src/GenericJson/GenericJson.csproj

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>netstandard2.0</TargetFrameworks>
5+
</PropertyGroup>
6+
7+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
8+
<PackageReference Include="System.Text.Json">
9+
<Version>4.7.2</Version>
10+
</PackageReference>
11+
</ItemGroup>
12+
</Project>

0 commit comments

Comments
 (0)