2018-02-22 03:11:24 +03:00
|
|
|
<Project>
|
2018-03-10 02:35:21 +03:00
|
|
|
<Import
|
|
|
|
Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))\AspNetCoreSettings.props"
|
|
|
|
Condition=" '$(CI)' != 'true' AND '$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))' != '' " />
|
|
|
|
|
2018-02-26 18:13:36 +03:00
|
|
|
<Import Project="version.props" />
|
2018-03-10 02:35:21 +03:00
|
|
|
<Import Project="build\dependencies.props" />
|
2018-08-07 04:28:13 +03:00
|
|
|
|
2018-02-26 18:13:36 +03:00
|
|
|
<PropertyGroup>
|
|
|
|
<Product>Microsoft ASP.NET Core Blazor</Product>
|
|
|
|
<RepositoryUrl>https://github.com/aspnet/blazor</RepositoryUrl>
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
|
2018-03-10 02:35:21 +03:00
|
|
|
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)build\Key.snk</AssemblyOriginatorKeyFile>
|
2018-08-22 01:37:05 +03:00
|
|
|
<SignAssembly>true</SignAssembly>
|
2018-02-26 18:13:36 +03:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2018-03-10 02:35:21 +03:00
|
|
|
<AssemblySigningCertName>Microsoft</AssemblySigningCertName>
|
2018-04-12 06:52:01 +03:00
|
|
|
<LangVersion>7.3</LangVersion>
|
2018-03-10 02:35:21 +03:00
|
|
|
|
2018-08-22 01:37:05 +03:00
|
|
|
<!-- Disable API baseline checks. -->
|
2018-03-10 02:35:21 +03:00
|
|
|
<EnableApiCheck>false</EnableApiCheck>
|
2018-02-26 18:13:36 +03:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-08-07 04:28:13 +03:00
|
|
|
<Import Project="build\arcade.props" />
|
2018-03-10 02:35:21 +03:00
|
|
|
|
2018-08-07 04:28:13 +03:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Internal.AspNetCore.Sdk" PrivateAssets="All" Version="$(InternalAspNetCoreSdkPackageVersion)" />
|
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|