FSharp.Data.Tdms.fsproj 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <Authors>Dylan Meysmans</Authors>
  6. <Description>TDMS 2.0 support for F# and C#</Description>
  7. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  8. <PackageProjectUrl>https://mettekou.github.io/FSharp.Data.Tdms</PackageProjectUrl>
  9. <RepositoryUrl>https://github.com/mettekou/FSharp.Data.Tdms</RepositoryUrl>
  10. <RepositoryType>git</RepositoryType>
  11. <PublishRepositoryUrl>true</PublishRepositoryUrl>
  12. <PackageReadmeFile>README.md</PackageReadmeFile>
  13. <GenerateDocumentationFile>true</GenerateDocumentationFile>
  14. <FSharpToolsDirectory>typeproviders</FSharpToolsDirectory>
  15. <PackagePath>typeproviders</PackagePath>
  16. <EmbedUntrackedSources>true</EmbedUntrackedSources>
  17. </PropertyGroup>
  18. <ItemGroup>
  19. <Compile Include="Extended.fs" />
  20. <Compile Include="Timestamp.fs" />
  21. <Compile Include="Property.fs" />
  22. <Compile Include="Buffer.fs" />
  23. <Compile Include="RawDataBlock.fs" />
  24. <Compile Include="Reader.fs" />
  25. <Compile Include="Channel.fs" />
  26. <Compile Include="Group.fs" />
  27. <Compile Include="Object.fs" />
  28. <Compile Include="Segment.fs" />
  29. <Compile Include="File.fs" />
  30. <Compile Include="FSharp.Data.Tdms.Runtime.fs" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <PackageReference Include="MinVer" Version="4.2.0">
  34. <PrivateAssets>all</PrivateAssets>
  35. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  36. </PackageReference>
  37. <PackageReference Update="FSharp.Core" Version="6.0.7" />
  38. </ItemGroup>
  39. <PropertyGroup>
  40. <MinVerTagPrefix>v</MinVerTagPrefix>
  41. </PropertyGroup>
  42. </Project>