Skip to content

Commit 110e228

Browse files
committed
Preview release
1 parent b550fd5 commit 110e228

34 files changed

+10867
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -154,3 +154,6 @@ $RECYCLE.BIN/
154154

155155
# Mac desktop service store files
156156
.DS_Store
157+
158+
# NuGet package store
159+
packages/

.nuget/NuGet.Config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<solution>
4+
<add key="disableSourceControlIntegration" value="true" />
5+
</solution>
6+
</configuration>

.nuget/NuGet.exe

1.58 MB
Binary file not shown.

.nuget/NuGet.targets

+151
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(MSBuildProjectDirectory)\..\</SolutionDir>
5+
6+
<!-- Enable the restore command to run before builds -->
7+
<RestorePackages Condition=" '$(RestorePackages)' == '' ">false</RestorePackages>
8+
9+
<!-- Property that enables building a package from a project -->
10+
<BuildPackage Condition=" '$(BuildPackage)' == '' ">false</BuildPackage>
11+
12+
<!-- Determines if package restore consent is required to restore packages -->
13+
<RequireRestoreConsent Condition=" '$(RequireRestoreConsent)' != 'false' ">true</RequireRestoreConsent>
14+
15+
<!-- Download NuGet.exe if it does not already exist -->
16+
<DownloadNuGetExe Condition=" '$(DownloadNuGetExe)' == '' ">false</DownloadNuGetExe>
17+
</PropertyGroup>
18+
19+
<ItemGroup Condition=" '$(PackageSources)' == '' ">
20+
<!-- Package sources used to restore packages. By default, registered sources under %APPDATA%\NuGet\NuGet.Config will be used -->
21+
<!-- The official NuGet package source (https://www.nuget.org/api/v2/) will be excluded if package sources are specified and it does not appear in the list -->
22+
<!--
23+
<PackageSource Include="https://www.nuget.org/api/v2/" />
24+
<PackageSource Include="https://my-nuget-source/nuget/" />
25+
-->
26+
</ItemGroup>
27+
28+
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT'">
29+
<!-- Windows specific commands -->
30+
<NuGetToolsPath>$([System.IO.Path]::Combine($(SolutionDir), ".nuget"))</NuGetToolsPath>
31+
</PropertyGroup>
32+
33+
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT'">
34+
<!-- We need to launch nuget.exe with the mono command if we're not on windows -->
35+
<NuGetToolsPath>$(SolutionDir).nuget</NuGetToolsPath>
36+
</PropertyGroup>
37+
38+
<PropertyGroup>
39+
<PackagesProjectConfig>packages.$(MSBuildProjectName.Replace(' ', '_')).config</PackagesProjectConfig>
40+
</PropertyGroup>
41+
42+
<Choose>
43+
<When Condition="Exists('$(PackagesProjectConfig)')">
44+
<PropertyGroup>
45+
<PackagesConfig>$(PackagesProjectConfig)</PackagesConfig>
46+
</PropertyGroup>
47+
</When>
48+
<When Condition="Exists('packages.config')">
49+
<PropertyGroup>
50+
<PackagesConfig>packages.config</PackagesConfig>
51+
</PropertyGroup>
52+
</When>
53+
</Choose>
54+
55+
<PropertyGroup>
56+
<!-- NuGet command -->
57+
<NuGetExePath Condition=" '$(NuGetExePath)' == '' ">$(NuGetToolsPath)\NuGet.exe</NuGetExePath>
58+
<PackageSources Condition=" $(PackageSources) == '' ">@(PackageSource)</PackageSources>
59+
60+
<NuGetCommand Condition=" '$(OS)' == 'Windows_NT'">"$(NuGetExePath)"</NuGetCommand>
61+
<NuGetCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(NuGetExePath)</NuGetCommand>
62+
63+
<PackageOutputDir Condition="$(PackageOutputDir) == ''">$(TargetDir.Trim('\\'))</PackageOutputDir>
64+
65+
<RequireConsentSwitch Condition=" $(RequireRestoreConsent) == 'true' ">-RequireConsent</RequireConsentSwitch>
66+
<NonInteractiveSwitch Condition=" '$(VisualStudioVersion)' != '' AND '$(OS)' == 'Windows_NT' ">-NonInteractive</NonInteractiveSwitch>
67+
68+
<PaddedSolutionDir Condition=" '$(OS)' == 'Windows_NT'">"$(SolutionDir) "</PaddedSolutionDir>
69+
<PaddedSolutionDir Condition=" '$(OS)' != 'Windows_NT' ">"$(SolutionDir)"</PaddedSolutionDir>
70+
71+
<!-- Commands -->
72+
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir)</RestoreCommand>
73+
<BuildCommand>$(NuGetCommand) pack "$(ProjectPath)" -Properties "Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols</BuildCommand>
74+
75+
<!-- We need to ensure packages are restored prior to assembly resolve -->
76+
<BuildDependsOn Condition="$(RestorePackages) == 'true'">
77+
RestorePackages;
78+
$(BuildDependsOn);
79+
</BuildDependsOn>
80+
81+
<!-- Make the build depend on restore packages -->
82+
<BuildDependsOn Condition="$(BuildPackage) == 'true'">
83+
$(BuildDependsOn);
84+
BuildPackage;
85+
</BuildDependsOn>
86+
</PropertyGroup>
87+
88+
<Target Name="CheckPrerequisites">
89+
<!-- Raise an error if we're unable to locate nuget.exe -->
90+
<Error Condition="'$(DownloadNuGetExe)' != 'true' AND !Exists('$(NuGetExePath)')" Text="Unable to locate '$(NuGetExePath)'" />
91+
<!--
92+
Take advantage of MsBuild's build dependency tracking to make sure that we only ever download nuget.exe once.
93+
This effectively acts as a lock that makes sure that the download operation will only happen once and all
94+
parallel builds will have to wait for it to complete.
95+
-->
96+
<MsBuild Targets="_DownloadNuGet" Projects="$(MSBuildThisFileFullPath)" Properties="Configuration=NOT_IMPORTANT;DownloadNuGetExe=$(DownloadNuGetExe)" />
97+
</Target>
98+
99+
<Target Name="_DownloadNuGet">
100+
<DownloadNuGet OutputFilename="$(NuGetExePath)" Condition=" '$(DownloadNuGetExe)' == 'true' AND !Exists('$(NuGetExePath)')" />
101+
</Target>
102+
103+
<Target Name="RestorePackages" DependsOnTargets="CheckPrerequisites">
104+
<Exec Command="$(RestoreCommand)"
105+
Condition="'$(OS)' != 'Windows_NT' And Exists('$(PackagesConfig)')" />
106+
107+
<Exec Command="$(RestoreCommand)"
108+
LogStandardErrorAsError="true"
109+
Condition="'$(OS)' == 'Windows_NT' And Exists('$(PackagesConfig)')" />
110+
</Target>
111+
112+
<Target Name="BuildPackage" DependsOnTargets="CheckPrerequisites">
113+
<Exec Command="$(BuildCommand)"
114+
Condition=" '$(OS)' != 'Windows_NT' " />
115+
116+
<Exec Command="$(BuildCommand)"
117+
LogStandardErrorAsError="true"
118+
Condition=" '$(OS)' == 'Windows_NT' " />
119+
</Target>
120+
121+
<UsingTask TaskName="DownloadNuGet" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
122+
<ParameterGroup>
123+
<OutputFilename ParameterType="System.String" Required="true" />
124+
</ParameterGroup>
125+
<Task>
126+
<Reference Include="System.Core" />
127+
<Using Namespace="System" />
128+
<Using Namespace="System.IO" />
129+
<Using Namespace="System.Net" />
130+
<Using Namespace="Microsoft.Build.Framework" />
131+
<Using Namespace="Microsoft.Build.Utilities" />
132+
<Code Type="Fragment" Language="cs">
133+
<![CDATA[
134+
try {
135+
OutputFilename = Path.GetFullPath(OutputFilename);
136+
137+
Log.LogMessage("Downloading latest version of NuGet.exe...");
138+
WebClient webClient = new WebClient();
139+
webClient.DownloadFile("https://www.nuget.org/nuget.exe", OutputFilename);
140+
141+
return true;
142+
}
143+
catch (Exception ex) {
144+
Log.LogErrorFromException(ex);
145+
return false;
146+
}
147+
]]>
148+
</Code>
149+
</Task>
150+
</UsingTask>
151+
</Project>

