Skip to content

Commit 16a31eb

Browse files
committed
Upgraded all nuget packages.
1 parent e9b16a8 commit 16a31eb

File tree

360 files changed

+9913
-5292
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

360 files changed

+9913
-5292
lines changed

Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/MySpaProject.Application.csproj

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,20 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
35+
<Reference Include="Abp, Version=0.4.4.2, Culture=neutral, processorArchitecture=MSIL">
3636
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.4.3.1\lib\net451\Abp.dll</HintPath>
37+
<HintPath>..\packages\Abp.0.4.4.2\lib\net451\Abp.dll</HintPath>
3838
</Reference>
39-
<Reference Include="AutoMapper, Version=3.2.1.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
39+
<Reference Include="Abp.AutoMapper">
40+
<HintPath>..\packages\Abp.AutoMapper.0.4.4.0\lib\net451\Abp.AutoMapper.dll</HintPath>
41+
</Reference>
42+
<Reference Include="AutoMapper, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
4043
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\AutoMapper.3.2.1\lib\net40\AutoMapper.dll</HintPath>
44+
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.dll</HintPath>
4245
</Reference>
43-
<Reference Include="AutoMapper.Net4, Version=3.2.1.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
46+
<Reference Include="AutoMapper.Net4, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
4447
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\packages\AutoMapper.3.2.1\lib\net40\AutoMapper.Net4.dll</HintPath>
48+
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.Net4.dll</HintPath>
4649
</Reference>
4750
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
4851
<SpecificVersion>False</SpecificVersion>
@@ -86,14 +89,14 @@
8689
</ItemGroup>
8790
<ItemGroup />
8891
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
89-
<Import Project="..\packages\AutoMapper.3.2.1\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.2.1\tools\AutoMapper.targets')" />
9092
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
9193
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
9294
<PropertyGroup>
9395
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
9496
</PropertyGroup>
9597
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
9698
</Target>
99+
<Import Project="..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets')" />
97100
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98101
Other similar extension points exist, see Microsoft.Common.targets.
99102
<Target Name="BeforeBuild">

Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/app.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
<assemblyIdentity name="Castle.Core" publicKeyToken="407dd0808d44fbdc" culture="neutral" />
1111
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
1212
</dependentAssembly>
13+
<dependentAssembly>
14+
<assemblyIdentity name="AutoMapper" publicKeyToken="be96cd2c38ef1005" culture="neutral" />
15+
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" />
16+
</dependentAssembly>
1317
</assemblyBinding>
1418
</runtime>
1519
</configuration>

Templates/All-In-One-Template/MySpaProject/MySpaProject.Application/packages.config

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.4.3.1" targetFramework="net451" />
4-
<package id="AutoMapper" version="3.2.1" targetFramework="net451" />
3+
<package id="Abp" version="0.4.4.2" targetFramework="net451" />
4+
<package id="Abp.AutoMapper" version="0.4.4.0" targetFramework="net451" />
5+
<package id="AutoMapper" version="3.3.0" targetFramework="net451" />
56
<package id="Castle.Core" version="3.3.3" targetFramework="net451" />
67
<package id="Castle.LoggingFacility" version="3.3.0" targetFramework="net451" />
78
<package id="Castle.Windsor" version="3.3.0" targetFramework="net451" />

Templates/All-In-One-Template/MySpaProject/MySpaProject.Core/MySpaProject.Core.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
35+
<Reference Include="Abp, Version=0.4.4.2, Culture=neutral, processorArchitecture=MSIL">
3636
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.4.3.1\lib\net451\Abp.dll</HintPath>
37+
<HintPath>..\packages\Abp.0.4.4.2\lib\net451\Abp.dll</HintPath>
3838
</Reference>
3939
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
4040
<SpecificVersion>False</SpecificVersion>

Templates/All-In-One-Template/MySpaProject/MySpaProject.Core/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.4.3.1" targetFramework="net451" />
3+
<package id="Abp" version="0.4.4.2" targetFramework="net451" />
44
<package id="Castle.Core" version="3.3.3" targetFramework="net451" />
55
<package id="Castle.LoggingFacility" version="3.3.0" targetFramework="net451" />
66
<package id="Castle.Windsor" version="3.3.0" targetFramework="net451" />

