-
Notifications
You must be signed in to change notification settings - Fork 481
/
Copy pathCommandLine.Tests.csproj
38 lines (33 loc) · 1.74 KB
/
CommandLine.Tests.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net461;net7;netcoreapp3.1</TargetFrameworks>
<DefineConstants Condition="'$(BuildTarget)' != 'fsharp'">$(DefineConstants);SKIP_FSHARP</DefineConstants>
<AssemblyOriginatorKeyFile>..\..\CommandLine.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<Authors>gsscoder;nemec;ericnewton76</Authors>
<Title>Command Line Parser Library</Title>
<Version Condition="'$(VersionSuffix)' != ''">$(VersionSuffix)</Version>
<Version Condition="'$(VersionSuffix)' == ''">2.5.0</Version>
<Copyright>Copyright (c) 2005 - 2018 Giacomo Stelluti Scala & Contributors</Copyright>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup Condition="'$(BuildTarget)' != 'fsharp'">
<Compile Remove="Fakes\Options_With_FSharpOption.cs" />
<Compile Remove="Unit\Infrastructure\FSharpOptionHelperTests.cs" />
</ItemGroup>
<PropertyGroup Condition="$(TargetFramework.StartsWith('netcoreapp'))">
<DefineConstants>$(DefineConstants);PLATFORM_DOTNET</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\CommandLine\CommandLine.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.4.1" />
<PackageReference Include="FsCheck" Version="2.11.0" />
<PackageReference Include="FSharp.Core" Version="4.5.1" Condition="'$(BuildTarget)' == 'fsharp'" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
</ItemGroup>
</Project>