Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov authored and NikolayPianikov committed Feb 5, 2019
1 parent a1893fa commit 29f6234
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion IoC.AspNetCore.Source/IoC.AspNetCore.Source.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<iconUrl>https://avatars0.githubusercontent.com/u/12184234?v=3&amp;amp;s=200</iconUrl>
<projectUrl>https://github.com/DevTeam/IoCContainer/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>AspNetCore feature for IoC container as embedding-in-code package.</description>
<description>AspNetCore feature for expressions based Inversion of Control container for .NET as embedding-in-code package.</description>
<tags>ASP net core IoC inversionofcontrol Container DI dependencyinjection</tags>
<contentFiles>
<files include="cs/any/*.cs" buildAction="Compile" />
Expand Down
4 changes: 2 additions & 2 deletions IoC.AspNetCore/IoC.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageId>IoC.AspNetCore</PackageId>
<Authors>NikolayP</Authors>
<Description>AspNetCore feature for IoC container.</Description>
<Description>AspNetCore feature for expressions based Inversion of Control container for .NET.</Description>
<PackageProjectUrl>https://github.com/DevTeam/IoCContainer/</PackageProjectUrl>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/12184234?v=3&amp;amp;s=200</PackageIconUrl>
<RepositoryUrl>https://github.com/DevTeam/IoCContainer.git</RepositoryUrl>
Expand Down Expand Up @@ -36,7 +36,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netcoreapp2.2'">
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="2.2" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'!='netcoreapp2.0' and '$(TargetFramework)'!='netcoreapp2.1'">
Expand Down
4 changes: 2 additions & 2 deletions IoC.Comparison/IoC.Comparison.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
<PackageReference Include="JetBrains.dotMemoryUnit" Version="3.0.20171219.105559" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="Unity" Version="5.8.13" />
<PackageReference Include="Unity" Version="5.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'!='net40' and '$(TargetFramework)'!='net47'">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Autofac" Version="4.8.1" />
<PackageReference Include="LightInject" Version="5.3.0" />
<PackageReference Include="LightInject" Version="5.4.0" />
<PackageReference Include="Moq" Version="4.10.1" />
<PackageReference Include="Ninject" Version="3.3.4" />
<PackageReference Include="Castle.Windsor" Version="4.1.1" />
Expand Down
2 changes: 1 addition & 1 deletion IoC.Interception.Source/IoC.Interception.Source.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<iconUrl>https://avatars0.githubusercontent.com/u/12184234?v=3&amp;amp;s=200</iconUrl>
<projectUrl>https://github.com/DevTeam/IoCContainer/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Interception feature for IoC container as embedding-in-code package.</description>
<description>Interception feature for expressions based Inversion of Control container for .NET as embedding-in-code package.</description>
<tags>Interception IoC inversionofcontrol Container DI dependencyinjection</tags>
<contentFiles>
<files include="cs/any/*.cs" buildAction="Compile" />
Expand Down
2 changes: 1 addition & 1 deletion IoC.Interception/IoC.Interception.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageId>IoC.Interception</PackageId>
<Authors>NikolayP</Authors>
<Description>Interception feature for IoC container.</Description>
<Description>Interception feature for expressions based Inversion of Control container for .NET.</Description>
<PackageProjectUrl>https://github.com/DevTeam/IoCContainer/</PackageProjectUrl>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/12184234?v=3&amp;amp;s=200</PackageIconUrl>
<RepositoryUrl>https://github.com/DevTeam/IoCContainer.git</RepositoryUrl>
Expand Down
2 changes: 1 addition & 1 deletion IoC.Source/IoC.Container.Source.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<iconUrl>https://avatars0.githubusercontent.com/u/12184234?v=3&amp;amp;s=200</iconUrl>
<projectUrl>https://github.com/DevTeam/IoCContainer/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Simple, powerful and fast IoC container as embedding-in-code package.</description>
<description>Simple, powerful and fast expressions based Inversion of Control container for .NET as embedding-in-code package.</description>
<tags>IoC inversionofcontrol Container DI dependencyinjection</tags>
<contentFiles>
<files include="cs/any/*.cs" buildAction="Compile" />
Expand Down
4 changes: 2 additions & 2 deletions IoC/IoC.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageId>IoC.Container</PackageId>
<Authors>NikolayP</Authors>
<Description>Simple, powerful and fast IoC container.</Description>
<Description>Simple, powerful and fast expressions based Inversion of Control container for .NET.</Description>
<PackageProjectUrl>https://github.com/DevTeam/IoCContainer/</PackageProjectUrl>
<PackageIconUrl>https://avatars0.githubusercontent.com/u/12184234?v=3&amp;amp;s=200</PackageIconUrl>
<RepositoryUrl>https://github.com/DevTeam/IoCContainer.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>IoC inversionofcontrol Container DI dependencyinjection</PackageTags>
<PackageTags>IoC inversionofcontrol Container DI dependencyinjection expression</PackageTags>
<Product>IoC Container</Product>
<Copyright>Copyright (c) 2018 Nikolay Pianikov</Copyright>
<DocumentationFile>..\Docs\IoC_$(TargetFramework).xml</DocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Simple, powerful and fast IoC container
# Simple, powerful and fast expressions based Inversion of Control container for .NET

