Skip to content

Commit

Permalink
Update NuGet Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
brminnick committed Nov 2, 2020
1 parent ac541d7 commit 54b7a34
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Src/GitHubApiStatus/GitHubApiStatus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Calculate the GitHub API Rate Limits for the following GitHub APIs
- Code Scanning Upload API
- App Manifest Configuration API
</PackageReleaseNotes>
<Version>1.0.0-pre4</Version>
<Version>1.0.0</Version>
<RepositoryUrl>https://github.com/brminnick/GitHubApiStatus</RepositoryUrl>
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
Expand Down
4 changes: 2 additions & 2 deletions Src/GitStatus.Android/GitStatus.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.1558-pre3" />
<PackageReference Include="Xamarin.Essentials" Version="1.6.0-pre2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0-rc.2.20475.5" />
<PackageReference Include="Polly" Version="7.2.1" />
<PackageReference Include="Refit" Version="5.2.1" />
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.0-pre2" />
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.2" />
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.1.0.5-rc3" />
<PackageReference Include="GraphQL.Client">
<Version>3.2.0</Version>
Expand Down
3 changes: 1 addition & 2 deletions Src/GitStatus.ConsoleApp/Program.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System;
using System.Diagnostics;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
Expand All @@ -10,7 +9,7 @@ namespace GitStatus.ConsoleApp
{
class Program
{
static readonly HttpClient _client = new HttpClient
static readonly HttpClient _client = new()
{
DefaultRequestHeaders =
{
Expand Down
4 changes: 2 additions & 2 deletions Src/GitStatus.iOS/GitStatus.iOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.1558-pre3" />
<PackageReference Include="Xamarin.Essentials" Version="1.6.0-pre2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0-rc.2.20475.5" />
<PackageReference Include="Polly" Version="7.2.1" />
<PackageReference Include="Refit" Version="5.2.1" />
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.0-pre2" />
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.2" />
<PackageReference Include="GraphQL.Client" Version="3.2.0" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Src/GitStatus/GitStatus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="5.0.0.1558-pre3" />
<PackageReference Include="Xamarin.Essentials" Version="1.6.0-pre2" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.9" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0-rc.2.20475.5" />
<PackageReference Include="Polly" Version="7.2.1" />
<PackageReference Include="Refit" Version="5.2.1" />
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.0-pre2" />
<PackageReference Include="AsyncAwaitBestPractices.MVVM" Version="5.0.2" />
<PackageReference Include="GraphQL.Client" Version="3.2.0" />
</ItemGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Src/GitStatus/Services/ContainerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace GitStatus
{
public class ContainerService
{
readonly static Lazy<ServiceProvider> _serviceProviderHolder = new Lazy<ServiceProvider>(CreateContainer);
readonly static Lazy<ServiceProvider> _serviceProviderHolder = new(CreateContainer);

public static ServiceProvider Container => _serviceProviderHolder.Value;

Expand Down
2 changes: 1 addition & 1 deletion Src/GitStatus/ViewModels/Base/BaseViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace GitStatus
{
public abstract class BaseViewModel : INotifyPropertyChanged
{
readonly WeakEventManager _propertyChangedEventManager = new WeakEventManager();
readonly WeakEventManager _propertyChangedEventManager = new ();

event PropertyChangedEventHandler INotifyPropertyChanged.PropertyChanged
{
Expand Down

0 comments on commit 54b7a34

Please sign in to comment.