* update libs, target NET 5.0 in tests * correct metadata and symbol configuration * add artifact definition to appveyor.yml, set ContinuousIntegrationBuild
46 lines
1.5 KiB
XML
46 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.12.0</NUnitVersion>
|
|
<NUnitTestAdapterVersion>3.17.0</NUnitTestAdapterVersion>
|
|
<FakeItEasyVersion>6.2.1</FakeItEasyVersion>
|
|
<FakeItEasyAnalyzerVersion>6.0.0</FakeItEasyAnalyzerVersion>
|
|
<MicrosoftTestSDKVersion>16.8.0</MicrosoftTestSDKVersion>
|
|
|
|
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
|
<ComVisible>False</ComVisible>
|
|
<DebugSymbols>True</DebugSymbols>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
<TargetFullFrameworkVersion>net461</TargetFullFrameworkVersion>
|
|
|
|
</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> |