Skip to content

Commit 441da74

Browse files
committed
Upgraded to ABP v0.5.2.
1 parent f5fe145 commit 441da74

File tree

21 files changed

+222
-180
lines changed

21 files changed

+222
-180
lines changed

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

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,17 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
36-
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.5.0.0\lib\net451\Abp.dll</HintPath>
35+
<Reference Include="Abp">
36+
<HintPath>..\packages\Abp.0.5.2.0\lib\net451\Abp.dll</HintPath>
3837
</Reference>
39-
<Reference Include="Abp.AutoMapper, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
40-
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\Abp.AutoMapper.0.5.0.0\lib\net451\Abp.AutoMapper.dll</HintPath>
38+
<Reference Include="Abp.AutoMapper">
39+
<HintPath>..\packages\Abp.AutoMapper.0.5.2.0\lib\net451\Abp.AutoMapper.dll</HintPath>
4240
</Reference>
43-
<Reference Include="AutoMapper, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
44-
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.dll</HintPath>
41+
<Reference Include="AutoMapper">
42+
<HintPath>..\packages\AutoMapper.3.3.1\lib\net40\AutoMapper.dll</HintPath>
4643
</Reference>
47-
<Reference Include="AutoMapper.Net4, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
48-
<SpecificVersion>False</SpecificVersion>
49-
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.Net4.dll</HintPath>
44+
<Reference Include="AutoMapper.Net4">
45+
<HintPath>..\packages\AutoMapper.3.3.1\lib\net40\AutoMapper.Net4.dll</HintPath>
5046
</Reference>
5147
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
5248
<SpecificVersion>False</SpecificVersion>
@@ -60,6 +56,15 @@
6056
<SpecificVersion>False</SpecificVersion>
6157
<HintPath>..\packages\Castle.Windsor.3.3.0\lib\net45\Castle.Windsor.dll</HintPath>
6258
</Reference>
59+
<Reference Include="Nito.AsyncEx">
60+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.dll</HintPath>
61+
</Reference>
62+
<Reference Include="Nito.AsyncEx.Concurrent">
63+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Concurrent.dll</HintPath>
64+
</Reference>
65+
<Reference Include="Nito.AsyncEx.Enlightenment">
66+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Enlightenment.dll</HintPath>
67+
</Reference>
6368
<Reference Include="System" />
6469
<Reference Include="System.Collections.Immutable, Version=1.0.34.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
6570
<SpecificVersion>False</SpecificVersion>
@@ -97,7 +102,7 @@
97102
</PropertyGroup>
98103
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
99104
</Target>
100-
<Import Project="..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets')" />
105+
<Import Project="..\packages\AutoMapper.3.3.1\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.3.1\tools\AutoMapper.targets')" />
101106
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
102107
Other similar extension points exist, see Microsoft.Common.targets.
103108
<Target Name="BeforeBuild">
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.5.0.0" targetFramework="net451" />
4-
<package id="Abp.AutoMapper" version="0.5.0.0" targetFramework="net451" />
5-
<package id="AutoMapper" version="3.3.0" targetFramework="net451" />
3+
<package id="Abp" version="0.5.2.0" targetFramework="net451" />
4+
<package id="Abp.AutoMapper" version="0.5.2.0" targetFramework="net451" />
5+
<package id="AutoMapper" version="3.3.1" 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" />
99
<package id="Microsoft.Bcl.Immutable" version="1.0.34" targetFramework="net451" />
10+
<package id="Nito.AsyncEx" version="3.0.0" targetFramework="net451" />
1011
</packages>

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

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
36-
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.5.0.0\lib\net451\Abp.dll</HintPath>
35+
<Reference Include="Abp">
36+
<HintPath>..\packages\Abp.0.5.2.0\lib\net451\Abp.dll</HintPath>
3837
</Reference>
3938
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
4039
<SpecificVersion>False</SpecificVersion>
@@ -48,6 +47,15 @@
4847
<SpecificVersion>False</SpecificVersion>
4948
<HintPath>..\packages\Castle.Windsor.3.3.0\lib\net45\Castle.Windsor.dll</HintPath>
5049
</Reference>
50+
<Reference Include="Nito.AsyncEx">
51+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.dll</HintPath>
52+
</Reference>
53+
<Reference Include="Nito.AsyncEx.Concurrent">
54+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Concurrent.dll</HintPath>
55+
</Reference>
56+
<Reference Include="Nito.AsyncEx.Enlightenment">
57+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Enlightenment.dll</HintPath>
58+
</Reference>
5159
<Reference Include="System" />
5260
<Reference Include="System.Collections.Immutable, Version=1.0.34.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
5361
<SpecificVersion>False</SpecificVersion>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.5.0.0" targetFramework="net451" />
3+
<package id="Abp" version="0.5.2.0" 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" />
77
<package id="Microsoft.Bcl.Immutable" version="1.0.34" targetFramework="net451" />
8+
<package id="Nito.AsyncEx" version="3.0.0" targetFramework="net451" />
89
</packages>

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

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,11 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
36-
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.5.0.0\lib\net451\Abp.dll</HintPath>
35+
<Reference Include="Abp">
36+
<HintPath>..\packages\Abp.0.5.2.0\lib\net451\Abp.dll</HintPath>
3837
</Reference>
39-
<Reference Include="Abp.EntityFramework, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
40-
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\Abp.EntityFramework.0.5.0.0\lib\net451\Abp.EntityFramework.dll</HintPath>
38+
<Reference Include="Abp.EntityFramework">
39+
<HintPath>..\packages\Abp.EntityFramework.0.5.2.0\lib\net451\Abp.EntityFramework.dll</HintPath>
4240
</Reference>
4341
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
4442
<SpecificVersion>False</SpecificVersion>
@@ -60,6 +58,15 @@
6058
<SpecificVersion>False</SpecificVersion>
6159
<HintPath>..\packages\EntityFramework.6.1.2\lib\net45\EntityFramework.SqlServer.dll</HintPath>
6260
</Reference>
61+
<Reference Include="Nito.AsyncEx">
62+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.dll</HintPath>
63+
</Reference>
64+
<Reference Include="Nito.AsyncEx.Concurrent">
65+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Concurrent.dll</HintPath>
66+
</Reference>
67+
<Reference Include="Nito.AsyncEx.Enlightenment">
68+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Enlightenment.dll</HintPath>
69+
</Reference>
6370
<Reference Include="System" />
6471
<Reference Include="System.Collections.Immutable, Version=1.0.34.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
6572
<SpecificVersion>False</SpecificVersion>
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.5.0.0" targetFramework="net451" />
4-
<package id="Abp.EntityFramework" version="0.5.0.0" targetFramework="net451" />
3+
<package id="Abp" version="0.5.2.0" targetFramework="net451" />
4+
<package id="Abp.EntityFramework" version="0.5.2.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.2" targetFramework="net451" />
99
<package id="Microsoft.Bcl.Immutable" version="1.0.34" targetFramework="net451" />
10+
<package id="Nito.AsyncEx" version="3.0.0" targetFramework="net451" />
1011
</packages>

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

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,14 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
36-
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.5.0.0\lib\net451\Abp.dll</HintPath>
35+
<Reference Include="Abp">
36+
<HintPath>..\packages\Abp.0.5.2.0\lib\net451\Abp.dll</HintPath>
3837
</Reference>
39-
<Reference Include="Abp.FluentMigrator, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
40-
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\Abp.FluentMigrator.0.5.0.0\lib\net451\Abp.FluentMigrator.dll</HintPath>
38+
<Reference Include="Abp.FluentMigrator">
39+
<HintPath>..\packages\Abp.FluentMigrator.0.5.2.0\lib\net451\Abp.FluentMigrator.dll</HintPath>
4240
</Reference>
43-
<Reference Include="Abp.NHibernate, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
44-
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\packages\Abp.NHibernate.0.5.0.0\lib\net451\Abp.NHibernate.dll</HintPath>
41+
<Reference Include="Abp.NHibernate">
42+
<HintPath>..\packages\Abp.NHibernate.0.5.2.0\lib\net451\Abp.NHibernate.dll</HintPath>
4643
</Reference>
4744
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
4845
<SpecificVersion>False</SpecificVersion>
@@ -56,9 +53,8 @@
5653
<SpecificVersion>False</SpecificVersion>
5754
<HintPath>..\packages\Castle.Windsor.3.3.0\lib\net45\Castle.Windsor.dll</HintPath>
5855
</Reference>
59-
<Reference Include="FluentMigrator, Version=1.3.1.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
60-
<SpecificVersion>False</SpecificVersion>
61-
<HintPath>..\packages\FluentMigrator.1.3.1.0\lib\40\FluentMigrator.dll</HintPath>
56+
<Reference Include="FluentMigrator">
57+
<HintPath>..\packages\FluentMigrator.1.4.0.0\lib\40\FluentMigrator.dll</HintPath>
6258
</Reference>
6359
<Reference Include="FluentNHibernate, Version=2.0.1.0, Culture=neutral, processorArchitecture=MSIL">
6460
<SpecificVersion>False</SpecificVersion>
@@ -68,9 +64,17 @@
6864
<SpecificVersion>False</SpecificVersion>
6965
<HintPath>..\packages\Iesi.Collections.4.0.1.4000\lib\net40\Iesi.Collections.dll</HintPath>
7066
</Reference>
71-
<Reference Include="NHibernate, Version=4.0.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
72-
<SpecificVersion>False</SpecificVersion>
73-
<HintPath>..\packages\NHibernate.4.0.2.4000\lib\net40\NHibernate.dll</HintPath>
67+
<Reference Include="NHibernate">
68+
<HintPath>..\packages\NHibernate.4.0.3.4000\lib\net40\NHibernate.dll</HintPath>
69+
</Reference>
70+
<Reference Include="Nito.AsyncEx">
71+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.dll</HintPath>
72+
</Reference>
73+
<Reference Include="Nito.AsyncEx.Concurrent">
74+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Concurrent.dll</HintPath>
75+
</Reference>
76+
<Reference Include="Nito.AsyncEx.Enlightenment">
77+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Enlightenment.dll</HintPath>
7478
</Reference>
7579
<Reference Include="System" />
7680
<Reference Include="System.Collections.Immutable, Version=1.0.34.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">

Templates/All-In-One-Template/MySpaProject/MySpaProject.NHibernate/MySpaProjectDataModule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Configuration;
22
using System.Reflection;
3+
using Abp.Configuration.Startup;
34
using Abp.Modules;
45
using Abp.NHibernate;
5-
using Abp.NHibernate.Config;
66
using FluentNHibernate.Cfg.Db;
77

88
namespace MySpaProject
Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Abp" version="0.5.0.0" targetFramework="net451" />
4-
<package id="Abp.FluentMigrator" version="0.5.0.0" targetFramework="net451" />
5-
<package id="Abp.NHibernate" version="0.5.0.0" targetFramework="net451" />
3+
<package id="Abp" version="0.5.2.0" targetFramework="net451" />
4+
<package id="Abp.FluentMigrator" version="0.5.2.0" targetFramework="net451" />
5+
<package id="Abp.NHibernate" version="0.5.2.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.1.0" targetFramework="net451" />
9+
<package id="FluentMigrator" version="1.4.0.0" targetFramework="net451" />
1010
<package id="FluentNHibernate" version="2.0.1.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" />
13-
<package id="NHibernate" version="4.0.2.4000" targetFramework="net451" />
13+
<package id="NHibernate" version="4.0.3.4000" targetFramework="net451" />
14+
<package id="Nito.AsyncEx" version="3.0.0" targetFramework="net451" />
1415
</packages>

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

Lines changed: 23 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -32,29 +32,23 @@
3232
<WarningLevel>4</WarningLevel>
3333
</PropertyGroup>
3434
<ItemGroup>
35-
<Reference Include="Abp, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
36-
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\packages\Abp.0.5.0.0\lib\net451\Abp.dll</HintPath>
35+
<Reference Include="Abp">
36+
<HintPath>..\packages\Abp.0.5.2.0\lib\net451\Abp.dll</HintPath>
3837
</Reference>
39-
<Reference Include="Abp.AutoMapper, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
40-
<SpecificVersion>False</SpecificVersion>
41-
<HintPath>..\packages\Abp.AutoMapper.0.5.0.0\lib\net451\Abp.AutoMapper.dll</HintPath>
38+
<Reference Include="Abp.AutoMapper">
39+
<HintPath>..\packages\Abp.AutoMapper.0.5.2.0\lib\net451\Abp.AutoMapper.dll</HintPath>
4240
</Reference>
43-
<Reference Include="Abp.Web, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
44-
<SpecificVersion>False</SpecificVersion>
45-
<HintPath>..\packages\Abp.Web.0.5.0.0\lib\net451\Abp.Web.dll</HintPath>
41+
<Reference Include="Abp.Web">
42+
<HintPath>..\packages\Abp.Web.0.5.2.0\lib\net451\Abp.Web.dll</HintPath>
4643
</Reference>
47-
<Reference Include="Abp.Web.Api, Version=0.5.0.0, Culture=neutral, processorArchitecture=MSIL">
48-
<SpecificVersion>False</SpecificVersion>
49-
<HintPath>..\packages\Abp.Web.Api.0.5.0.0\lib\net451\Abp.Web.Api.dll</HintPath>
44+
<Reference Include="Abp.Web.Api">
45+
<HintPath>..\packages\Abp.Web.Api.0.5.2.0\lib\net451\Abp.Web.Api.dll</HintPath>
5046
</Reference>
51-
<Reference Include="AutoMapper, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
52-
<SpecificVersion>False</SpecificVersion>
53-
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.dll</HintPath>
47+
<Reference Include="AutoMapper">
48+
<HintPath>..\packages\AutoMapper.3.3.1\lib\net40\AutoMapper.dll</HintPath>
5449
</Reference>
55-
<Reference Include="AutoMapper.Net4, Version=3.3.0.0, Culture=neutral, PublicKeyToken=be96cd2c38ef1005, processorArchitecture=MSIL">
56-
<SpecificVersion>False</SpecificVersion>
57-
<HintPath>..\packages\AutoMapper.3.3.0\lib\net40\AutoMapper.Net4.dll</HintPath>
50+
<Reference Include="AutoMapper.Net4">
51+
<HintPath>..\packages\AutoMapper.3.3.1\lib\net40\AutoMapper.Net4.dll</HintPath>
5852
</Reference>
5953
<Reference Include="Castle.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL">
6054
<SpecificVersion>False</SpecificVersion>
@@ -70,7 +64,16 @@
7064
</Reference>
7165
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
7266
<SpecificVersion>False</SpecificVersion>
73-
<HintPath>..\packages\Newtonsoft.Json.6.0.7\lib\net45\Newtonsoft.Json.dll</HintPath>
67+
<HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
68+
</Reference>
69+
<Reference Include="Nito.AsyncEx">
70+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.dll</HintPath>
71+
</Reference>
72+
<Reference Include="Nito.AsyncEx.Concurrent">
73+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Concurrent.dll</HintPath>
74+
</Reference>
75+
<Reference Include="Nito.AsyncEx.Enlightenment">
76+
<HintPath>..\packages\Nito.AsyncEx.3.0.0\lib\net45\Nito.AsyncEx.Enlightenment.dll</HintPath>
7477
</Reference>
7578
<Reference Include="System" />
7679
<Reference Include="System.Collections.Immutable, Version=1.0.34.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
@@ -120,7 +123,7 @@
120123
</PropertyGroup>
121124
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
122125
</Target>
123-
<Import Project="..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.3.0\tools\AutoMapper.targets')" />
126+
<Import Project="..\packages\AutoMapper.3.3.1\tools\AutoMapper.targets" Condition="Exists('..\packages\AutoMapper.3.3.1\tools\AutoMapper.targets')" />
124127
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
125128
Other similar extension points exist, see Microsoft.Common.targets.
126129
<Target Name="BeforeBuild">

0 commit comments

Comments
 (0)