forked from swharden/Spectrogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpectrogram.csproj
More file actions
57 lines (49 loc) · 2.28 KB
/
Spectrogram.csproj
File metadata and controls
57 lines (49 loc) · 2.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net45;netcoreapp3.0</TargetFrameworks>
<Description>Spectrogram is a .NET library which makes it easy to create spectrograms from pre-recorded signals or live audio from the sound card.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/swharden/Spectrogram</PackageProjectUrl>
<RepositoryUrl></RepositoryUrl>
<PackageReleaseNotes>https://github.com/swharden/Spectrogram/releases</PackageReleaseNotes>
<Product />
<Authors>Scott W Harden</Authors>
<Company>Harden Technologies, LLC</Company>
<Version>1.0.1</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<ApplicationIcon />
<OutputType>Library</OutputType>
<StartupObject />
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<PackageIconUrl>https://raw.githubusercontent.com/swharden/Spectrogram/master/src/Spectrogram/icon.png</PackageIconUrl>
<PackageTags>spectrogram spectrograph fft spectrum frequency audio</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netcoreapp3.0|AnyCPU'">
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'">
<DocumentationFile>C:\Users\scott\Documents\GitHub\Spectrogram\src\Spectrogram\Spectrogram.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<COMReference Include="{d37e2a3e-8545-3a39-9f4f-31827c9124ab}">
<Guid>d37e2a3e-8545-3a39-9f4f-31827c9124ab</Guid>
<VersionMajor>2</VersionMajor>
<VersionMinor>4</VersionMinor>
<WrapperTool>tlbimp</WrapperTool>
</COMReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="NAudio" Version="1.9.0" />
<PackageReference Include="ScottPlot" Version="3.0.9" />
<PackageReference Include="System.Drawing.Primitives" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
<PackageReference Include="System.Drawing.Common">
<Version>4.5.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Folder Include="UserControls\" />
</ItemGroup>
</Project>