|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Web">
|
2 | 2 |
|
| 3 | + <Import Project="..\..\..\build\dependencies.props" /> |
| 4 | + |
3 | 5 | <PropertyGroup>
|
4 | 6 | <TargetFramework>netcoreapp1.1</TargetFramework>
|
5 | 7 | <TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
|
15 | 17 | </ItemGroup>
|
16 | 18 |
|
17 | 19 | <ItemGroup>
|
18 |
| - <PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" /> |
19 |
| - <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="1.1.0" /> |
20 |
| - <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.0" /> |
21 |
| - <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.0" /> |
22 |
| - <PackageReference Include="Microsoft.EntityFrameworkCore.SQLite" Version="1.1.0" /> |
23 |
| - <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.0" /> |
24 |
| - <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.0" /> |
25 |
| - <PackageReference Include="AutoMapper" Version="5.0.2" /> |
| 20 | + <PackageReference Include="Microsoft.AspNetCore" Version="$(AspNetCoreVersion)" /> |
| 21 | + <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="$(AspNetCoreVersion)" /> |
| 22 | + <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="$(AspNetCoreVersion)" /> |
| 23 | + <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="$(AspNetCoreVersion)" /> |
| 24 | + <PackageReference Include="Microsoft.EntityFrameworkCore.SQLite" Version="$(AspNetCoreVersion)" /> |
| 25 | + <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="$(AspNetCoreVersion)" /> |
| 26 | + <PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="$(AspNetCoreVersion)" /> |
| 27 | + <PackageReference Include="AutoMapper" Version="$(AutoMapperVersion)" /> |
26 | 28 | </ItemGroup>
|
27 | 29 |
|
28 | 30 | <Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
|
|
31 | 33 | </Target>
|
32 | 34 |
|
33 | 35 | <ItemGroup>
|
34 |
| - <DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0-msbuild3-final" /> |
| 36 | + <DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="$(AspNetCoreToolsVersion)" /> |
35 | 37 | </ItemGroup>
|
36 | 38 |
|
37 | 39 | </Project>
|
0 commit comments