Remove dnx451 and dnxcore50 targets. Reduce Hosting dependency.
This commit is contained in:
parent
1b76152b5c
commit
d46de60542
|
|
@ -24,14 +24,14 @@ namespace TestClient
|
||||||
|
|
||||||
/*
|
/*
|
||||||
int completionCount = 0;
|
int completionCount = 0;
|
||||||
int itterations = 30000;
|
int iterations = 30000;
|
||||||
for (int i = 0; i < itterations; i++)
|
for (int i = 0; i < iterations; i++)
|
||||||
{
|
{
|
||||||
client.GetAsync(Address)
|
client.GetAsync(Address)
|
||||||
.ContinueWith(t => Interlocked.Increment(ref completionCount));
|
.ContinueWith(t => Interlocked.Increment(ref completionCount));
|
||||||
}
|
}
|
||||||
|
|
||||||
while (completionCount < itterations)
|
while (completionCount < iterations)
|
||||||
{
|
{
|
||||||
Thread.Sleep(10);
|
Thread.Sleep(10);
|
||||||
}*/
|
}*/
|
||||||
|
|
|
||||||
|
|
@ -11,13 +11,7 @@
|
||||||
"keyFile": "../../tools/Key.snk"
|
"keyFile": "../../tools/Key.snk"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"dnx451": {},
|
|
||||||
"net451": { },
|
"net451": { },
|
||||||
"dnxcore50": {
|
|
||||||
"dependencies": {
|
|
||||||
"System.Security.Claims": "4.0.1-*"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"dotnet5.4": {
|
"dotnet5.4": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"System.Security.Claims": "4.0.1-*"
|
"System.Security.Claims": "4.0.1-*"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue