Skip to content

Commit 8dd528c

Browse files
committed
Tweetinvi 3.0
1 parent 90c8936 commit 8dd528c

26 files changed

+36
-38
lines changed

Developer Tools/Nito.AsyncEx.Context.StrongName/Nito.AsyncEx.Context.StrongName.1.1.0.nuspec Developer Tools/NitoAsyncEx.Context.StrongName/NitoAsyncEx.Context.StrongName.1.1.0.nuspec

+1-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
<licenseUrl>https://github.com/StephenCleary/AsyncEx</licenseUrl>
1010
<projectUrl>https://github.com/StephenCleary/AsyncEx</projectUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12-
<description>This is a strong name version of the Nito.AsyncEx library. This is NOT the official nuget package.
13-
You can ask any question on https://github.com/linvi/Tweetinvi
14-
</description>
12+
<description>This is a strong name version of the Nito.AsyncEx library. This is NOT the official nuget package.</description>
1513
<summary>This is a strong name version of the Nito.AsyncEx library. This is NOT the official nuget package.</summary>
1614
<releaseNotes></releaseNotes>
1715
<copyright></copyright>

Developer Tools/TweetinviAPI/TweetinviAPI.nuspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
<group>
2121
<dependency id="Autofac" version="4.6.2" />
2222
<dependency id="Newtonsoft.Json" version="10.0.3" />
23-
<dependency id="Nito.AsyncEx.Context.StrongName" version="1.1.0" />
23+
<dependency id="NitoAsyncEx.Context.StrongName" version="1.1.0" />
2424
<dependency id="System.Net.Http" version="4.3.2" />
2525
<dependency id="System.Reflection.TypeExtensions" version="4.3.0" />
2626
</group>
27-
<group targetFramework=".NETStandard1.3">
27+
<group targetFramework=".NETStandard1.4">
2828
<dependency id="Autofac" version="4.6.2" />
2929
<dependency id="Newtonsoft.Json" version="10.0.3" />
30-
<dependency id="Nito.AsyncEx.Context.StrongName" version="1.1.0" />
30+
<dependency id="NitoAsyncEx.Context.StrongName" version="1.1.0" />
3131
<dependency id="System.Net.Http" version="4.3.2" />
3232
<dependency id="System.Reflection.TypeExtensions" version="4.3.0" />
3333
</group>

Examplinvi.ASP.NET.Core/Examplinvi.ASP.NET.Core.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" />
1515
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" />
1616
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="1.1.2" />
17-
<PackageReference Include="Nito.AsyncEx.Context.StrongName" Version="1.1.0" />
17+
<PackageReference Include="NitoAsyncEx.Context.StrongName" Version="1.1.0" />
1818
</ItemGroup>
1919
<ItemGroup>
2020
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.1" />

Examplinvi.ASP.NET/Examplinvi.ASP.NET.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@
5757
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
5858
</Reference>
5959
<Reference Include="Nito.AsyncEx.Context, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
60-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
60+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
6161
</Reference>
6262
<Reference Include="Nito.AsyncEx.Tasks, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
63-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
63+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
6464
</Reference>
6565
<Reference Include="Nito.Disposables, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
66-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
66+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
6767
</Reference>
6868
<Reference Include="System" />
6969
<Reference Include="System.Data" />

Examplinvi.ASP.NET/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
1616
<package id="Modernizr" version="2.6.2" targetFramework="net461" />
1717
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
18-
<package id="Nito.AsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
18+
<package id="NitoAsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
1919
<package id="Respond" version="1.2.0" targetFramework="net461" />
2020
<package id="System.Diagnostics.DiagnosticSource" version="4.3.1" targetFramework="net461" />
2121
<package id="System.Net.Http" version="4.3.2" targetFramework="net461" />

Examplinvi.NETFramework/Examplinvi.NETFramework.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
4040
</Reference>
4141
<Reference Include="Nito.AsyncEx.Context, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
42-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
42+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
4343
</Reference>
4444
<Reference Include="Nito.AsyncEx.Tasks, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
45-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
45+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
4646
</Reference>
4747
<Reference Include="Nito.Disposables, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
48-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
48+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
4949
</Reference>
5050
<Reference Include="System" />
5151
<Reference Include="System.Core" />