[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE) [![IoC container](https://img.shields.io/badge/core-IoC%20container-orange.svg)](#nuget-packages) ![ASP.NET Core](https://img.shields.io/badge/feature-ASP.NET%20Core-orange.svg) ![Interception](https://img.shields.io/badge/feature-Interception-orange.svg) [<img src="http://tcavs2015.cloudapp.net/app/rest/builds/buildType:(id:DevTeam_IoCContainer_Build)/statusIcon"/>](http://tcavs2015.cloudapp.net/viewType.html?buildTypeId=DevTeam_IoCContainer_Build&guest=1)

Expand Down
2 changes: 1 addition & 1 deletion README_HEADER.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Simple, powerful and fast IoC container
# Simple, powerful and fast expressions based Inversion of Control container for .NET

[![License](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE) [![IoC container](https://img.shields.io/badge/core-IoC%20container-orange.svg)](#nuget-packages) ![ASP.NET Core](https://img.shields.io/badge/feature-ASP.NET%20Core-orange.svg) ![Interception](https://img.shields.io/badge/feature-Interception-orange.svg) [<img src="http://tcavs2015.cloudapp.net/app/rest/builds/buildType:(id:DevTeam_IoCContainer_Build)/statusIcon"/>](http://tcavs2015.cloudapp.net/viewType.html?buildTypeId=DevTeam_IoCContainer_Build&guest=1)

1 change: 1 addition & 0 deletions Samples.sln.DotSettings
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpPlaceEmbeddedOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpRenamePlacementToArrangementMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAlwaysTreatStructAsNotReorderableMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002ECSharpPlaceAttributeOnSameLineMigration/@EntryIndexedValue">True</s:Boolean>
Expand Down
2 changes: 1 addition & 1 deletion Samples/EntityFrameworkCore/EntityFrameworkCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.2.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.2.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Samples/UwpApp/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal class Configuration: IConfiguration
{
public IEnumerable<IDisposable> Apply(IContainer container)
{
// Viwes
// Views
yield return container.Bind<MainPage>().As(Lifetime.Singleton).To<MainPage>();

// View Models
Expand Down
5 changes: 4 additions & 1 deletion Samples/UwpApp/UwpApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,11 @@
</Page>
</ItemGroup>
<ItemGroup>
<PackageReference Include="IoC.Container">
<Version>1.1.11</Version>
</PackageReference>
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
<Version>6.1.5</Version>
<Version>6.1.9</Version>
</PackageReference>
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '14.0' ">
Expand Down

0 comments on commit 29f6234

Please sign in to comment.