-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMiniAudioEx.csproj
44 lines (38 loc) · 1.52 KB
/
MiniAudioEx.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>JAJ.Packages.MiniAudioEx</PackageId>
<Version>1.8.0</Version>
<Authors>W.M.R Jap-A-Joe</Authors>
<PackageTags>MiniAudio Audio DSP WAV MP3 FLAC</PackageTags>
<Description>
A wrapper for a modified version of miniaudio.
</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/japajoe/MiniAudioExNET</PackageProjectUrl>
<RepositoryUrl>https://github.com/japajoe/MiniAudioExNET.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Copyright>Copyright $([System.DateTime]::Now.Year) W.M.R Jap-A-Joe</Copyright>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="/" />
</ItemGroup>
<ItemGroup>
<Content Include="runtimes/**" PackagePath="runtimes" Visible="false" />
</ItemGroup>
<ItemGroup>
<Content Remove="**/examples/**" />
<Compile Remove="**/examples/**" />
<EmbeddedResource Remove="**/examples/**" />
<None Remove="**/examples/**" />
</ItemGroup>
<ItemGroup>
<Content Remove="**/test/**" />
<Compile Remove="**/test/**" />
<EmbeddedResource Remove="**/test/**" />
<None Remove="**/test/**" />
</ItemGroup>
</Project>