-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Feature/clean deps #3071
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/clean deps #3071
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Good to standardize on netstandard1.3
only 👍
Could I suggest Elasticsearch.Net.Connections.HttpWebRequestConnection
for the name of the HttpWebRequest
based connection? Would we also want a switch to test with this connection when running integration tests?
@@ -10,15 +10,17 @@ static Program() | |||
var currentDirectory = new DirectoryInfo(Directory.GetCurrentDirectory()); | |||
if (currentDirectory.Name == "DocGenerator" && currentDirectory.Parent.Name == "CodeGeneration") | |||
{ | |||
Console.WriteLine("IDE: " + currentDirectory); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still needed? Or just used for debugging?
InputDirPath = @"..\..\..\..\..\src"; | ||
OutputDirPath = @"..\..\..\..\..\docs"; | ||
BuildOutputPath = @"..\..\..\..\..\build\output"; | ||
Console.WriteLine("CMD: " + currentDirectory); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still needed? Or just used for debugging?
|
||
namespace System.Collections.Generic | ||
{ | ||
|
||
//TODO see if we can get rid of this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
++
f0d6409
to
d119205
Compare
A lot of changes went in today too:
|
Moved the desktop CLR connection into its own package. Removed all DOTNETCORE ifdefs
…orking on removing Elasticsearch.DotNetCoreOnly.sln
…tConnection randomly, TFM only kicks in on Windows
… -all and switch to -one to only test netcoreapp2.0
… without profiling support. This aids checking out -> open sln -> compile loop for everyone
… no xml exists in build/output
e5cdf54
to
d33269b
Compare
This moves master over to
netstandard1.3
only for our class libs.Tests and other executables are now
netstandard2.0
only.Removes all the
DOTNETCORE
related ifdef's.For now we keep the
WebRequest
basedHttpConnection
connection around in a separate packageElasticsearch.Net.Connections.WebRequestConnection