-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
41 lines (32 loc) · 1.42 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!--
Copyright © 2022 Gabor Csizmadia
This code is licensed under MIT license (see LICENSE for details)
-->
<Project>
<!-- Support for dotnet CLI commands -->
<PropertyGroup>
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>EgonsoftHU.Extensions.Logging.Autofac</RootNamespace>
</PropertyGroup>
<PropertyGroup>
<Product>Egonsoft.HU Logging Extensions for Autofac</Product>
</PropertyGroup>
<PropertyGroup>
<EgonsoftHUCommonPropsFile>$(MSBuildThisFileDirectory)..\..\build\EgonsoftHU.Common.props</EgonsoftHUCommonPropsFile>
</PropertyGroup>
<Import Project="$(EgonsoftHUCommonPropsFile)" Condition="Exists('$(EgonsoftHUCommonPropsFile)')" />
<PropertyGroup Condition="'$(ProjectFolder)' == 'src'">
<ApplicationManifest>$(SolutionDir)src\$(MSBuildProjectName)\app.manifest</ApplicationManifest>
</PropertyGroup>
<PropertyGroup Condition="'$(ProjectFolder)' == 'test'">
<Title>$(MSBuildProjectName)</Title>
</PropertyGroup>
<ItemGroup Condition="'$(ProjectFolder)' == 'test' And '$(MSBuildProjectName)' != 'EgonsoftHU.Extensions.Logging.Autofac.UnitTests'">
<AssemblyAttribute Include="Xunit.TestFrameworkAttribute">
<_Parameter1>EgonsoftHU.Extensions.Logging.Autofac.UnitTests.AutofacLoggingTestFramework</_Parameter1>
<_Parameter2>$(MSBuildProjectName)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
</Project>