razor-tooling/eng/Build.props

17 строки
1.0 KiB
Plaintext
Исходник Постоянная ссылка Обычный вид История

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2018-12-05 06:15:03 +03:00
<ItemGroup>
2023-09-19 22:12:01 +03:00
<!-- Note: It is important BuildAnalyzers.sln builds first and does not allow building in parallel.
Because projects in Razor.sln (or Razor.Slim.slnf) have a project reference to Razor.Diagnostics.Analyzers
that is treated as an analyzer, there can be file locking issues if Razor.Diagnostics.Analyzers isn't
2023-09-19 22:12:01 +03:00
built before Razor.sln. Setting "BuildInParallel" to "false" ensures that this solution will be fully
built first. -->
<ProjectToBuild Include="$(RepoRoot)\eng\BuildAnalyzers.sln" BuildInParallel="false" />
2023-09-19 07:13:31 +03:00
2022-11-23 08:38:25 +03:00
<ProjectToBuild Condition="'$(OS)'=='WINDOWS_NT' and '$(SdkTaskProjects)'==''" Include="$(MSBuildThisFileDirectory)..\Razor.sln" />
<!-- Exclude VSIX projects on non-Windows -->
<ProjectToBuild Condition="'$(OS)'!='WINDOWS_NT' and '$(SdkTaskProjects)'==''" Include="$(MSBuildThisFileDirectory)..\Razor.Slim.slnf" />
</ItemGroup>
</Project>