-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMiniAudioExNET.csproj
More file actions
46 lines (40 loc) · 1.63 KB
/
MiniAudioExNET.csproj
File metadata and controls
46 lines (40 loc) · 1.63 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<LangVersion>12.0</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>0618</NoWarn>
<PackageId>JAJ.Packages.MiniAudioEx</PackageId>
<Version>3.1.1</Version>
<Authors>W.M.R Jap-A-Joe</Authors>
<PackageTags>miniaudio miniaudioex audio sound playback spatial dsp effects wav mp3 flac ogg</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>