JsonLD.sln

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.30110.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonLD", "src\JsonLD\JsonLD.csproj", "{C2DC1FFE-CD13-430E-B2FF-01574F72CACD}"
7+
EndProject
8+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{BADA6FA2-85B9-40C9-A4E4-C64F01F6AB99}"
9+
ProjectSection(SolutionItems) = preProject
10+
.nuget\NuGet.Config = .nuget\NuGet.Config
11+
.nuget\NuGet.exe = .nuget\NuGet.exe
12+
.nuget\NuGet.targets = .nuget\NuGet.targets
13+
EndProjectSection
14+
EndProject
15+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonLD.Test", "tests\JsonLD.Test\JsonLD.Test.csproj", "{8BAC5CEF-6505-4DFC-9D78-3A55EAB9B9DE}"
16+
EndProject
17+
Global
18+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
19+
Debug|Any CPU = Debug|Any CPU
20+
Release|Any CPU = Release|Any CPU
21+
EndGlobalSection
22+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
23+
{C2DC1FFE-CD13-430E-B2FF-01574F72CACD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{C2DC1FFE-CD13-430E-B2FF-01574F72CACD}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{C2DC1FFE-CD13-430E-B2FF-01574F72CACD}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{C2DC1FFE-CD13-430E-B2FF-01574F72CACD}.Release|Any CPU.Build.0 = Release|Any CPU
27+
{8BAC5CEF-6505-4DFC-9D78-3A55EAB9B9DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28+
{8BAC5CEF-6505-4DFC-9D78-3A55EAB9B9DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
29+
{8BAC5CEF-6505-4DFC-9D78-3A55EAB9B9DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{8BAC5CEF-6505-4DFC-9D78-3A55EAB9B9DE}.Release|Any CPU.Build.0 = Release|Any CPU
31+
EndGlobalSection
32+
GlobalSection(SolutionProperties) = preSolution
33+
HideSolutionNode = FALSE
34+
EndGlobalSection
35+
EndGlobal

0 commit comments

Comments
 (0)