Templates/All-In-One-Template/MySpaProject/MySpaProject.EntityFramework/MySpaProject.EntityFramework.csproj

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
35+
<Reference Include="Abp, Version=0.4.4.2, Culture=neutral, processorArchitecture=MSIL">
3636
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.4.3.1\lib\net451\Abp.dll</HintPath>
37+
<HintPath>..\packages\Abp.0.4.4.2\lib\net451\Abp.dll</HintPath>
3838
</Reference>
39-
<Reference Include="Abp.EntityFramework, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
39+
<Reference Include="Abp.EntityFramework, Version=0.4.4.0, Culture=neutral, processorArchitecture=MSIL">
4040
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\Abp.EntityFramework.0.4.3.1\lib\net451\Abp.EntityFramework.dll</HintPath>
41+
<HintPath>..\packages\Abp.EntityFramework.0.4.4.0\lib\net451\Abp.EntityFramework.dll</HintPath>
4242
</Reference>
4343
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
4444
<SpecificVersion>False</SpecificVersion>
@@ -67,9 +67,6 @@
6767
</Reference>
6868
<Reference Include="System.ComponentModel.DataAnnotations" />
6969
<Reference Include="System.Core" />
70-
<Reference Include="System.Linq.Dynamic">
71-
<HintPath>..\packages\System.Linq.Dynamic.1.0.3\lib\net40\System.Linq.Dynamic.dll</HintPath>
72-
</Reference>
7370
<Reference Include="System.Xml.Linq" />
7471
<Reference Include="System.Data.DataSetExtensions" />
7572
<Reference Include="Microsoft.CSharp" />
Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.4.3.1" targetFramework="net451" />
4-
<package id="Abp.EntityFramework" version="0.4.3.1" targetFramework="net451" />
3+
<package id="Abp" version="0.4.4.2" targetFramework="net451" />
4+
<package id="Abp.EntityFramework" version="0.4.4.0" targetFramework="net451" />
55
<package id="Castle.Core" version="3.3.3" targetFramework="net451" />
66
<package id="Castle.LoggingFacility" version="3.3.0" targetFramework="net451" />
77
<package id="Castle.Windsor" version="3.3.0" targetFramework="net451" />
88
<package id="EntityFramework" version="6.1.1" targetFramework="net451" />
99
<package id="Microsoft.Bcl.Immutable" version="1.0.34" targetFramework="net451" />
10-
<package id="System.Linq.Dynamic" version="1.0.3" targetFramework="net451" />
1110
</packages>

Templates/All-In-One-Template/MySpaProject/MySpaProject.NHibernate/MySpaProject.NHibernate.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
35+
<Reference Include="Abp, Version=0.4.4.2, Culture=neutral, processorArchitecture=MSIL">
3636
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.4.3.1\lib\net451\Abp.dll</HintPath>
37+
<HintPath>..\packages\Abp.0.4.4.2\lib\net451\Abp.dll</HintPath>
3838
</Reference>
39-
<Reference Include="Abp.FluentMigrator, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
39+
<Reference Include="Abp.FluentMigrator, Version=0.4.4.0, Culture=neutral, processorArchitecture=MSIL">
4040
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\Abp.FluentMigrator.0.4.3.1\lib\net451\Abp.FluentMigrator.dll</HintPath>
41+
<HintPath>..\packages\Abp.FluentMigrator.0.4.4.0\lib\net451\Abp.FluentMigrator.dll</HintPath>
4242
</Reference>
43-
<Reference Include="Abp.NHibernate, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
43+
<Reference Include="Abp.NHibernate, Version=0.4.4.0, Culture=neutral, processorArchitecture=MSIL">
4444
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\packages\Abp.NHibernate.0.4.3.1\lib\net451\Abp.NHibernate.dll</HintPath>
45+
<HintPath>..\packages\Abp.NHibernate.0.4.4.0\lib\net451\Abp.NHibernate.dll</HintPath>
4646
</Reference>
4747
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
4848
<SpecificVersion>False</SpecificVersion>
@@ -56,9 +56,9 @@
5656
<SpecificVersion>False</SpecificVersion>
5757
<HintPath>..\packages\Castle.Windsor.3.3.0\lib\net45\Castle.Windsor.dll</HintPath>
5858
</Reference>
59-
<Reference Include="FluentMigrator, Version=1.3.0.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
59+
<Reference Include="FluentMigrator, Version=1.3.1.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
6060
<SpecificVersion>False</SpecificVersion>
61-
<HintPath>..\packages\FluentMigrator.1.3.0.0\lib\40\FluentMigrator.dll</HintPath>
61+
<HintPath>..\packages\FluentMigrator.1.3.1.0\lib\40\FluentMigrator.dll</HintPath>
6262
</Reference>
6363
<Reference Include="FluentNHibernate, Version=1.4.0.0, Culture=neutral, PublicKeyToken=8aa435e3cb308880, processorArchitecture=MSIL">
6464
<SpecificVersion>False</SpecificVersion>

