|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
5 | | - <Version>1.6.1</Version> |
6 | | - <Description>A .NET Standard library for creating spectrograms</Description> |
7 | | - <Authors>Scott Harden</Authors> |
8 | | - <Company>Harden Technologies, LLC</Company> |
9 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
10 | | - <PackageProjectUrl>https://github.com/swharden/Spectrogram</PackageProjectUrl> |
11 | | - <PackageIcon>icon.png</PackageIcon> |
12 | | - <RepositoryUrl>https://github.com/swharden/Spectrogram</RepositoryUrl> |
13 | | - <PackageTags>spectrogram spectrum fft frequency audio microphone signal</PackageTags> |
14 | | - <PackageReleaseNotes>https://github.com/swharden/Spectrogram/releases</PackageReleaseNotes> |
15 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
16 | | - <IncludeSymbols>true</IncludeSymbols> |
17 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
18 | | - <DebugType>portable</DebugType> |
19 | | - <IncludeSymbols>true</IncludeSymbols> |
20 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
21 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
22 | | - <Deterministic>true</Deterministic> |
23 | | - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
24 | | - <LangVersion>latest</LangVersion> |
25 | | - </PropertyGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks> |
| 5 | + <Version>1.6.1</Version> |
| 6 | + <Description>A .NET Standard library for creating spectrograms</Description> |
| 7 | + <Authors>Scott Harden</Authors> |
| 8 | + <Company>Harden Technologies, LLC</Company> |
| 9 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 10 | + <PackageProjectUrl>https://github.com/swharden/Spectrogram</PackageProjectUrl> |
| 11 | + <PackageIcon>icon.png</PackageIcon> |
| 12 | + <RepositoryUrl>https://github.com/swharden/Spectrogram</RepositoryUrl> |
| 13 | + <PackageTags>spectrogram spectrum fft frequency audio microphone signal</PackageTags> |
| 14 | + <PackageReleaseNotes>https://github.com/swharden/Spectrogram/releases</PackageReleaseNotes> |
| 15 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 16 | + <IncludeSymbols>true</IncludeSymbols> |
| 17 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 18 | + <DebugType>portable</DebugType> |
| 19 | + <IncludeSymbols>true</IncludeSymbols> |
| 20 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 21 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 22 | + <Deterministic>true</Deterministic> |
| 23 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 24 | + <LangVersion>latest</LangVersion> |
| 25 | + </PropertyGroup> |
26 | 26 |
|
27 | | - <ItemGroup> |
28 | | - <None Include="icon.png" Pack="true" PackagePath="\" /> |
29 | | - <None Include="README.md" Pack="true" PackagePath="\" /> |
30 | | - </ItemGroup> |
| 27 | + <ItemGroup> |
| 28 | + <None Include="icon.png" Pack="true" PackagePath="\" /> |
| 29 | + <None Include="README.md" Pack="true" PackagePath="\" /> |
| 30 | + </ItemGroup> |
31 | 31 |
|
32 | | - <ItemGroup> |
33 | | - <PackageReference Include="FftSharp" Version="1.1.6" /> |
34 | | - <PackageReference Include="System.Drawing.Common" Version="4.6.1" /> |
35 | | - <PackageReference Include="runtime.osx.10.10-x64.CoreCompat.System.Drawing" Version="5.8.64" Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'" /> |
36 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> |
37 | | - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
38 | | - <PrivateAssets>all</PrivateAssets> |
39 | | - </PackageReference> |
40 | | - </ItemGroup> |
| 32 | + <ItemGroup> |
| 33 | + <PackageReference Include="FftSharp" Version="1.1.6" /> |
| 34 | + <PackageReference Include="System.Drawing.Common" Version="4.6.1" /> |
| 35 | + <PackageReference Include="runtime.osx.10.10-x64.CoreCompat.System.Drawing" Version="5.8.64" Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'" /> |
| 36 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> |
| 37 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 38 | + <PrivateAssets>all</PrivateAssets> |
| 39 | + </PackageReference> |
| 40 | + </ItemGroup> |
41 | 41 |
|
42 | 42 | </Project> |
0 commit comments