32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
<Project>
|
|
<Import
|
|
Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))\AspNetCoreSettings.props"
|
|
Condition=" '$(CI)' != 'true' AND '$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), AspNetCoreSettings.props))' != '' " />
|
|
|
|
<Import Project="version.props" />
|
|
<Import Project="build\dependencies.props" />
|
|
<Import Project="build\sources.props" />
|
|
|
|
<PropertyGroup>
|
|
<Product>Microsoft ASP.NET Core</Product>
|
|
<RepositoryRoot>$(MSBuildThisFileDirectory)</RepositoryRoot>
|
|
<RepositoryUrl>https://github.com/aspnet/AspNetCore</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<SharedSourceRoot>$(MSBuildThisFileDirectory)..\Shared\</SharedSourceRoot>
|
|
</PropertyGroup>
|
|
|
|
<!-- Artifacts layout -->
|
|
<PropertyGroup>
|
|
<ArtifactsDir>$(MSBuildThisFileDirectory)..\..\artifacts\</ArtifactsDir>
|
|
<ArtifactsConfigurationDir>$(ArtifactsDir)$(Configuration)\</ArtifactsConfigurationDir>
|
|
<BasePackageOutputPath>$(ArtifactsConfigurationDir)packages\</BasePackageOutputPath>
|
|
<ProductPackageOutputPath>$(BasePackageOutputPath)product\</ProductPackageOutputPath>
|
|
<InternalPackageOutputPath>$(BasePackageOutputPath)internal\</InternalPackageOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="*.in" />
|
|
</ItemGroup>
|
|
</Project>
|