Templates/All-In-One-Template/MySpaProject/MySpaProject.NHibernate/packages.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.4.3.1" targetFramework="net451" />
4-
<package id="Abp.FluentMigrator" version="0.4.3.1" targetFramework="net451" />
5-
<package id="Abp.NHibernate" version="0.4.3.1" targetFramework="net451" />
3+
<package id="Abp" version="0.4.4.2" targetFramework="net451" />
4+
<package id="Abp.FluentMigrator" version="0.4.4.0" targetFramework="net451" />
5+
<package id="Abp.NHibernate" version="0.4.4.0" targetFramework="net451" />
66
<package id="Castle.Core" version="3.3.3" targetFramework="net451" />
77
<package id="Castle.LoggingFacility" version="3.3.0" targetFramework="net451" />
88
<package id="Castle.Windsor" version="3.3.0" targetFramework="net451" />
9-
<package id="FluentMigrator" version="1.3.0.0" targetFramework="net451" />
9+
<package id="FluentMigrator" version="1.3.1.0" targetFramework="net451" />
1010
<package id="FluentNHibernate" version="1.4.0.0" targetFramework="net451" />
1111
<package id="Iesi.Collections" version="4.0.1.4000" targetFramework="net451" />
1212
<package id="Microsoft.Bcl.Immutable" version="1.0.34" targetFramework="net451" />

Templates/All-In-One-Template/MySpaProject/MySpaProject.WebApi/MySpaProject.WebApi.csproj

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,28 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
35+
<Reference Include="Abp, Version=0.4.4.2, Culture=neutral, processorArchitecture=MSIL">
3636
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.4.3.1\lib\net451\Abp.dll</HintPath>
37+
<HintPath>..\packages\Abp.0.4.4.2\lib\net451\Abp.dll</HintPath>
3838
</Reference>
39-
<Reference Include="Abp.Web, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
39+
<Reference Include="Abp.AutoMapper">
40+
<HintPath>..\packages\Abp.AutoMapper.0.4.4.0\lib\net451\Abp.AutoMapper.dll</HintPath>
41+
</Reference>
42+
<Reference Include="Abp.Web, Version=0.4.4.0, Culture=neutral, processorArchitecture=MSIL">
4043
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\Abp.Web.0.4.3.1\lib\net451\Abp.Web.dll</HintPath>
44+
<HintPath>..\packages\Abp.Web.0.4.4.0\lib\net451\Abp.Web.dll</HintPath>
4245
</Reference>
43-
<Reference Include="Abp.Web.Api, Version=0.4.3.1, Culture=neutral, processorArchitecture=MSIL">
46+
<Reference Include="Abp.Web.Api, Version=0.4.4.0, Culture=neutral, processorArchitecture=MSIL">
4447
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\packages\Abp.Web.Api.0.4.3.1\lib\net451\Abp.Web.Api.dll</HintPath>
48+
<HintPath>..\packages\Abp.Web.Api.0.4.4.0\lib\net451\Abp.Web.Api.dll</HintPath>
4649
</Reference>
47-
<Reference Include="AutoMapper">
48-
<HintPath>..\packages\AutoMapper.3.2.1\lib\net40\AutoMapper.dll</HintPath>
50+
<Reference Include="AutoMapper, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
51+
<SpecificVersion>False</SpecificVersion>
52+
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.dll</HintPath>
4953
</Reference>
50-
<Reference Include="AutoMapper.Net4, Version=3.2.1.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
54+
<Reference Include="AutoMapper.Net4, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
5155
<SpecificVersion>False</SpecificVersion>
52-
<HintPath>..\packages\AutoMapper.3.2.1\lib\net40\AutoMapper.Net4.dll</HintPath>
56+
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.Net4.dll</HintPath>
5357
</Reference>
5458
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
5559
<SpecificVersion>False</SpecificVersion>
@@ -108,14 +112,14 @@
108112
</ProjectReference>
109113
</ItemGroup>
110114
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
111-
<Import Project="..\packages\AutoMapper.3.2.1\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.2.1\tools\AutoMapper.targets')" />
112115
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
113116
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
114117
<PropertyGroup>
115118
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
116119
</PropertyGroup>
117120
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
118121
</Target>
122+
<Import Project="..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets')" />
119123
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
120124
Other similar extension points exist, see Microsoft.Common.targets.
121125
<Target Name="BeforeBuild">

0 commit comments

Comments
 (0)