forked from swharden/Spectrogram
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSpectrogram.csproj
More file actions
34 lines (34 loc) · 1.71 KB
/
Spectrogram.csproj
File metadata and controls
34 lines (34 loc) · 1.71 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<Version>2.0.0-alpha</Version>
<Description>A .NET Standard library for creating spectrograms</Description>
<Authors>Scott Harden</Authors>
<Company>Harden Technologies, LLC</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/swharden/Spectrogram</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/swharden/Spectrogram</RepositoryUrl>
<PackageTags>spectrogram spectrum fft frequency audio microphone signal</PackageTags>
<PackageReleaseNotes>https://github.com/swharden/Spectrogram/releases</PackageReleaseNotes>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<PackageReadmeFile>README.md</PackageReadmeFile>
<DebugType>portable</DebugType>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FftSharp" Version="2.1.0" />
<PackageReference Include="ScottPlot" Version="5.0.42" />
<PackageReference Include="SkiaSharp" Version="2.88.8" />
</ItemGroup>
</Project>