Examplinvi.NETFramework/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packages>
33
<package id="Autofac" version="4.6.2" targetFramework="net461" />
44
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
5-
<package id="Nito.AsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
5+
<package id="NitoAsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
66
<package id="System.Net.Http" version="4.3.2" targetFramework="net461" />
77
<package id="System.Reflection.TypeExtensions" version="4.3.0" targetFramework="net461" />
88
<package id="System.Runtime.Serialization.Primitives" version="4.3.0" targetFramework="net461" />

Examplinvi.NETStandard/Examplinvi.NETStandard.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Nito.AsyncEx.Context.StrongName" Version="1.1.0" />
9+
<PackageReference Include="NitoAsyncEx.Context.StrongName" Version="1.1.0" />
1010
</ItemGroup>
1111

1212
<ItemGroup>

Examplinvi.UAP/Examplinvi.UAP.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
133133
<Version>5.2.3</Version>
134134
</PackageReference>
135-
<PackageReference Include="Nito.AsyncEx.Context">
135+
<PackageReference Include="NitoAsyncEx.Context.StrongName">
136136
<Version>1.1.0</Version>
137137
</PackageReference>
138138
</ItemGroup>

Examplinvi.WPF/Examplinvi.WPF.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@
4141
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
4242
</Reference>
4343
<Reference Include="Nito.AsyncEx.Context, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
44-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
44+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
4545
</Reference>
4646
<Reference Include="Nito.AsyncEx.Tasks, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
47-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
47+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
4848
</Reference>
4949
<Reference Include="Nito.Disposables, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
50-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
50+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
5151
</Reference>
5252
<Reference Include="System" />
5353
<Reference Include="System.Collections.Immutable, Version=1.2.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">

Examplinvi.WPF/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<packages>
33
<package id="Autofac" version="4.6.2" targetFramework="net461" />
44
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
5-
<package id="Nito.AsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
5+
<package id="NitoAsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
66
<package id="System.Collections.Immutable" version="1.4.0" targetFramework="net461" />
77
<package id="System.Net.Http" version="4.3.3" targetFramework="net461" />
88
<package id="System.Reflection.TypeExtensions" version="4.3.0" targetFramework="net461" />

Examplinvi.Winforms/Examplinvi.Winforms.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@
4444
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
4545
</Reference>
4646
<Reference Include="Nito.AsyncEx.Context, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
47-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
47+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
4848
</Reference>
4949
<Reference Include="Nito.AsyncEx.Tasks, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
50-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
50+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
5151
</Reference>
5252
<Reference Include="Nito.Disposables, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
53-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
53+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
5454
</Reference>
5555
<Reference Include="System" />
5656
<Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">

Examplinvi.Winforms/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="net46" />
66
<package id="NETStandard.Library" version="1.6.1" targetFramework="net46" />
77
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net46" />
8-
<package id="Nito.AsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
8+
<package id="NitoAsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
99
<package id="System.AppContext" version="4.3.0" targetFramework="net46" />
1010
<package id="System.Collections" version="4.3.0" targetFramework="net46" />
1111
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net46" />

Examplinvi.Xamarin.Android/Examplinvi.Xamarin.Android.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@
5454
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\netstandard1.3\Newtonsoft.Json.dll</HintPath>
5555
</Reference>
5656
<Reference Include="Nito.AsyncEx.Context, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
57-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.AsyncEx.Context.StrongName.dll</HintPath>
57+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.AsyncEx.Context.dll</HintPath>
5858
</Reference>
5959
<Reference Include="Nito.AsyncEx.Tasks, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
60-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.AsyncEx.Tasks.dll</HintPath>
60+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.AsyncEx.Tasks.dll</HintPath>
6161
</Reference>
6262
<Reference Include="Nito.Disposables, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
63-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.Disposables.dll</HintPath>
63+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.Disposables.dll</HintPath>
6464
</Reference>
6565
<Reference Include="System" />
6666
<Reference Include="System.Core" />

