Skip to content

Commit 8c00ecb

Browse files
committed
Merge pull request #1207 from elasticsearch/feature/move-to-paket
Build improvements
2 parents 010ca84 + b4f7dc1 commit 8c00ecb

File tree

399 files changed

+4498
-191554
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

399 files changed

+4498
-191554
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ build/tools/*
4949
!build/*.fsx
5050
!build/*.ps1
5151
!build/*.nuspec
52+
!build/scripts
53+
!.paket/*.exe
5254

5355
/dep/Newtonsoft.Json.4.0.2
5456
!docs/build

.paket/paket.bootstrapper.exe

13 KB
Binary file not shown.

.paket/paket.exe

3.4 MB
Binary file not shown.

.paket/paket.targets

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<!-- Enable the restore command to run before builds -->
5+
<RestorePackages Condition=" '$(RestorePackages)' == '' ">true</RestorePackages>
6+
<!-- Download Paket.exe if it does not already exist -->
7+
<DownloadPaket Condition=" '$(DownloadPaket)' == '' ">true</DownloadPaket>
8+
<PaketToolsPath>$(MSBuildThisFileDirectory)</PaketToolsPath>
9+
<PaketRootPath>$(MSBuildThisFileDirectory)..\</PaketRootPath>
10+
</PropertyGroup>
11+
<PropertyGroup>
12+
<!-- Paket command -->
13+
<PaketExePath Condition=" '$(PaketExePath)' == '' ">$(PaketToolsPath)paket.exe</PaketExePath>
14+
<PaketBootStrapperExePath Condition=" '$(PaketBootStrapperExePath)' == '' ">$(PaketToolsPath)paket.bootstrapper.exe</PaketBootStrapperExePath>
15+
<PaketCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketExePath)"</PaketCommand>
16+
<PaketCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(PaketExePath)</PaketCommand>
17+
<PaketBootStrapperCommand Condition=" '$(OS)' == 'Windows_NT'">"$(PaketBootStrapperExePath)"</PaketBootStrapperCommand>
18+
<PaketBootStrapperCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(PaketBootStrapperExePath)</PaketBootStrapperCommand>
19+
<!-- Commands -->
20+
<PaketReferences Condition="!Exists('$(MSBuildProjectFullPath).paket.references')">$(MSBuildProjectDirectory)\paket.references</PaketReferences>
21+
<PaketReferences Condition="Exists('$(MSBuildProjectFullPath).paket.references')">$(MSBuildProjectFullPath).paket.references</PaketReferences>
22+
<RestoreCommand>$(PaketCommand) restore --references-files "$(PaketReferences)"</RestoreCommand>
23+
<DownloadPaketCommand>$(PaketBootStrapperCommand)</DownloadPaketCommand>
24+
<!-- We need to ensure packages are restored prior to assembly resolve -->
25+
<BuildDependsOn Condition="$(RestorePackages) == 'true'">RestorePackages; $(BuildDependsOn);</BuildDependsOn>
26+
</PropertyGroup>
27+
<Target Name="CheckPrerequisites">
28+
<!-- Raise an error if we're unable to locate paket.exe -->
29+
<Error Condition="'$(DownloadPaket)' != 'true' AND !Exists('$(PaketExePath)')" Text="Unable to locate '$(PaketExePath)'" />
30+
<MsBuild Targets="DownloadPaket" Projects="$(MSBuildThisFileFullPath)" Properties="Configuration=NOT_IMPORTANT;DownloadPaket=$(DownloadPaket)" />
31+
</Target>
32+
<Target Name="DownloadPaket">
33+
<Exec Command="$(DownloadPaketCommand)" Condition=" '$(DownloadPaket)' == 'true' AND !Exists('$(PaketExePath)')" />
34+
</Target>
35+
<Target Name="RestorePackages" DependsOnTargets="CheckPrerequisites">
36+
<Exec Command="$(RestoreCommand)" WorkingDirectory="$(PaketRootPath)" Condition="Exists('$(PaketReferences)')" />
37+
</Target>
38+
</Project>

build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ IF NOT [%2]==[] (set VERSION="%2")
5353
shift
5454
shift
5555

56-
"build\tools\FAKE\tools\Fake.exe" "build\\build.fsx" "target=%TARGET%" "version=%VERSION%"
56+
"build\tools\FAKE\tools\Fake.exe" "build\\scripts\\build.fsx" "target=%TARGET%" "version=%VERSION%"

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ libdir=$PWD/build/tools/FAKE/tools/
4040
$FSHARPI --lib:$libdir $@
4141
EOF
4242
chmod +x fsharpi
43-
mono --runtime=v4.0 "$FAKE" build/build.fsx "skiptests=1" $@
43+
mono --runtime=v4.0 "$FAKE" build/scripts/build.fsx "skiptests=1" $@
4444
MONOEXIT=$?
4545
rm fsharpi
4646
#FORCE exit code to be that of calling fake not the last rm action
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<?xml version="1.0"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3-
<metadata>
4-
<id>Elasticsearch.Net.Connection.HttpClient</id>
5-
<version>1.3.0</version>
6-
<title>Elasticsearch.Net.Connection.HttpClient - IConnection implementation that uses Http</title>
7-
<authors>Elasticsearch Inc. and contributors</authors>
8-
<owners>Elasticsearch Inc.</owners>
9-
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10-
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11-
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12-
<summary>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</summary>
13-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<description>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</description>
15-
<dependencies>
16-
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17-
</dependencies>
18-
<tags>elasticsearch elastic search lucene thrift nest</tags>
19-
</metadata>
20-
<files>
21-
<file src="output\Elasticsearch.Net.Connection.HttpClient\Elasticsearch.Net.Connection.HttpClient.dll" target="lib\net45"/>
22-
<file src="output\Elasticsearch.Net.Connection.HttpClient\Elasticsearch.Net.Connection.HttpClient.pdb" target="lib\net45"/>
23-
<file src="output\Elasticsearch.Net.Connection.HttpClient\Elasticsearch.Net.Connection.HttpClient.XML" target="lib\net45"/>
24-
</files>
3+
<metadata>
4+
<id>Elasticsearch.Net.Connection.HttpClient</id>
5+
<version>1.3.0</version>
6+
<title>Elasticsearch.Net.Connection.HttpClient - IConnection implementation that uses Http</title>
7+
<authors>Elasticsearch Inc. and contributors</authors>
8+
<owners>Elasticsearch Inc.</owners>
9+
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10+
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11+
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12+
<summary>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</summary>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>An IConnection implementation that uses System.Net.Http.HttpClient to talk with elasticsearch</description>
15+
<dependencies>
16+
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17+
</dependencies>
18+
<tags>elasticsearch elastic search lucene thrift nest</tags>
19+
</metadata>
20+
<files>
21+
<file src="output\Elasticsearch.Net.Connection.HttpClient\net45\Elasticsearch.Net.Connection.HttpClient.dll" target="lib\net45"/>
22+
<file src="output\Elasticsearch.Net.Connection.HttpClient\net45\Elasticsearch.Net.Connection.HttpClient.pdb" target="lib\net45"/>
23+
<file src="output\Elasticsearch.Net.Connection.HttpClient\net45\Elasticsearch.Net.Connection.HttpClient.XML" target="lib\net45"/>
24+
</files>
2525
</package>
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
11
<?xml version="1.0"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3-
<metadata>
4-
<id>Elasticsearch.Net.Connection.Thrift</id>
5-
<version>1.3.0</version>
6-
<title>Elasticsearch.Net.Connection.Thrift - Thrift support for Elasticsearch.Net</title>
7-
<authors>Elasticsearch Inc. and contributors</authors>
8-
<owners>Elasticsearch Inc.</owners>
9-
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10-
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11-
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12-
<summary>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</summary>
13-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<description>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</description>
15-
<dependencies>
16-
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17-
</dependencies>
18-
<tags>elasticsearch elastic search lucene thrift nest</tags>
19-
</metadata>
20-
<files>
21-
<file src="output\Elasticsearch.Net.Connection.Thrift\Elasticsearch.Net.Connection.Thrift.dll" target="lib"/>
22-
<file src="output\Elasticsearch.Net.Connection.Thrift\Elasticsearch.Net.Connection.Thrift.pdb" target="lib"/>
23-
<file src="output\Elasticsearch.Net.Connection.Thrift\Elasticsearch.Net.Connection.Thrift.XML" target="lib"/>
24-
</files>
3+
<metadata>
4+
<id>Elasticsearch.Net.Connection.Thrift</id>
5+
<version>1.3.0</version>
6+
<title>Elasticsearch.Net.Connection.Thrift - Thrift support for Elasticsearch.Net</title>
7+
<authors>Elasticsearch Inc. and contributors</authors>
8+
<owners>Elasticsearch Inc.</owners>
9+
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10+
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11+
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12+
<summary>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</summary>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>An IConnection implementation that utilizes Apache Thrift to talk with elasticsearch</description>
15+
<dependencies>
16+
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17+
</dependencies>
18+
<tags>elasticsearch elastic search lucene thrift nest</tags>
19+
</metadata>
20+
<files>
21+
<file src="output\Elasticsearch.Net.Connection.Thrift\net40\Elasticsearch.Net.Connection.Thrift.dll" target="lib"/>
22+
<file src="output\Elasticsearch.Net.Connection.Thrift\net40\Elasticsearch.Net.Connection.Thrift.pdb" target="lib"/>
23+
<file src="output\Elasticsearch.Net.Connection.Thrift\net40\Elasticsearch.Net.Connection.Thrift.XML" target="lib"/>
24+
25+
<file src="output\Elasticsearch.Net.Connection.Thrift\net45\Elasticsearch.Net.Connection.Thrift.dll" target="lib\net45"/>
26+
<file src="output\Elasticsearch.Net.Connection.Thrift\net45\Elasticsearch.Net.Connection.Thrift.pdb" target="lib\net45"/>
27+
<file src="output\Elasticsearch.Net.Connection.Thrift\net45\Elasticsearch.Net.Connection.Thrift.XML" target="lib\net45"/>
28+
29+
</files>
2530
</package>
+28-23
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
11
<?xml version="1.0"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3-
<metadata>
4-
<id>Elasticsearch.Net.JsonNET</id>
5-
<version>1.3.0</version>
6-
<title>Elasticsearch.Net.JsonNET - Json.NET serializer for the low level elasticsearch client</title>
7-
<authors>Elasticsearch Inc. and contributors</authors>
8-
<owners>Elasticsearch Inc.</owners>
9-
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10-
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11-
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12-
<summary>IElasticsearchSerializer implementation that allows you to use Json.NET with the lowlevel client</summary>
13-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<description>This package is only useful if you use the low level client ONLY and do not use NEST but would like to use JSON.NET as your serializer</description>
15-
<dependencies>
16-
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17-
<dependency id="Newtonsoft.Json" version="6.0.1"/>
18-
</dependencies>
19-
<tags>elasticsearch elastic search lucene thrift nest</tags>
20-
</metadata>
21-
<files>
22-
<file src="output\Elasticsearch.Net.JsonNET\Elasticsearch.Net.JsonNET.dll" target="lib"/>
23-
<file src="output\Elasticsearch.Net.JsonNET\Elasticsearch.Net.JsonNET.pdb" target="lib"/>
24-
<file src="output\Elasticsearch.Net.JsonNET\Elasticsearch.Net.JsonNET.XML" target="lib"/>
25-
</files>
3+
<metadata>
4+
<id>Elasticsearch.Net.JsonNET</id>
5+
<version>1.3.0</version>
6+
<title>Elasticsearch.Net.JsonNET - Json.NET serializer for the low level elasticsearch client</title>
7+
<authors>Elasticsearch Inc. and contributors</authors>
8+
<owners>Elasticsearch Inc.</owners>
9+
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10+
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11+
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12+
<summary>IElasticsearchSerializer implementation that allows you to use Json.NET with the lowlevel client</summary>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>This package is only useful if you use the low level client ONLY and do not use NEST but would like to use JSON.NET as your serializer</description>
15+
<dependencies>
16+
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17+
<dependency id="Newtonsoft.Json" version="6.0.1"/>
18+
</dependencies>
19+
<tags>elasticsearch elastic search lucene thrift nest</tags>
20+
</metadata>
21+
<files>
22+
<file src="output\Elasticsearch.Net.JsonNET\net40\Elasticsearch.Net.JsonNET.dll" target="lib"/>
23+
<file src="output\Elasticsearch.Net.JsonNET\net40\Elasticsearch.Net.JsonNET.pdb" target="lib"/>
24+
<file src="output\Elasticsearch.Net.JsonNET\net40\Elasticsearch.Net.JsonNET.XML" target="lib"/>
25+
26+
<file src="output\Elasticsearch.Net.JsonNET\net45\Elasticsearch.Net.JsonNET.dll" target="lib\net45"/>
27+
<file src="output\Elasticsearch.Net.JsonNET\net45\Elasticsearch.Net.JsonNET.pdb" target="lib\net45"/>
28+
<file src="output\Elasticsearch.Net.JsonNET\net45\Elasticsearch.Net.JsonNET.XML" target="lib\net45"/>
29+
30+
</files>
2631
</package>

build/Elasticsearch.Net.nuspec

+28-21
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11
<?xml version="1.0"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3-
<metadata>
4-
<id>Elasticsearch.Net</id>
5-
<version>1.3.0</version>
6-
<title>Elasticsearch.Net - official low level elasticsearch client</title>
7-
<authors>Elasticsearch Inc. and contributors</authors>
8-
<owners>Elasticsearch Inc.</owners>
9-
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10-
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11-
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12-
<summary>Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
13-
</summary>
14-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
15-
<description>Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
16-
</description>
17-
<tags>elasticsearch elastic search lucene nest</tags>
18-
</metadata>
19-
<files>
20-
<file src="output\Elasticsearch.Net\Elasticsearch.Net.dll" target="lib"/>
21-
<file src="output\Elasticsearch.Net\Elasticsearch.Net.pdb" target="lib"/>
22-
<file src="output\Elasticsearch.Net\Elasticsearch.Net.XML" target="lib"/>
23-
</files>
3+
<metadata>
4+
<id>Elasticsearch.Net</id>
5+
<version>1.3.0</version>
6+
<title>Elasticsearch.Net - official low level elasticsearch client</title>
7+
<authors>Elasticsearch Inc. and contributors</authors>
8+
<owners>Elasticsearch Inc.</owners>
9+
<iconUrl>http://nest.azurewebsites.net/images/elasticsearch-net-nuget-icon.png</iconUrl>
10+
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11+
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12+
<summary>
13+
Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
14+
</summary>
15+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
16+
<description>
17+
Exposes all the api endpoints but leaves you in control of building the request and response bodies. Comes with built in cluster failover/connection pooling support.
18+
</description>
19+
<tags>elasticsearch elastic search lucene nest</tags>
20+
</metadata>
21+
<files>
22+
<file src="output\Elasticsearch.Net\net40\Elasticsearch.Net.dll" target="lib"/>
23+
<file src="output\Elasticsearch.Net\net40\Elasticsearch.Net.pdb" target="lib"/>
24+
<file src="output\Elasticsearch.Net\net40\Elasticsearch.Net.XML" target="lib"/>
25+
26+
<file src="output\Elasticsearch.Net\net45\Elasticsearch.Net.dll" target="lib\net45"/>
27+
<file src="output\Elasticsearch.Net\net45\Elasticsearch.Net.pdb" target="lib\net45"/>
28+
<file src="output\Elasticsearch.Net\net45\Elasticsearch.Net.XML" target="lib\net45"/>
29+
30+
</files>
2431
</package>

build/NEST.nuspec

+28-23
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
11
<?xml version="1.0"?>
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3-
<metadata>
4-
<id>NEST</id>
5-
<version>1.3.0</version>
6-
<title>NEST - Elasticsearch Client</title>
7-
<authors>Elasticsearch Inc. and contributors</authors>
8-
<owners>Elasticsearch Inc.</owners>
9-
<iconUrl>http://nest.azurewebsites.net/images/nest-nuget-icon.png</iconUrl>
10-
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11-
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12-
<summary>Strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</summary>
13-
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14-
<description>Elasticsearch client, strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</description>
15-
<dependencies>
16-
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17-
<dependency id="Newtonsoft.Json" version="6.0.1" />
18-
</dependencies>
19-
<tags>elasticsearch elastic search lucene nest</tags>
20-
</metadata>
21-
<files>
22-
<file src="output\Nest\Nest.dll" target="lib"/>
23-
<file src="output\Nest\Nest.pdb" target="lib"/>
24-
<file src="output\Nest\Nest.XML" target="lib"/>
25-
</files>
3+
<metadata>
4+
<id>NEST</id>
5+
<version>1.3.0</version>
6+
<title>NEST - Elasticsearch Client</title>
7+
<authors>Elasticsearch Inc. and contributors</authors>
8+
<owners>Elasticsearch Inc.</owners>
9+
<iconUrl>http://nest.azurewebsites.net/images/nest-nuget-icon.png</iconUrl>
10+
<licenseUrl>https://github.com/elasticsearch/elasticsearch-net/blob/master/license.txt</licenseUrl>
11+
<projectUrl>https://github.com/elasticsearch/elasticsearch-net</projectUrl>
12+
<summary>Strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</summary>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<description>Elasticsearch client, strongly typed interface to Elasticsearch. Fluent request builder, mapped responses and powerful query dsl. Uses and exposes Elasticsearch.Net</description>
15+
<dependencies>
16+
<dependency id="Elasticsearch.Net" version="1.3.0"/>
17+
<dependency id="Newtonsoft.Json" version="6.0.1" />
18+
</dependencies>
19+
<tags>elasticsearch elastic search lucene nest</tags>
20+
</metadata>
21+
<files>
22+
<file src="output\Nest\net40\Nest.dll" target="lib"/>
23+
<file src="output\Nest\net40\Nest.pdb" target="lib"/>
24+
<file src="output\Nest\net40\Nest.XML" target="lib"/>
25+
26+
<file src="output\Nest\net45\Nest.dll" target="lib\net45"/>
27+
<file src="output\Nest\net45\Nest.pdb" target="lib\net45"/>
28+
<file src="output\Nest\net45\Nest.XML" target="lib\net45"/>
29+
30+
</files>
2631
</package>

0 commit comments

Comments
 (0)