-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCLI.Tests.csproj
57 lines (50 loc) · 2.3 KB
/
CLI.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyName>Genometric.MSPC.CLI.Tests</AssemblyName>
<RootNamespace>Genometric.MSPC.CLI.Tests</RootNamespace>
<Authors>https://github.com/Genometric/MSPC/graphs/contributors</Authors>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/Genometric/MSPC</PackageProjectUrl>
<RepositoryUrl>https://github.com/Genometric/MSPC</RepositoryUrl>
<PackageId>Genometric.MSPC.CLI.Tests</PackageId>
<Copyright>GNU General Public License v3.0</Copyright>
<Description>Using combined evidence from replicates to evaluate ChIP-seq peaks</Description>
<Company>Genometric</Company>
<PackageTags>Next-Generation-Sequencing; NGS-analysis; ChIP-seq; genome-analysis; Peak-calling; Comparative-Peak-Calling; Replicates; Single-Cell; ATAC-seq; biological-replicates; technical-replicates</PackageTags>
<PackageIcon>logo.png</PackageIcon>
<PackageReleaseNotes>https://github.com/Genometric/MSPC/blob/main/ReleaseNotes/v6.rst</PackageReleaseNotes>
<PackageLicenseFile>license.md</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CLI\CLI.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\license.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\website\static\logo\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>