Examplinvi.Xamarin.Android/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="monoandroid60" />
77
<package id="NETStandard.Library" version="1.6.1" targetFramework="monoandroid60" />
88
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="monoandroid71" />
9-
<package id="Nito.AsyncEx.Context.StrongName" version="1.1.0" targetFramework="monoandroid71" />
9+
<package id="NitoAsyncEx.Context.StrongName" version="1.1.0" targetFramework="monoandroid71" />
1010
<package id="System.AppContext" version="4.3.0" targetFramework="monoandroid60" />
1111
<package id="System.Collections" version="4.3.0" targetFramework="monoandroid60" />
1212
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="monoandroid60" />

Examplinvi.Xamarin.iOS/Examplinvi.Xamarin.iOS.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@
110110
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\netstandard1.3\Newtonsoft.Json.dll</HintPath>
111111
</Reference>
112112
<Reference Include="Nito.AsyncEx.Context, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
113-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.AsyncEx.Context.StrongName.dll</HintPath>
113+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.AsyncEx.Context.dll</HintPath>
114114
</Reference>
115115
<Reference Include="Nito.AsyncEx.Tasks, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
116-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\netstandard1.6\Nito.AsyncEx.Tasks.dll</HintPath>
116+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.AsyncEx.Tasks.dll</HintPath>
117117
</Reference>
118118
<Reference Include="Nito.Disposables, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
119-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\netstandard1.6\Nito.Disposables.dll</HintPath>
119+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\netstandard1.4\Nito.Disposables.dll</HintPath>
120120
</Reference>
121121
<Reference Include="System" />
122122
<Reference Include="System.IO.Compression" />

Examplinvi.Xamarin.iOS/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="xamarinios10" />
77
<package id="NETStandard.Library" version="1.6.1" targetFramework="xamarinios10" />
88
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="xamarinios10" />
9-
<package id="Nito.AsyncEx.Context.StrongName" version="1.1.0" targetFramework="xamarinios10" />
9+
<package id="NitoAsyncEx.Context.StrongName" version="1.1.0" targetFramework="xamarinios10" />
1010
<package id="System.AppContext" version="4.3.0" targetFramework="xamarinios10" />
1111
<package id="System.Collections" version="4.3.0" targetFramework="xamarinios10" />
1212
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="xamarinios10" />

Testinvi/Testinvi.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@
6161
<HintPath>..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
6262
</Reference>
6363
<Reference Include="Nito.AsyncEx.Context, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
64-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
64+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Context.dll</HintPath>
6565
</Reference>
6666
<Reference Include="Nito.AsyncEx.Tasks, Version=1.1.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
67-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
67+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.AsyncEx.Tasks.dll</HintPath>
6868
</Reference>
6969
<Reference Include="Nito.Disposables, Version=1.0.0.0, Culture=neutral, PublicKeyToken=7247f14397bf67b9, processorArchitecture=MSIL">
70-
<HintPath>..\packages\Nito.AsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
70+
<HintPath>..\packages\NitoAsyncEx.Context.StrongName.1.1.0\lib\net461\Nito.Disposables.dll</HintPath>
7171
</Reference>
7272
<Reference Include="PresentationCore" />
7373
<Reference Include="System" />

Testinvi/packages.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="net45" />
88
<package id="Microsoft.Net.Http" version="2.2.29" targetFramework="net45" />
99
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
10-
<package id="Nito.AsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
10+
<package id="NitoAsyncEx.Context.StrongName" version="1.1.0" targetFramework="net461" />
1111
<package id="System.Net.Http" version="4.3.2" targetFramework="net461" />
1212
<package id="System.Reflection.TypeExtensions" version="4.3.0" targetFramework="net461" />
1313
<package id="System.Security.Cryptography.Algorithms" version="4.3.0" targetFramework="net461" />

Tweetinvi/Tweetinvi.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Autofac" Version="4.6.2" />
13-
<PackageReference Include="Nito.AsyncEx.Context.StrongName" Version="1.1.0" />
13+
<PackageReference Include="NitoAsyncEx.Context.StrongName" Version="1.1.0" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

0 commit comments

Comments
 (0)