-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRawRead.csproj
More file actions
executable file
·20 lines (19 loc) · 890 Bytes
/
Copy pathRawRead.csproj
File metadata and controls
executable file
·20 lines (19 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x64</Platforms>
<AssemblyName>RawRead</AssemblyName>
<RootNamespace>RawRead</RootNamespace>
</PropertyGroup>
<!-- The ThermoFisher packages are supplied by the RawFileReader repository.
The NuGet.config in this directory adds that folder as a package source. -->
<ItemGroup>
<PackageReference Include="ThermoFisher.CommonCore.RawFileReader" Version="8.0.37" />
<PackageReference Include="ThermoFisher.CommonCore.Data" Version="8.0.37" />
<PackageReference Include="ThermoFisher.CommonCore.MassPrecisionEstimator" Version="8.0.37" />
<PackageReference Include="MathNet.Numerics" Version="5.0.0" />
</ItemGroup>
</Project>