-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathBenchmark.csproj
29 lines (25 loc) · 1.26 KB
/
Benchmark.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Genometric.MSPC.$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<PackageId>Genometric.MSPC.Benchmark</PackageId>
<Authors>https://github.com/Genometric/MSPC/graphs/contributors</Authors>
<Company>Genometric</Company>
<Product>Genometric.MSPC.Benchmark</Product>
<Copyright>GNU General Public License v3.0</Copyright>
<PackageProjectUrl>https://genometric.github.io/MSPC/</PackageProjectUrl>
<RepositoryUrl>https://genometric.github.io/MSPC/</RepositoryUrl>
<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>
<AssemblyName>benchmark</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Genometric.GeUtilities" Version="6.2.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CLI\CLI.csproj" />
</ItemGroup>
</Project>