-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
22 lines (19 loc) · 1.04 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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<Authors>Amadeusz Sadowski</Authors>
<Company>WarHub</Company>
<Copyright>Copyright © Amadeusz Sadowski</Copyright>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<IsTestingOnlyProject>$(MSBuildProjectName.Contains('Test'))</IsTestingOnlyProject>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj/$(MSBuildProjectName)/</BaseIntermediateOutputPath>
<BaseIntermediateOutputPath>$([MSBuild]::MakeRelative($(MSBuildProjectDirectory), $(BaseIntermediateOutputPath)))</BaseIntermediateOutputPath>
<OutputPath>$(MSBuildThisFileDirectory)bin/$(MSBuildProjectName)/$(Configuration)/</OutputPath>
<OutputPath>$([MSBuild]::MakeRelative($(MSBuildProjectDirectory), $(OutputPath)))</OutputPath>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
</Project>