Skip to content

Commit 395ee75

Browse files
committed
Ensure csproj based sln compiles
1 parent 95a7715 commit 395ee75

File tree

8 files changed

+136
-36
lines changed

8 files changed

+136
-36
lines changed

paket.dependencies

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ nuget Rx-Linq
2626
nuget Rx-Main
2727
nuget Rx-PlatformServices
2828

29+
source https://api.nuget.org/v3/index.json
30+
31+
nuget AsciiDocNet
32+
2933
group build
3034

3135
source https://www.nuget.org/api/v2

paket.lock

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
NUGET
22
remote: https://www.nuget.org/api/v2
33
specs:
4+
AsciiDocNet (1.0.0-alpha2)
45
Bogus (3.0.5-beta-2)
56
Newtonsoft.Json (>= 8.0.2) - framework: >= net40, dnx451, dnxcore50
67
System.ComponentModel (>= 4.0.1-beta-23516) - framework: dnxcore50
@@ -304,7 +305,7 @@ NUGET
304305
xunit (2.1.0)
305306
xunit.assert (2.1.0)
306307
xunit.core (2.1.0)
307-
xunit.abstractions (2.0.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.0
308+
xunit.abstractions (2.0.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.1, wpv8.0
308309
xunit.assert (2.1.0)
309310
System.Collections (>= 4.0.0) - framework: dnxcore50
310311
System.Diagnostics.Debug (>= 4.0.0) - framework: dnxcore50
@@ -328,11 +329,11 @@ NUGET
328329
System.Runtime.Extensions (>= 4.0.0) - framework: dnxcore50
329330
System.Threading.Tasks (>= 4.0.0) - framework: dnxcore50
330331
xunit.abstractions (>= 2.0.0) - framework: dnxcore50
331-
xunit.extensibility.core (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.0
332-
xunit.extensibility.execution (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.0
333-
xunit.extensibility.core (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.0
332+
xunit.extensibility.core (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.1, wpv8.0
333+
xunit.extensibility.execution (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.1, wpv8.0
334+
xunit.extensibility.core (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.1, wpv8.0
334335
xunit.abstractions (2.0.0)
335-
xunit.extensibility.execution (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.0
336+
xunit.extensibility.execution (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, portable-net45+win80+wp80+wpa81, xamarinios, winv4.5, wpv8.1, wpv8.0
336337
System.Collections (>= 4.0.0) - framework: dnxcore50
337338
System.Diagnostics.Debug (>= 4.0.0) - framework: dnxcore50
338339
System.Globalization (>= 4.0.0) - framework: dnxcore50
@@ -347,7 +348,7 @@ NUGET
347348
System.Threading (>= 4.0.0) - framework: dnxcore50
348349
System.Threading.Tasks (>= 4.0.0) - framework: dnxcore50
349350
xunit.abstractions (>= 2.0.0) - framework: dnxcore50
350-
xunit.extensibility.core (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, xamarinios, winv4.5, wpv8.0
351+
xunit.extensibility.core (2.1.0) - framework: >= net45, dnx451, dnxcore50, monoandroid, monotouch, xamarinios, winv4.5, wpv8.1, wpv8.0
351352

352353
GROUP build
353354
NUGET

src/CodeGeneration/Nest.Litterateur/Nest.Litterateur.csproj

Lines changed: 73 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,22 @@
3939
<Reference Include="System.Core" />
4040
</ItemGroup>
4141
<ItemGroup>
42+
<Compile Include="AsciiDoc\GeneratedAsciidocVisitor.cs" />
43+
<Compile Include="AsciiDoc\RawAsciidocVisitor.cs" />
4244
<Compile Include="Documentation\Blocks\CodeBlock.cs" />
4345
<Compile Include="Documentation\Blocks\CombinedBlock.cs" />
4446
<Compile Include="Documentation\Blocks\IDocumentationBlock.cs" />
4547
<Compile Include="Documentation\Blocks\TextBlock.cs" />
4648
<Compile Include="Documentation\Files\CSharpDocumentationFile.cs" />
4749
<Compile Include="Documentation\Files\DocumentationFile.cs" />
50+
<Compile Include="Documentation\Files\ImageDocumentationFile.cs" />
4851
<Compile Include="Documentation\Files\RawDocumentationFile.cs" />
4952
<Compile Include="EnumerableExtensions.cs" />
50-
<Compile Include="Linker\Linker.cs" />
53+
<Compile Include="Language.cs" />
5154
<Compile Include="LitUp.cs" />
5255
<Compile Include="Program.cs" />
5356
<Compile Include="Properties\AssemblyInfo.cs" />
57+
<Compile Include="StringExtensions.cs" />
5458
<Compile Include="Walkers\CodeWithDocumentationWalker.cs" />
5559
<Compile Include="Walkers\DocumentationFileWalker.cs" />
5660
<None Include="App.config" />
@@ -65,6 +69,17 @@
6569
</Target>
6670
-->
6771
<Import Project="..\..\..\.paket\paket.targets" />
72+
<Choose>
73+
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5' Or $(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.5.3' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1')">
74+
<ItemGroup>
75+
<Reference Include="AsciiDocNet">
76+
<HintPath>..\..\..\packages\AsciiDocNet\lib\net45\AsciiDocNet.dll</HintPath>
77+
<Private>True</Private>
78+
<Paket>True</Paket>
79+
</Reference>
80+
</ItemGroup>
81+
</When>
82+
</Choose>
6883
<ItemGroup>
6984
<Analyzer Include="..\..\..\packages\Microsoft.CodeAnalysis.Analyzers\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll">
7085
<Paket>True</Paket>
@@ -113,6 +128,62 @@
113128
</ItemGroup>
114129
</When>
115130
</Choose>
131+
<Choose>
132+
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And $(TargetFrameworkVersion) == 'v3.5'">
133+
<ItemGroup>
134+
<Reference Include="Newtonsoft.Json">
135+
<HintPath>..\..\..\packages\Newtonsoft.Json\lib\net35\Newtonsoft.Json.dll</HintPath>
136+
<Private>True</Private>
137+
<Paket>True</Paket>
138+
</Reference>
139+
</ItemGroup>
140+
</When>
141+
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v2.0' Or $(TargetFrameworkVersion) == 'v3.0')">
142+
<ItemGroup>
143+
<Reference Include="Newtonsoft.Json">
144+
<HintPath>..\..\..\packages\Newtonsoft.Json\lib\net20\Newtonsoft.Json.dll</HintPath>
145+
<Private>True</Private>
146+
<Paket>True</Paket>
147+
</Reference>
148+
</ItemGroup>
149+
</When>
150+
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.0')">
151+
<ItemGroup>
152+
<Reference Include="Newtonsoft.Json">
153+
<HintPath>..\..\..\packages\Newtonsoft.Json\lib\net40\Newtonsoft.Json.dll</HintPath>
154+
<Private>True</Private>
155+
<Paket>True</Paket>
156+
</Reference>
157+
</ItemGroup>
158+
</When>
159+
<When Condition="$(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5' Or $(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.5.3' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1')">
160+
<ItemGroup>
161+
<Reference Include="Newtonsoft.Json">
162+
<HintPath>..\..\..\packages\Newtonsoft.Json\lib\net45\Newtonsoft.Json.dll</HintPath>
163+
<Private>True</Private>
164+
<Paket>True</Paket>
165+
</Reference>
166+
</ItemGroup>
167+
</When>
168+
<When Condition="($(TargetFrameworkIdentifier) == 'MonoAndroid') Or ($(TargetFrameworkIdentifier) == 'MonoTouch') Or ($(TargetFrameworkIdentifier) == 'Xamarin.iOS') Or ($(TargetFrameworkIdentifier) == 'Xamarin.Mac') Or ($(TargetFrameworkProfile) == 'Profile7') Or ($(TargetFrameworkProfile) == 'Profile44') Or ($(TargetFrameworkProfile) == 'Profile49') Or ($(TargetFrameworkProfile) == 'Profile78') Or ($(TargetFrameworkProfile) == 'Profile111') Or ($(TargetFrameworkProfile) == 'Profile151') Or ($(TargetFrameworkProfile) == 'Profile259')">
169+
<ItemGroup>
170+
<Reference Include="Newtonsoft.Json">
171+
<HintPath>..\..\..\packages\Newtonsoft.Json\lib\portable-net45+wp80+win8+wpa81+dnxcore50\Newtonsoft.Json.dll</HintPath>
172+
<Private>True</Private>
173+
<Paket>True</Paket>
174+
</Reference>
175+
</ItemGroup>
176+
</When>
177+
<When Condition="($(TargetFrameworkIdentifier) == 'WindowsPhoneApp') Or ($(TargetFrameworkIdentifier) == '.NETCore') Or ($(TargetFrameworkIdentifier) == 'Silverlight' And $(TargetFrameworkVersion) == 'v5.0') Or ($(TargetFrameworkIdentifier) == 'WindowsPhone' And ($(TargetFrameworkVersion) == 'v8.0' Or $(TargetFrameworkVersion) == 'v8.1')) Or ($(TargetFrameworkProfile) == 'Profile5') Or ($(TargetFrameworkProfile) == 'Profile6') Or ($(TargetFrameworkProfile) == 'Profile14') Or ($(TargetFrameworkProfile) == 'Profile19') Or ($(TargetFrameworkProfile) == 'Profile24') Or ($(TargetFrameworkProfile) == 'Profile31') Or ($(TargetFrameworkProfile) == 'Profile32') Or ($(TargetFrameworkProfile) == 'Profile37') Or ($(TargetFrameworkProfile) == 'Profile42') Or ($(TargetFrameworkProfile) == 'Profile47') Or ($(TargetFrameworkProfile) == 'Profile84') Or ($(TargetFrameworkProfile) == 'Profile92') Or ($(TargetFrameworkProfile) == 'Profile102') Or ($(TargetFrameworkProfile) == 'Profile136') Or ($(TargetFrameworkProfile) == 'Profile147') Or ($(TargetFrameworkProfile) == 'Profile157') Or ($(TargetFrameworkProfile) == 'Profile158') Or ($(TargetFrameworkProfile) == 'Profile225') Or ($(TargetFrameworkProfile) == 'Profile240') Or ($(TargetFrameworkProfile) == 'Profile255') Or ($(TargetFrameworkProfile) == 'Profile328') Or ($(TargetFrameworkProfile) == 'Profile336') Or ($(TargetFrameworkProfile) == 'Profile344')">
178+
<ItemGroup>
179+
<Reference Include="Newtonsoft.Json">
180+
<HintPath>..\..\..\packages\Newtonsoft.Json\lib\portable-net40+sl5+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
181+
<Private>True</Private>
182+
<Paket>True</Paket>
183+
</Reference>
184+
</ItemGroup>
185+
</When>
186+
</Choose>
116187
<Choose>
117188
<When Condition="($(TargetFrameworkIdentifier) == 'WindowsPhoneApp') Or ($(TargetFrameworkIdentifier) == '.NETCore') Or ($(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5' Or $(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.5.3' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1')) Or ($(TargetFrameworkIdentifier) == 'WindowsPhone' And ($(TargetFrameworkVersion) == 'v8.0' Or $(TargetFrameworkVersion) == 'v8.1')) Or ($(TargetFrameworkIdentifier) == 'MonoAndroid') Or ($(TargetFrameworkIdentifier) == 'MonoTouch') Or ($(TargetFrameworkIdentifier) == 'Xamarin.iOS') Or ($(TargetFrameworkIdentifier) == 'Xamarin.Mac') Or ($(TargetFrameworkProfile) == 'Profile7') Or ($(TargetFrameworkProfile) == 'Profile31') Or ($(TargetFrameworkProfile) == 'Profile32') Or ($(TargetFrameworkProfile) == 'Profile44') Or ($(TargetFrameworkProfile) == 'Profile49') Or ($(TargetFrameworkProfile) == 'Profile78') Or ($(TargetFrameworkProfile) == 'Profile84') Or ($(TargetFrameworkProfile) == 'Profile111') Or ($(TargetFrameworkProfile) == 'Profile151') Or ($(TargetFrameworkProfile) == 'Profile157') Or ($(TargetFrameworkProfile) == 'Profile259')">
118189
<ItemGroup>
@@ -135,4 +206,4 @@
135206
</ItemGroup>
136207
</When>
137208
</Choose>
138-
</Project>
209+
</Project>

src/CodeGeneration/Nest.Litterateur/Walkers/CodeWithDocumentationWalker.cs

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,6 @@
99
using System.Reflection;
1010
using System.Text;
1111
using System.Text.RegularExpressions;
12-
using Microsoft.CodeAnalysis.Emit;
13-
using Microsoft.CodeAnalysis.Formatting;
14-
#if !DOTNETCORE
15-
using Microsoft.CodeAnalysis.MSBuild;
16-
#endif
17-
using Microsoft.CodeAnalysis.Text;
1812
using Nest.Litterateur.Documentation.Blocks;
1913

2014
namespace Nest.Litterateur.Walkers
@@ -34,7 +28,7 @@ class CodeWithDocumentationWalker : CSharpSyntaxWalker
3428
private readonly int? _lineNumberOverride;
3529

3630
/// <summary>
37-
/// We want to support inlining /** */ documentations because its super handy
31+
/// We want to support inlining /** */ documentations because its super handy
3832
/// to document fluent code, what ensues is total hackery
3933
/// </summary>
4034
/// <param name="classDepth">the depth of the class</param>
@@ -61,7 +55,7 @@ public override void Visit(SyntaxNode node)
6155
#if !DOTNETCORE
6256
if (_propertyOrMethodName == "ExpectJson" || _propertyOrMethodName == "QueryJson")
6357
{
64-
// try to get the json for the anonymous type.
58+
// try to get the json for the anonymous type.
6559
// Only supports system types and Json.Net LINQ objects e.g. JObject
6660
string json;
6761
if (_code.TryGetJsonForAnonymousType(out json))
@@ -84,7 +78,7 @@ public override void Visit(SyntaxNode node)
8478

8579
base.Visit(node);
8680

87-
var nodeHasLeadingTriva = node.HasLeadingTrivia &&
81+
var nodeHasLeadingTriva = node.HasLeadingTrivia &&
8882
node.GetLeadingTrivia().Any(c => c.Kind() == SyntaxKind.MultiLineDocumentationCommentTrivia);
8983
var blocks = codeBlocks.Intertwine<IDocumentationBlock>(this.TextBlocks, swap: nodeHasLeadingTriva);
9084
this.Blocks.Add(new CombinedBlock(blocks, line));
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
Microsoft.CodeAnalysis.CSharp
1+
Microsoft.CodeAnalysis.CSharp
2+
AsciiDocNet
3+
Newtonsoft.Json

src/Profiling/Profiling.csproj

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@
655655
</Reference>
656656
</ItemGroup>
657657
</When>
658-
<When Condition="($(TargetFrameworkIdentifier) == '.NETCore' And $(TargetFrameworkVersion) == 'v4.5') Or ($(TargetFrameworkIdentifier) == 'WindowsPhone' And $(TargetFrameworkVersion) == 'v8.0') Or ($(TargetFrameworkIdentifier) == 'MonoAndroid') Or ($(TargetFrameworkIdentifier) == 'MonoTouch') Or ($(TargetFrameworkIdentifier) == 'Xamarin.iOS') Or ($(TargetFrameworkProfile) == 'Profile7') Or ($(TargetFrameworkProfile) == 'Profile31') Or ($(TargetFrameworkProfile) == 'Profile32') Or ($(TargetFrameworkProfile) == 'Profile44') Or ($(TargetFrameworkProfile) == 'Profile49') Or ($(TargetFrameworkProfile) == 'Profile78') Or ($(TargetFrameworkProfile) == 'Profile84') Or ($(TargetFrameworkProfile) == 'Profile111') Or ($(TargetFrameworkProfile) == 'Profile151') Or ($(TargetFrameworkProfile) == 'Profile157') Or ($(TargetFrameworkProfile) == 'Profile259')">
658+
<When Condition="($(TargetFrameworkIdentifier) == 'WindowsPhoneApp') Or ($(TargetFrameworkIdentifier) == '.NETCore' And $(TargetFrameworkVersion) == 'v4.5') Or ($(TargetFrameworkIdentifier) == 'WindowsPhone' And $(TargetFrameworkVersion) == 'v8.0') Or ($(TargetFrameworkIdentifier) == 'MonoAndroid') Or ($(TargetFrameworkIdentifier) == 'MonoTouch') Or ($(TargetFrameworkIdentifier) == 'Xamarin.iOS') Or ($(TargetFrameworkProfile) == 'Profile7') Or ($(TargetFrameworkProfile) == 'Profile31') Or ($(TargetFrameworkProfile) == 'Profile32') Or ($(TargetFrameworkProfile) == 'Profile44') Or ($(TargetFrameworkProfile) == 'Profile49') Or ($(TargetFrameworkProfile) == 'Profile78') Or ($(TargetFrameworkProfile) == 'Profile84') Or ($(TargetFrameworkProfile) == 'Profile111') Or ($(TargetFrameworkProfile) == 'Profile151') Or ($(TargetFrameworkProfile) == 'Profile157') Or ($(TargetFrameworkProfile) == 'Profile259')">
659659
<ItemGroup>
660660
<Reference Include="xunit.abstractions">
661661
<HintPath>..\..\packages\xunit.abstractions\lib\portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS\xunit.abstractions.dll</HintPath>
@@ -677,7 +677,7 @@
677677
</When>
678678
</Choose>
679679
<Choose>
680-
<When Condition="($(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5' Or $(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.5.3' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1')) Or ($(TargetFrameworkIdentifier) == '.NETCore' And $(TargetFrameworkVersion) == 'v4.5') Or ($(TargetFrameworkIdentifier) == 'WindowsPhone' And $(TargetFrameworkVersion) == 'v8.0') Or ($(TargetFrameworkIdentifier) == 'MonoAndroid') Or ($(TargetFrameworkIdentifier) == 'MonoTouch') Or ($(TargetFrameworkIdentifier) == 'Xamarin.iOS') Or ($(TargetFrameworkProfile) == 'Profile7') Or ($(TargetFrameworkProfile) == 'Profile31') Or ($(TargetFrameworkProfile) == 'Profile32') Or ($(TargetFrameworkProfile) == 'Profile44') Or ($(TargetFrameworkProfile) == 'Profile49') Or ($(TargetFrameworkProfile) == 'Profile78') Or ($(TargetFrameworkProfile) == 'Profile84') Or ($(TargetFrameworkProfile) == 'Profile111') Or ($(TargetFrameworkProfile) == 'Profile151') Or ($(TargetFrameworkProfile) == 'Profile157') Or ($(TargetFrameworkProfile) == 'Profile259')">
680+
<When Condition="($(TargetFrameworkIdentifier) == 'WindowsPhoneApp') Or ($(TargetFrameworkIdentifier) == '.NETFramework' And ($(TargetFrameworkVersion) == 'v4.5' Or $(TargetFrameworkVersion) == 'v4.5.1' Or $(TargetFrameworkVersion) == 'v4.5.2' Or $(TargetFrameworkVersion) == 'v4.5.3' Or $(TargetFrameworkVersion) == 'v4.6' Or $(TargetFrameworkVersion) == 'v4.6.1')) Or ($(TargetFrameworkIdentifier) == '.NETCore' And $(TargetFrameworkVersion) == 'v4.5') Or ($(TargetFrameworkIdentifier) == 'WindowsPhone' And $(TargetFrameworkVersion) == 'v8.0') Or ($(TargetFrameworkIdentifier) == 'MonoAndroid') Or ($(TargetFrameworkIdentifier) == 'MonoTouch') Or ($(TargetFrameworkIdentifier) == 'Xamarin.iOS') Or ($(TargetFrameworkProfile) == 'Profile7') Or ($(TargetFrameworkProfile) == 'Profile31') Or ($(TargetFrameworkProfile) == 'Profile32') Or ($(TargetFrameworkProfile) == 'Profile44') Or ($(TargetFrameworkProfile) == 'Profile49') Or ($(TargetFrameworkProfile) == 'Profile78') Or ($(TargetFrameworkProfile) == 'Profile84') Or ($(TargetFrameworkProfile) == 'Profile111') Or ($(TargetFrameworkProfile) == 'Profile151') Or ($(TargetFrameworkProfile) == 'Profile157') Or ($(TargetFrameworkProfile) == 'Profile259')">
681681
<ItemGroup>
682682
<Reference Include="xunit.core">
683683
<HintPath>..\..\packages\xunit.extensibility.core\lib\portable-net45+win8+wp8+wpa81\xunit.core.dll</HintPath>
@@ -733,6 +733,15 @@
733733
</Reference>
734734
</ItemGroup>
735735
</When>
736+
<When Condition="$(TargetFrameworkIdentifier) == 'WindowsPhoneApp'">
737+
<ItemGroup>
738+
<Reference Include="xunit.execution.dotnet">
739+
<HintPath>..\..\packages\xunit.extensibility.execution\lib\wpa81\xunit.execution.dotnet.dll</HintPath>
740+
<Private>True</Private>
741+
<Paket>True</Paket>
742+
</Reference>
743+
</ItemGroup>
744+
</When>
736745
<When Condition="$(TargetFrameworkIdentifier) == 'Xamarin.iOS'">
737746
<ItemGroup>
738747
<Reference Include="xunit.execution.dotnet">

src/Tests/Search/Suggesters/SuggestApiTests.doc.cs renamed to src/Tests/Search/Suggesters/SuggestApiTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ protected override LazyResponses ClientUsage() => Calls(
221221

222222
protected override void ExpectResponse(ISuggestResponse response)
223223
{
224-
/** === Handling Responses
224+
/** === Handling Responses
225225
* Get the suggestions for a suggester by indexing into
226226
* the `.Suggestions` on the response
227227
*/

0 commit comments

Comments
 (0)