-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
25 lines (19 loc) · 1.63 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<CodeGenPropsFile>CodeGen\Hive.CodeGen\build\Hive.CodeGen.props</CodeGenPropsFile>
</PropertyGroup>
<Import Project="$(MSBuildThisFileDirectory)tools\_Build.props" />
<Import Project="$(MSBuildThisFileDirectory)NuGetInfo.props"/>
<ItemGroup Condition="'$(IsFSharp)' != true And '$(IsCodeGen)' != 'true' And '$(NoAutoProjectRefs)' != 'true'">
<ProjectReference Include="$(HiveSourceDirectory)CodeGen\Hive.CodeGen.Attributes\Hive.CodeGen.Attributes.csproj" Condition="'$(IsAnalyzer)' != 'true'" />
<ProjectReference Include="$(HiveSourceDirectory)CodeGen\Hive.CodeGen.Attributes\Hive.CodeGen.Attributes.csproj" Condition="'$(IsAnalyzer)' == 'true'" PrivateAssets="all" />
<ProjectReference Include="$(HiveSourceDirectory)CodeGen\Hive.CodeGen\Hive.CodeGen.csproj" PrivateAssets="all" ReferenceOutputAssembly="false" OutputItemType="Analyzer" Pack="false" />
</ItemGroup>
<ItemGroup Condition="'$(IsFSharp)' != true And '$(IsCodeGen)' != 'true' And '$(IsAnalyzer)' != 'true' And '$(NoAutoProjectRefs)' != 'true'">
<ProjectReference Include="$(HiveSourceDirectory)Hive.Analyzers\Hive.Analyzers.csproj" PrivateAssets="all" ReferenceOutputAssembly="false" OutputItemType="Analyzer" Pack="false" />
</ItemGroup>
<ItemGroup Condition="'$(IsFSharp)' != true And '$(IsUtilities)' != 'true' And '$(IsCodeGen)' != 'true' And '$(IsAnalyzer)' != 'true' And '$(NoAutoProjectRefs)' != 'true'">
<ProjectReference Include="$(HiveSourceDirectory)Hive.Utilities\Hive.Utilities.csproj" />
</ItemGroup>
</Project>