зеркало из https://github.com/dotnet/razor.git
22 строки
929 B
XML
22 строки
929 B
XML
<!-- Whenever altering this or other Source Build files, please include @dotnet/source-build-internal as a reviewer. -->
|
|
|
|
<Project>
|
|
<PropertyGroup>
|
|
<GitHubRepositoryName>razor</GitHubRepositoryName>
|
|
<SourceBuildManagedOnly>true</SourceBuildManagedOnly>
|
|
<CloneSubmodulesToInnerSourceBuildRepo>false</CloneSubmodulesToInnerSourceBuildRepo>
|
|
</PropertyGroup>
|
|
|
|
<!--
|
|
Remove inner source .globalconfig file as both the inner and outer config files get loaded and cause a conflict.
|
|
Leaving the inner will cause all conflicting settings to be ignored.
|
|
https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/configuration-files#general-options
|
|
-->
|
|
<Target Name="RemoveInnerGlobalConfig"
|
|
DependsOnTargets="PrepareInnerSourceBuildRepoRoot"
|
|
BeforeTargets="RunInnerSourceBuildCommand">
|
|
<Delete Files="$(InnerSourceBuildRepoRoot).globalconfig" />
|
|
</Target>
|
|
|
|
</Project>
|