44 lines
2.3 KiB
XML
44 lines
2.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<Description>Music store application on ASP.NET Core</Description>
|
|
<TargetFrameworks>netcoreapp2.0;net461</TargetFrameworks>
|
|
<DefineConstants>$(DefineConstants);DEMO</DefineConstants>
|
|
<MvcRazorCompileOnPublish>true</MvcRazorCompileOnPublish>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<RuntimeIdentifiers Condition="'$(RUN_RUNTIME_STORE_TESTS)' != 'true'">win7-x86;win7-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Update="ForTesting\**\*" CopyToPublishDirectory="Never" Condition=" '$(PublishForTesting)' != 'true' " />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.AspNetCoreModule" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFrameworkIdentifier)'=='.NETCoreApp'">
|
|
<PackageReference Include="Microsoft.AspNetCore.All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(TargetFrameworkIdentifier)'=='.NETFramework'">
|
|
<PackageReference Include="Microsoft.AspNetCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Cookies" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Facebook" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Google" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.MicrosoftAccount" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.Twitter" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.ViewCompilation" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Server.HttpSys" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Session" />
|
|
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" />
|
|
</ItemGroup>
|
|
</Project>
|