-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathThermoRawFileParser.csproj
More file actions
64 lines (57 loc) · 2.51 KB
/
ThermoRawFileParser.csproj
File metadata and controls
64 lines (57 loc) · 2.51 KB
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
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>annotations</Nullable>
<StartupObject>ThermoRawFileParser.MainClass</StartupObject>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
<Version>2.0.0-dev</Version>
<Title>$(AssemblyName)</Title>
<Company>Compomics</Company>
<Copyright>2017 - 2025</Copyright>
<PackageProjectUrl>https://compomics.github.io/projects/ThermoRawFileParser</PackageProjectUrl>
<Description>Parser allowing reading Thermo RAW files and converting to common open formats on all platforms supporting .NET Core</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/compomics/ThermoRawFileParser</RepositoryUrl>
<Authors>Compomics</Authors>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageLicenseFile>THERMO_LICENSE</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
</PropertyGroup>
<ItemGroup>
<Compile Remove="ThermoRawFileParserTest\**" />
<EmbeddedResource Remove="ThermoRawFileParserTest\**" />
<None Remove="ThermoRawFileParserTest\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.Core" Version="3.7.400.36" />
<PackageReference Include="AWSSDK.S3" Version="3.7.405" />
<PackageReference Include="log4net" Version="3.0.1" />
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="NJsonSchema" Version="11.0.2" />
<PackageReference Include="Parquet.Net" Version="5.0.1" />
<PackageReference Include="ThermoFisher.CommonCore.RawFileReader" Version="8.0.6" />
<PackageReference Include="zlib.net-mutliplatform" Version="1.0.8" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="THERMO_LICENSE">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>