Files
spring-net/test/Directory.Build.props
Marko Lahma ca2bf1e889 Add GitHub Actions configuration (#201)
* new build system based on NUKE build
* support test running on Linux
2021-08-02 17:54:41 +03:00

48 lines
1.5 KiB
XML

<Project>
<PropertyGroup>
<NoWarn>618, 1591</NoWarn>
<OutputPath>..\..\..\build\$(Configuration)\$(MSBuildProjectName)</OutputPath>
<RootNamespace>Spring</RootNamespace>
<Deterministic>true</Deterministic>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<ApacheNmsVersion>1.8.0</ApacheNmsVersion>
<CommonLoggingVersion>3.4.1</CommonLoggingVersion>
<Log4NetVersion>2.0.8</Log4NetVersion>
<NUnitVersion>3.13.1</NUnitVersion>
<NUnitTestAdapterVersion>3.17.0</NUnitTestAdapterVersion>
<FakeItEasyVersion>6.2.1</FakeItEasyVersion>
<FakeItEasyAnalyzerVersion>6.0.0</FakeItEasyAnalyzerVersion>
<MicrosoftTestSDKVersion>16.9.4</MicrosoftTestSDKVersion>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<ComVisible>False</ComVisible>
<DebugSymbols>True</DebugSymbols>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>latest</LangVersion>
<TargetFullFrameworkVersion>net461</TargetFullFrameworkVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>Full</DebugType>
<DefineConstants>DEBUG;TRACE;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<Optimize>true</Optimize>
<DefineConstants>TRACE;$(DefineConstants)</DefineConstants>
</PropertyGroup>
</Project>