mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\src\Microsoft.AspNetCore.AngularServices\Microsoft.AspNetCore.AngularServices.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SQLite" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.0" />
|
|
<PackageReference Include="AutoMapper" Version="5.0.2" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
|
|
<Exec Command="npm install" />
|
|
<Exec Command="gulp" />
|
|
</Target>
|
|
|
|
</Project>
|